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

:root {
    --primary-color: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;
    --secondary-color: #10B981;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --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;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

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

/* Add scroll margin to sections */
section {
    scroll-margin-top: 80px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo:hover {
    opacity: 0.8;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/ai-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}



.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background-color: var(--secondary-color);
    color: white;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 8rem 0 6rem 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    max-width: 350px;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

.about-content {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro {
    margin-bottom: 1.5rem;
}

.mission-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
    box-shadow: var(--shadow-md);
}

.mission-box h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mission-box p {
    font-size: 1.1rem;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

/* ===========================
   Products Section
   =========================== */
.products {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

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

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-icon.merchant {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-icon.lead {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.product-icon.list {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(79, 70, 229, 0.05);
    transform: translateX(5px);
}

.feature-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.product-cta {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.product-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.ai-agent-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(129, 140, 248, 0.05));
    border-radius: 16px;
}

.ai-agent-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.ai-agent-img:hover {
    transform: scale(1.02);
}

.comparison-table {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr;
    gap: 1px;
    background: var(--border-color);
}

.table-header {
    background: var(--primary-color);
}

.table-header .table-cell {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
}

.table-row .table-cell {
    background: var(--bg-white);
    padding: 1.25rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.table-row:nth-child(even) .table-cell {
    background: var(--bg-light);
}

.table-cell.highlight {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.05)) !important;
    font-weight: 500;
    color: var(--text-dark);
}

.table-row .table-cell strong {
    color: var(--text-dark);
    font-weight: 600;
}

.impact-statement {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    border-radius: 12px;
    text-align: center;
    color: white;
}

.impact-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.business-impact {
    margin-top: 4rem;
}

.business-impact h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    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.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

/* USP Section */
.usp-section {
    margin-top: 0;
    background: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.usp-section .section-header h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.usp-section .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.usp-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.usp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.usp-img:hover {
    transform: scale(1.02);
}

.usp-grid {
    display: grid;
    gap: 1.5rem;
}

.usp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.usp-item:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(129, 140, 248, 0.05));
    transform: translateX(10px);
}

.usp-bullet {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.usp-content {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.usp-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===========================
   Team Section
   =========================== */
.team {
    padding: 6rem 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: white;
}

.linkedin-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077B5;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.linkedin-badge:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: #0077B5;
    color: white;
}

.member-info {
    padding: 2.5rem;
}

.member-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-credentials {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.member-email svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.member-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.member-highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.member-bio {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.member-bio strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.member-bio em {
    font-style: italic;
}

.member-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.profile-link.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.profile-link.linkedin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #005582 0%, #003d5c 100%);
}

.profile-link.book {
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
}

.profile-link.book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF6600 0%, #CC5500 100%);
}

.profile-link.email {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.profile-link.email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.profile-link.institutional {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.profile-link.institutional:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #654321 0%, #4a3219 100%);
}

.profile-link svg {
    width: 20px;
    height: 20px;
}

/* Icon-only profile links */
.profile-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.profile-icon-link.book {
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
}

.profile-icon-link.book:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF6600 0%, #CC5500 100%);
}

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

/* Advisor photo styling */
.advisor-photo {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    height: 300px;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: white;
}

/* Compact Team Member Cards */
.team-member-compact {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.member-photo-compact {
    position: relative;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo-compact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: white;
}

.linkedin-badge-compact {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077B5;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.linkedin-badge-compact:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: #0077B5;
    color: white;
}

.member-info-compact {
    flex: 1;
    padding: 2rem;
}

.member-info-compact h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-title-compact {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-credentials-compact {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
}

/* Book links in text */
.book-link,
.inline-book-link,
.award-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.book-link:hover,
.inline-book-link:hover,
.award-link:hover {
    color: #FF6600;
    border-bottom-color: #FF6600;
}

.inline-book-link {
    color: var(--primary-dark);
}

.award-link {
    color: var(--secondary-color);
}

.award-link:hover {
    color: #059669;
    border-bottom-color: #059669;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .member-photo {
        height: 250px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .member-info h3 {
        font-size: 1.6rem;
    }
    
    .member-title {
        font-size: 1.1rem;
    }
    
    .member-highlights {
        padding: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
    
    /* Compact team members responsive */
    .member-photo-compact {
        height: 250px;
    }
    
    .member-info-compact {
        padding: 1.5rem;
    }
    
    .member-info-compact h3 {
        font-size: 1.3rem;
    }
    
    .member-title-compact {
        font-size: 1rem;
    }
    
    .member-credentials-compact {
        font-size: 0.9rem;
    }
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header h2::after {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.email-link:hover {
    border-color: white;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    opacity: 0.8;
}

/* ===========================
   Cookie Notice
   =========================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

.cookie-notice.hidden {
    display: none;
}

.cookie-content p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.cookie-content strong {
    font-size: 1.1rem;
}

.cookie-accept {
    padding: 0.75rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #059669;
    transform: scale(1.05);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .about-img {
        max-width: 100%;
    }

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

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

    .usp-img {
        max-width: 100%;
    }

    .ai-agent-img {
        max-width: 100%;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .impact-table-header,
    .impact-table-row {
        grid-template-columns: 60px 1fr;
    }

    .impact-table-cell:nth-child(3),
    .impact-table-cell:nth-child(4) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border-color);
    }

    .impact-table-cell:nth-child(3)::before {
        content: "Current: ";
        font-weight: 600;
        color: var(--primary-color);
    }

    .impact-table-cell:nth-child(4)::before {
        content: "Future: ";
        font-weight: 600;
        color: var(--secondary-color);
    }

    .before-after {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

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

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

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .product-card {
        padding: 1.5rem;
    }

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

    .table-cell {
        padding: 1rem !important;
        font-size: 0.85rem;
    }

    .impact-table-header,
    .impact-table-row {
        grid-template-columns: 50px 1fr;
        font-size: 0.85rem;
    }

    .impact-table-cell {
        padding: 0.75rem 0.5rem !important;
    }

    .impact-table-cell.icon-cell svg {
        width: 24px;
        height: 24px;
    }

    .impact-statement p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
