* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background: #ffffff;
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 1;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu li a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:not(.btn):hover {
    color: #4a9eff;
}

.nav-menu li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a9eff;
    transition: width 0.3s ease;
}

.nav-menu li a:not(.btn):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.badge-available {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.badge-coming-soon {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.badge-available svg,
.badge-coming-soon svg {
    width: 14px;
    height: 14px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-highlight {
    font-size: 18px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 500;
    padding-left: 8px;
    border-left: 3px solid #4a9eff;
}

.hero-micro {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
    font-style: italic;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-eval-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
}

.btn-outline {
    background: white;
    color: #4a9eff;
    border: 2px solid #4a9eff;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4a9eff;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

/* Monitor Illustration */
.monitor-illustration {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
    animation: floatImage 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-time {
    text-align: center;
    font-size: 16px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 50px;
    padding: 12px 24px;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a9eff, #10b981, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.how-it-works-card:hover::before {
    transform: scaleX(1);
}

.how-it-works-card:hover {
    border-color: #93c5fd;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 158, 255, 0.15);
}

.how-it-works-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.how-it-works-card:hover .how-it-works-icon {
    transform: scale(1.1) rotate(5deg);
}

.how-it-works-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 24px 0;
}

.how-it-works-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.how-it-works-steps li {
    padding: 12px 0;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 28px;
}

.how-it-works-steps li small {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    display: block;
    margin-top: 4px;
    font-style: italic;
}

.how-it-works-steps li:last-child {
    border-bottom: none;
}

.how-it-works-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.how-it-works-note {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    font-style: italic;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Meeting Types Section */
.meeting-types-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.meeting-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.meeting-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.meeting-type-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meeting-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a9eff, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.meeting-type-available::before {
    background: linear-gradient(90deg, #4a9eff, #10b981);
}

.meeting-type-coming-soon::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.meeting-type-card:hover::before {
    transform: scaleX(1);
}

.meeting-type-available:hover {
    border-color: #10b981;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.meeting-type-coming-soon {
    opacity: 0.85;
    position: relative;
}

.meeting-type-coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    border-radius: 20px;
}

.meeting-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.meeting-type-badge svg {
    width: 14px;
    height: 14px;
}

.meeting-type-icon {
    width: 80px;
    height: 80px;
    margin: 20px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.meeting-type-coming-soon .meeting-type-icon {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.meeting-type-card:hover .meeting-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.meeting-type-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.meeting-type-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
    max-width: 300px;
}

.meeting-type-note {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 32px 0;
    padding: 12px 16px;
    background: #ecfdf5;
    border-left: 3px solid #10b981;
    border-radius: 6px;
    max-width: 300px;
}

.meeting-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.meeting-type-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.meeting-type-features li:last-child {
    border-bottom: none;
}

.meeting-type-features li svg {
    flex-shrink: 0;
}

.meeting-type-features li span {
    font-weight: 500;
}

.coming-soon-note {
    margin-top: 24px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 40px 0 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a9eff, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    background: #ffffff;
    border-color: #93c5fd;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 158, 255, 0.15);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    margin-bottom: 28px;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.benefit-icon {
    color: white;
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.benefit-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

.benefits-note {
    margin-top: 50px;
    padding: 20px;
    background: #f9fafb;
    border-left: 3px solid #4a9eff;
    border-radius: 8px;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.benefits-note span {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.benefits-note a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefits-note a:hover {
    color: #3a8eef;
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    scroll-margin-top: 80px;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
    text-align: center;
}

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

.feature-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.feature-badge svg {
    width: 12px;
    height: 12px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a9eff, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(74, 158, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: #93c5fd;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4a9eff, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.2;
}

.feature-icon.blue {
    background: #eff6ff;
    color: #4a9eff;
}

.feature-icon.green {
    background: #ecfdf5;
    color: #10b981;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    padding: 40px 0 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.use-case-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a9eff, #10b981, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 158, 255, 0.2);
    border-color: #93c5fd;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.use-case-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.use-case-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-icon {
    filter: drop-shadow(0 8px 20px rgba(74, 158, 255, 0.3));
}

.use-case-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.use-case-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.use-cases-note {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    font-style: italic;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.security-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #ffffff;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.security-item svg {
    flex-shrink: 0;
}

.security-item span {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

/* White-label Section */
.whitelabel-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #eff6ff 100%);
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 80px;
}

.whitelabel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.whitelabel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #ffffff;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.whitelabel-item:hover {
    border-color: #4a9eff;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.15);
    transform: translateY(-2px);
}

.whitelabel-item svg {
    flex-shrink: 0;
}

.whitelabel-item span {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-included-note {
    text-align: center;
    font-size: 16px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 24px;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 12px;
}

/* Integration Section */
.integration-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    scroll-margin-top: 80px;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.integration-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.integration-example {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.integration-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a9eff, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.integration-example:hover::before {
    transform: scaleX(1);
}

.integration-example:hover {
    box-shadow: 0 16px 40px rgba(74, 158, 255, 0.15);
    border-color: #4a9eff;
    transform: translateY(-8px);
}

.integration-example-highlight {
    border: 3px solid #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.integration-example-highlight::before {
    background: linear-gradient(90deg, #10b981, #4a9eff);
}

.integration-example-highlight .example-header {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-bottom: 2px solid #10b981;
}

.integration-example-highlight:hover .example-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.integration-example:hover .code-example {
    border-top-color: #4a9eff;
    box-shadow: inset 0 2px 8px rgba(74, 158, 255, 0.05);
}

.example-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #bfdbfe;
    gap: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.integration-example:hover .example-header {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.example-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.example-badge {
    background: #4a9eff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.optional-badge {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
    vertical-align: middle;
}

.sdk-who-for {
    max-width: 800px;
    margin: 24px auto 48px;
    padding: 20px 24px;
    background: #f9fafb;
    border-left: 4px solid #4a9eff;
    border-radius: 8px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    text-align: left;
}

.sdk-use-case {
    margin: 0 0 24px 0;
    padding: 0;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

.sdk-tabs-container {
    max-width: 1200px;
    margin: 48px auto 0;
}

.sdk-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.sdk-tab {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    position: relative;
}

.sdk-tab:hover {
    border-color: #4a9eff;
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.15);
}

.sdk-tab.active {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    border-color: #4a9eff;
    color: white;
    box-shadow: 0 4px 16px rgba(74, 158, 255, 0.3);
}

.sdk-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.sdk-tab span:first-child {
    font-size: 15px;
    font-weight: 600;
}

.sdk-tab-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
}

.sdk-tab.active .sdk-tab-badge {
    background: rgba(255, 255, 255, 0.25);
}

.sdk-tab-contents {
    position: relative;
    min-height: 400px;
}

.sdk-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.sdk-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sdk-tab-content .code-example {
    margin-top: 0;
}

.dev-required-badge {
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deployment-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.deployment-step {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.deployment-step:hover {
    border-color: #4a9eff;
    box-shadow: 0 8px 24px rgba(74, 158, 255, 0.15);
    transform: translateY(-4px);
}

.deployment-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.deployment-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.deployment-step-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.deployment-time {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin: 16px 0 32px 0;
    font-weight: 500;
}

.deployment-reassurance {
    margin: 32px 0 0 0;
    padding: 0;
    font-size: 15px;
    color: #6b7280;
    text-align: center;
    font-style: italic;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.code-example {
    background: #ffffff;
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    min-width: 0;
}

.code-example pre {
    background: #ffffff !important;
}

.code-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.code-lang {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.copy-btn:hover {
    background: #f1f5f9;
    border-color: #4a9eff;
    color: #4a9eff;
    box-shadow: 0 2px 4px rgba(74, 158, 255, 0.1);
}

.copy-btn.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

.code-example pre {
    width: 100%;
    margin: 0;
    padding: 20px;
    text-align: left;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #334155;
    overflow-x: auto;
    overflow-y: visible;
    background: #ffffff !important;
    flex: 1;
    white-space: pre;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.code-example code {
    color: #334155 !important;
    background: transparent !important;
    font-family: inherit;
}

.code-example .language-javascript {
    color: #334155 !important;
    background: transparent !important;
}

/* Override Prism.js dark theme completely */
.code-example pre,
.code-example pre code,
.code-example pre[class*="language-"],
.code-example pre[class*="language-"] code {
    background: #ffffff !important;
    color: #334155 !important;
}

.code-example pre[class*="language-"] {
    background: #ffffff !important;
    text-shadow: none !important;
}

/* Override any Prism background colors */
.code-example .token,
.code-example code[class*="language-"],
.code-example pre[class*="language-"] {
    background: transparent !important;
}

/* Syntax highlighting improvements */
.code-example .token.keyword {
    color: #7c3aed;
    font-weight: 600;
}

.code-example .token.string {
    color: #059669;
}

.code-example .token.function {
    color: #dc2626;
}

.code-example .token.comment {
    color: #64748b;
    font-style: italic;
}

.code-example .token.number {
    color: #ea580c;
}

.code-example .token.operator {
    color: #475569;
}

.code-example .token.punctuation {
    color: #64748b;
}

.code-example .token.property {
    color: #0284c7;
}

.code-wrapper {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.code-wrapper.expanded {
    max-height: none;
}

.code-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.code-wrapper.expanded::after {
    opacity: 0;
}

.expand-code-btn {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: none;
    border-top: 1px solid #e2e8f0;
    color: #4a9eff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.expand-code-btn:hover {
    background: #f1f5f9;
    color: #3a8eef;
}

.expand-code-btn.expanded {
    border-top: 1px solid #e2e8f0;
}


/* Pricing Section */
.pricing-section {
    padding: 32px 0 48px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    scroll-margin-top: 80px;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Compact pricing header */
.pricing-header-row {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pricing-header-row .section-title {
    margin-bottom: 8px;
}

.pricing-trust-strip {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Segmented control for meeting type */
.pricing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pricing-segmented-control {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.pricing-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 24px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
}

.pricing-segment:hover {
    background: rgba(255, 255, 255, 0.5);
}

.pricing-segment.active {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.segment-label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.pricing-segment.active .segment-label {
    color: #4a9eff;
}

.segment-detail {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.pricing-segment.active .segment-detail {
    color: #6b7280;
}

.pricing-infra-context {
    font-size: 13px;
    color: #9ca3af;
    margin: 12px 0 0 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    padding: 20px 20px 16px;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-card-popular {
    border: 2px solid #4a9eff;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.pricing-card-popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a9eff, #10b981);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.08;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a9eff 0%, #10b981 100%);
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

/* Enterprise card - subtle, non-competing */
.pricing-card-enterprise {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    box-shadow: none;
}

.pricing-card-enterprise:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card-enterprise .pricing-card-header {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-card-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.pricing-card-enterprise .pricing-card-description {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 16px;
}

.pricing-card-enterprise .pricing-card-features {
    margin-bottom: 16px;
}

.pricing-card-enterprise .pricing-card-features li {
    color: #6b7280;
}

.btn-card-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-card-outline:hover {
    background: #f0f9ff;
    color: #4a9eff;
    border-color: #4a9eff;
    transform: none;
    box-shadow: none;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 158, 255, 0.15);
    border-color: #4a9eff;
}

.pricing-card-popular:hover {
    transform: translateY(-4px) scale(1.02);
}

.pricing-card-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
    letter-spacing: 0.5px;
}

.pricing-card-image {
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-card-image {
    background: transparent;
    transform: none;
}

.pricing-card-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(74, 158, 255, 0.15));
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-card-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(74, 158, 255, 0.2));
}

.pricing-card-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.pricing-card-billing {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.pricing-card-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px 0;
    font-weight: 500;
}

/* Card features list (always visible) */
.pricing-card-features {
    width: 100%;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    flex-grow: 1;
}

.pricing-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features li {
    font-size: 13px;
    color: #6b7280;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Usage Info Section */
.pricing-usage-info {
    margin: 20px 0 40px;
    position: relative;
    z-index: 1;
}

.usage-info-tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usage-info-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.usage-info-compact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.usage-info-compact-item svg {
    flex-shrink: 0;
}

.usage-info-compact-item strong {
    color: #1f2937;
    font-weight: 600;
}

.usage-info-compact-item a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.usage-info-compact-item a:hover {
    color: #3a8eef;
    text-decoration: underline;
}

.usage-info-footnote {
    margin: 12px 0 0 0;
    padding: 0;
    font-size: 13px;
    color: #6b7280;
    text-align: left;
}

.usage-info-footnote a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.usage-info-footnote a:hover {
    color: #3a8eef;
    text-decoration: underline;
}

/* Card button */
.btn-card {
    margin-top: auto;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-card:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

/* CTA */
.pricing-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* License Choice Modal */
.license-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.license-modal-overlay.active {
    display: flex;
}

.license-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.license-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.license-modal-close:hover {
    color: #374151;
}

.license-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-align: center;
}

.license-modal-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 32px 0;
    text-align: center;
}

.license-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.license-option {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.license-option:hover {
    border-color: #4a9eff;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.15);
}

.license-option-primary {
    border-color: #4a9eff;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.license-option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-option-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 8px 0 12px 0;
}

.license-option-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.license-option .btn {
    width: 100%;
}

.license-modal-note {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

/* Deployment form styles */
.deployment-modal {
    max-width: 540px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #1f2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* Enterprise modal */
.enterprise-modal {
    max-width: 520px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    border-color: #4a9eff;
    background: #f0f9ff;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4a9eff;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

/* Confirmation view */
.confirmation-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-message {
    font-size: 15px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Popular card button variant */
.btn-card-popular {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-card-popular:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (max-width: 600px) {
    .license-modal {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .license-options {
        grid-template-columns: 1fr;
    }
    
    .license-modal-title {
        font-size: 20px;
    }
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

/* Footer Section */
.footer-section {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-column a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-column a:hover {
    color: #4a9eff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .use-cases-grid,
    .integration-examples {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card-popular {
        transform: scale(1.02);
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .features-section,
    .use-cases-section,
    .integration-section,
    .pricing-section,
    .meeting-types-section {
        padding: 60px 0;
    }
    
    .meeting-types-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .meeting-type-card {
        padding: 40px 32px;
    }
    
    .meeting-type-title {
        font-size: 24px;
    }
    
    .meeting-type-description {
        font-size: 15px;
    }
    
    .meeting-type-features li {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .integration-examples {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sdk-who-for {
        margin: 20px auto 32px;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .sdk-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .sdk-tab {
        min-width: 100%;
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .sdk-tab span:first-child {
        font-size: 14px;
    }
    
    .sdk-tab-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .sdk-tab-contents {
        min-height: 300px;
    }
    
    .example-header {
        flex-wrap: wrap;
        padding: 16px 20px;
    }
    
    .example-header h3 {
        font-size: 18px;
        width: 100%;
        margin-bottom: 8px;
    }
    
    .dev-required-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .sdk-use-case {
        padding: 0 20px;
        font-size: 13px;
    }
    
    .deployment-steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .deployment-step {
        padding: 24px 20px;
    }
    
    .deployment-step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .deployment-step-title {
        font-size: 18px;
    }
    
    .deployment-step-description {
        font-size: 14px;
    }
    
    .code-example pre {
        font-size: 12px;
        padding: 16px;
    }
    
    .code-header {
        padding: 10px 12px;
    }
    
    .copy-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-card-image {
        height: 220px;
    }
    
    .pricing-card-price {
        font-size: 32px;
    }
    
    .pricing-segmented-control {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-segment {
        min-width: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card-popular {
        transform: none;
        order: -1;
    }
    
    .pricing-card-image {
        height: 120px;
        gap: 16px;
    }
    
    .usage-info-compact-item {
        font-size: 13px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 16px;
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px 0;
    }
    
    .btn-large {
        padding: 14px 36px;
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .meeting-types-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .meeting-type-card {
        padding: 40px 32px;
    }
    
    .meeting-type-title {
        font-size: 24px;
    }
    
    .meeting-type-description {
        font-size: 15px;
    }
    
    .meeting-type-features li {
        font-size: 14px;
    }
    
    .benefit-card {
        padding: 40px 24px;
    }
    
    .benefit-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
    }
    
    .benefit-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
    
    .benefits-note {
        margin-top: 40px;
        padding: 16px;
    }
    
    .benefits-note span {
        font-size: 13px;
    }
    
    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }
    
    .use-case-card p {
        font-size: 14px;
    }

    .security-section,
    .whitelabel-section {
        padding: 60px 0;
    }

    .security-grid,
    .whitelabel-grid {
        gap: 16px;
    }

    .security-item,
    .whitelabel-item {
        padding: 14px 18px;
        width: 100%;
    }

    .security-item span,
    .whitelabel-item span {
        font-size: 14px;
    }

    .footer-section {
        padding: 40px 0 24px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .footer-links-column {
        align-items: center;
        text-align: center;
    }

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

