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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent-color: #7c3aed;
    --accent-dark: #6d28d9;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-gradient-start: #eff6ff;
    --bg-gradient-mid: #ffffff;
    --bg-gradient-end: #faf5ff;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --border-light: #d1d5db;
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(to bottom right, #eff6ff, #ffffff, #faf5ff);
    background-attachment: fixed;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blob-animation 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    animation-delay: 2s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    opacity: 0.08;
    animation-delay: 4s;
}

@keyframes blob-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

/* All headings use the same font family as hero-subtitle */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: var(--transition);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

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

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

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

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

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


.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    padding: 10px 26px !important;
    font-size: 14px !important;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 180px;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    background: transparent;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

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

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 150px;
    object-fit: contain;
}

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

.hero-subtitle {
    font-size: 28px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

button.btn {
    height: 35px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

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

.btn-outlined {
    padding: 10px 20px;
    font-size: 14px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outlined:hover {
    background-color: rgba(37, 99, 235, 0.08);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.stat-item {
    text-align: center;
    padding: 0 48px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 0;
    align-self: flex-start;
}

.stat-item:nth-child(1) {
    flex-basis: 30%;
    padding: 0 24px;
}

.stat-item:nth-child(3) {
    flex-basis: 40%;
    padding: 0 32px;
}

.stat-item:nth-child(5) {
    flex-basis: 30%;
    padding: 0 24px;
}

.stat-label {
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
    padding: 0;
    letter-spacing: -1px;
    min-height: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    box-sizing: border-box;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border-color);
    align-self: center;
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 100px 0;
    border-bottom: none;
    background: transparent;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-left h2 {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-left h2.heading-sm {
    font-size: 36px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.about-right p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-right p a:not(.btn) {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.about-right p a:not(.btn):hover {
    color: var(--primary-color);
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.about-grid .btn {
    min-width: 140px;
    height: auto;
    min-height: 48px;
    padding: 14px 28px;
    font-size: 15px;
    box-sizing: border-box;
    justify-content: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Products Section */
.products-section {
    padding: 120px 0;
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 48px 40px 34px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.product-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.product-icon-box svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Premium Feature Card */
.product-card--premium {
    border-color: rgba(217, 119, 6, 0.28);
}

.product-card--premium:hover {
    border-color: rgba(217, 119, 6, 0.6);
    box-shadow: 0 12px 48px rgba(217, 119, 6, 0.18);
}

.product-card--premium .product-icon-box {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.14), rgba(245, 158, 11, 0.10));
    border-color: rgba(217, 119, 6, 0.35);
}

.product-card--premium .product-icon-box svg {
    color: #D97706; /* golden */
}

.product-card--premium .product-subtitle {
    color: #D97706; /* golden */
}

.product-card--premium .product-description p {
    margin: 0;
}

.premium-features-list {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--text-secondary);
}

.premium-features-list li {
    margin: 2px 0;
    line-height: 1.4;
}

/* Why MarkScout Section */
.why-section {
    padding: 120px 0;
    background: transparent;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
}

.feature-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.feature-svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Search Options Section */
.search-section {
    padding: 120px 0;
    background: transparent;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.search-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 32px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.search-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
}

.search-card-highlight {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-icon-box {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 12px;
    margin-bottom: 24px;
}

.search-icon-box svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
}

.search-card h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.search-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tag {
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.badge-dot-accent {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Key Features Section */
.key-features-section {
    padding: 120px 0;
    background: transparent;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.key-feature-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.key-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
}

.key-feature-highlight {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-badge {
    min-width: 40px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.key-feature-card h3 {
    font-size: 21px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.key-feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-progress {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: width 1s ease;
}

.feature-meta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.feature-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag-inline {
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
}

.insight-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-live {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: transparent;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 28px;
}

.benefit-icon-box svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.benefit-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.benefit-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    margin-bottom: 20px;
}

.benefit-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: transparent;
}

.pricing-starting-callout {
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 16px 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pricing-starting-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-conditions-note {
    margin: 8px auto 40px;
    max-width: 640px;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.pricing-section--prices-hidden .pricing-cycle-toggle,
.pricing-section--prices-hidden .pricing-discount-tag,
.pricing-section--prices-hidden .pricing-price-block,
.pricing-section--prices-hidden .pricing-card-footnote,
.pricing-section--prices-hidden .pricing-intro-superscript {
    display: none !important;
}

.pricing-section--prices-hidden .pricing-card-body {
    gap: 12px;
}

.pricing-section--prices-hidden .pricing-card-search-only-left {
    gap: 12px;
}

.pricing-enterprise-fallback {
    display: none;
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
}

.pricing-section--prices-hidden .pricing-enterprise-fallback {
    display: block;
}

.pricing-cycle-toggle {
    margin: 16px auto 0;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    position: relative;
}

.pricing-cycle-toggle::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    bottom: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
    transform: translateX(0);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.pricing-cycle-toggle[data-active-cycle='monthly']::before {
    transform: translateX(100%);
}

.pricing-cycle-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 240ms ease;
    position: relative;
    z-index: 1;
}

.pricing-cycle-btn:hover {
    color: var(--primary-color);
}

.pricing-cycle-btn.is-active {
    color: #ffffff;
}

.pricing-card-cycle.is-switching .pricing-actual-amount,
.pricing-card-cycle.is-switching .pricing-intro-amount,
.pricing-card-cycle.is-switching .pricing-discount-tag {
    animation: pricingValueSwap 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pricingValueSwap {
    0% {
        opacity: 0.35;
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-cycle-toggle::before {
        transition: none;
    }

    .pricing-cycle-btn {
        transition: none;
    }

    .pricing-card-cycle.is-switching .pricing-actual-amount,
    .pricing-card-cycle.is-switching .pricing-intro-amount,
    .pricing-card-cycle.is-switching .pricing-discount-tag {
        animation: none;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.pricing-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

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

/* Pro card: top bar appears only on hover (no default highlight) */
.pricing-card-featured::before {
    opacity: 0;
}
.pricing-card-featured:hover::before {
    opacity: 1;
}

.pricing-card-header {
    padding: 18px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.pricing-tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.pricing-card-body {
    padding: 14px 10px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-price-block {
    margin-bottom: 12px;
}

.pricing-actual-price {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.pricing-intro-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.pricing-intro-superscript {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--text-muted);
    vertical-align: super;
    margin-left: 2px;
}

.pricing-discount-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    background: rgba(5, 150, 105, 0.12);
    border-radius: 6px;
    letter-spacing: 0.02em;
    z-index: 1;
}

.pricing-price-custom .pricing-intro-price {
    font-size: 20px;
}

.pricing-custom-note {
    font-size: 12px;
    color: var(--text-muted);
    margin: 4px 0 0 0;
}

.pricing-enterprise-description {
    font-size: 12px;
    color: var(--text-muted);
    margin: 8px 0 0 0;
    line-height: 1.45;
}

.pricing-features-enterprise .pricing-feature-copy {
    padding-left: 0;
    list-style: none;
}

.pricing-features-enterprise .pricing-feature-copy::before {
    display: none;
}

.pricing-feature-copy p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 4px 0 10px 0;
}

.pricing-features {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 5px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-feature-icon {
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.pricing-feature-icon svg {
    width: 100%;
    height: 100%;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Divider row: label and line on same row to save vertical space */
.pricing-features-divider {
    list-style: none;
    padding-left: 0 !important;
    margin: 6px 0 4px 0 !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features-divider-first {
    margin-top: 0 !important;
}

.pricing-features-divider::before {
    display: none;
}

.pricing-features-divider-line {
    flex: 1;
    min-width: 8px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--border-color));
    order: 0;
}

.pricing-features-divider-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    order: -1;
}

.pricing-features-divider-label-premium {
    color: #b8860b;
}

/* Premium divider: golden line */
.pricing-features-divider:has(.pricing-features-divider-label-premium) .pricing-features-divider-line {
    background: linear-gradient(90deg, rgba(184, 134, 11, 0.3), #b8860b 20%, #b8860b 80%, rgba(184, 134, 11, 0.3));
}

.pricing-feature-premium {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-feature-excluded {
    color: var(--text-muted);
    font-size: 12px;
}

.pricing-feature-excluded .pricing-feature-icon {
    color: var(--text-muted);
}

.pricing-card-footnote {
    font-size: 11px;
    color: var(--text-muted);
    margin: 10px 0 0 0;
    line-height: 1.35;
}

/* Premium icon: golden color */
.pricing-feature-icon-premium {
    color: #b8860b;
}

.pricing-feature-premium .pricing-feature-icon-premium svg {
    stroke: #b8860b;
}

.pricing-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.pricing-card-actions .pricing-cta {
    width: 100%;
    min-width: 0;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 600;
    box-sizing: border-box;
}

.pricing-card-actions .btn-outlined.pricing-cta {
    border-width: 2px;
}

.pricing-card-actions .btn-primary.pricing-cta {
    border: 2px solid transparent;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 140px;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: auto;
}

.pricing-row-single {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.pricing-card-search-only {
    width: min(100%, 920px);
    max-width: 920px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.pricing-card-search-only-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
    padding: 16px 18px;
    gap: 24px;
}

.pricing-card-search-only-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 200px;
    flex-shrink: 0;
    padding-right: 24px;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.pricing-card-search-only .pricing-discount-tag-search-only {
    position: absolute;
    top: 0;
    right: 0;
}

.pricing-card-search-only-left .pricing-card-header {
    border-bottom: none;
    padding: 0 0 8px 0;
}

.pricing-card-search-only-left .pricing-price-block {
    margin-bottom: 16px;
}

.pricing-card-search-only-right {
    flex: 1;
    min-width: 0;
}

.pricing-card-search-only-right .pricing-features {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-starting-callout {
        margin-bottom: 24px;
        padding: 14px 18px;
        font-size: 14px;
    }

    .pricing-cycle-toggle {
        margin-top: 14px;
    }

    .pricing-cycle-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .pricing-card-header,
    .pricing-card-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pricing-card-search-only-inner {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-card-search-only-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .pricing-card-search-only-inner {
        padding: 14px 18px;
    }
}

/* Add-Ons Sub-section */
.addons-subheading {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 32px;
    scroll-margin-top: 110px;
}

.addons-subheading .section-label {
    margin-bottom: 8px;
}

.addons-subheading h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.addons-subheading p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 340px;
    gap: 24px;
    position: relative;
    align-items: stretch;
    overflow: visible;
}

.addon-card {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.addon-card:focus-visible {
    outline: none;
}

.addon-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100%;
    padding: 22px 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(250, 251, 253, 0.58);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
    transform-origin: center top;
    will-change: transform, box-shadow;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.32s ease,
                background-color 0.38s ease;
}

.addon-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.75;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    pointer-events: none;
}

.addon-card-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.34s ease,
                color 0.34s ease,
                opacity 0.3s ease;
    pointer-events: none;
}

.addon-card-chip svg {
    width: 18px;
    height: 18px;
}

.addon-card-heading {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin: 0 0 16px;
    padding-right: 48px;
    transition: color 0.34s ease;
}

.addon-card:hover .addon-card-heading,
.addon-card:focus-within .addon-card-heading,
.addon-card.is-expanded .addon-card-heading {
    color: var(--text-primary);
    font-weight: 700;
}

.addon-features-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(37, 99, 235, 0.75);
    margin: 0 0 10px;
}

.addon-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.addon-features li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.addon-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

.addon-features li:last-child {
    margin-bottom: 0;
}

.addon-feature-title {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: -0.1px;
    line-height: 1.35;
}

.addon-feature-detail {
    display: block;
    margin-top: 0;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.55;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-2px);
    transition: max-height 0.44s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.32s ease,
                margin-top 0.44s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.addon-card:hover .addon-card-inner,
.addon-card:focus-within .addon-card-inner,
.addon-card.is-expanded .addon-card-inner {
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    z-index: 20;
}

.addon-card:hover .addon-feature-title,
.addon-card:focus-within .addon-feature-title,
.addon-card.is-expanded .addon-feature-title {
    color: var(--text-primary);
    font-weight: 700;
}

.addon-card:hover .addon-card-inner::before,
.addon-card:focus-within .addon-card-inner::before,
.addon-card.is-expanded .addon-card-inner::before {
    transform: scaleX(1);
}

.addon-card:hover .addon-card-chip,
.addon-card:focus-within .addon-card-chip,
.addon-card.is-expanded .addon-card-chip {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    opacity: 1;
    transform: rotate(6deg);
}

.addon-card:focus-visible .addon-card-inner {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 3px;
}

.addon-card:hover .addon-feature-detail,
.addon-card:focus-within .addon-feature-detail,
.addon-card.is-expanded .addon-feature-detail {
    max-height: 160px;
    opacity: 1;
    margin-top: 4px;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 340px;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: 14px;
        align-items: start;
    }

    .addon-card {
        height: auto;
        min-height: 0;
        cursor: default;
    }

    .addon-card-inner {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        min-height: 0;
        padding: 18px;
        overflow: hidden;
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                    border-color 0.32s ease,
                    background-color 0.34s ease;
    }

    .addon-card-heading {
        font-size: 17px;
        padding-right: 32px;
        margin-bottom: 12px;
    }

    .addon-card-chip {
        width: 30px;
        height: 30px;
        top: 12px;
        right: 12px;
    }

    .addon-card-inner,
    .addon-card:hover .addon-card-inner,
    .addon-card:focus-within .addon-card-inner,
    .addon-card.is-expanded .addon-card-inner {
        transform: none;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14);
        border-color: rgba(37, 99, 235, 0.35);
        z-index: 2;
    }

    .addon-feature-detail,
    .addon-card:hover .addon-feature-detail,
    .addon-card:focus-within .addon-feature-detail,
    .addon-card.is-expanded .addon-feature-detail {
        max-height: none;
        opacity: 1;
        margin-top: 4px;
        transform: translateY(0);
    }

    .addons-subheading h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .addon-card-inner {
        padding: 16px;
    }

    .addon-card-heading {
        font-size: 17px;
    }

    .addons-subheading {
        margin-top: 40px;
        margin-bottom: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .addon-card-inner,
    .addon-card-chip,
    .addon-card-inner::before,
    .addon-feature-detail {
        transition: none !important;
    }

    .addon-card:hover .addon-card-inner,
    .addon-card:focus-within .addon-card-inner,
    .addon-card.is-expanded .addon-card-inner {
        transform: none;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: none;
    border-bottom: none;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-cta {
    padding: 18px 48px;
    font-size: 17px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    border-radius: 9999px;
}

/* Let CTA buttons (e.g. Submit) use natural height; don't force 35px from button.btn */
button.btn.btn-cta {
    height: auto;
    min-height: 56px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 24px auto 0;
    text-align: left;
}

.contact-form > .form-row:first-child,
.contact-form > .form-group:first-child {
    margin-top: 0;
}

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

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

.contact-form .form-hint {
    font-size: 13px;
    color: var(--text-muted, #6b7280);
    margin: -8px 0 16px;
}

/* intl-tel-input: full width and match form field style */
.form-group-phone .iti {
    width: 100%;
    display: block;
}
.form-group-phone .iti__input {
    width: 100%;
    padding: 14px 18px 14px 52px;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: var(--transition);
    outline: none;
}
.form-group-phone .iti__input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group-phone .iti__flag-container {
    border-radius: 12px 0 0 12px;
}
.form-group-phone .iti__selected-flag {
    padding: 0 0 0 12px;
}
.form-group-phone .iti__country-list {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.char-counter {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
    font-weight: 500;
}

.contact-form .btn-cta {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
}

.form-consent {
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.consent-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.btn-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-cta:disabled:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

/* Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

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

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
    transition: border-top-color 0.3s ease;
}

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

.modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    margin: 0 auto 16px;
    display: block;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

.modal-body {
    padding: 24px 32px;
    text-align: center;
}

.modal-body p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 24px 32px 32px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.modal-content-form {
    max-width: 520px;
}

.modal-header-with-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.modal-header-with-close h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.modal-body-form {
    padding: 24px 32px;
    text-align: left;
}

.modal-body-form .form-group {
    margin-bottom: 20px;
}

.modal-body-form .form-group:last-child {
    margin-bottom: 0;
}

.modal-content-walkthrough .demo-form .modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 32px 24px;
}

/* Book a Demo – Walkthrough modal (two-column, single page) */
.modal-content-walkthrough {
    max-width: 920px;
    width: 96%;
    max-height: 96vh;
    overflow: hidden;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Demo modal – header, layout, panels (scoped to avoid conflicts) */
.modal-content-walkthrough .demo-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary, #f9fafb);
    flex-shrink: 0;
}

.modal-content-walkthrough .demo-modal-header-logo {
    flex: 0 0 auto;
    min-width: 0;
}

.modal-content-walkthrough .demo-modal-logo-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.modal-content-walkthrough .demo-modal-header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-content-walkthrough .demo-modal-header-close {
    flex: 0 0 auto;
    margin-left: auto;
}

.modal-content-walkthrough .demo-modal-inner {
    display: flex;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1 1 auto;
}

@media (min-width: 641px) and (min-height: 801px) {
    .modal-content-walkthrough .demo-modal-inner {
        min-height: 520px;
    }
}

.modal-content-walkthrough .demo-walkthrough-panel {
    width: 38%;
    min-width: 220px;
    padding: 28px 24px;
    background: var(--bg-secondary, #f9fafb);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-content-walkthrough .demo-walkthrough-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.modal-content-walkthrough .demo-duration-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.modal-content-walkthrough .demo-duration-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.modal-content-walkthrough .demo-walkthrough-panel .demo-form-fields {
    flex: 1;
}

.modal-content-walkthrough .demo-right-panel {
    flex: 1;
    min-height: 0;
    min-width: 0;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: var(--bg-secondary, #f9fafb);
}

.modal-content-walkthrough .demo-time-dropdown-wrap {
    display: none;
    width: 100%;
    min-width: 0;
}

.modal-content-walkthrough .demo-time-grid-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: fit-content;
}

.modal-content-walkthrough .demo-step-subtitle {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.modal-content-walkthrough .demo-step-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.modal-content-walkthrough .demo-date-time-row {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 24px;
    margin-top: 0;
    flex: 1;
    min-height: 0;
    min-width: 0;
    align-items: start;
}

.modal-content-walkthrough .demo-calendar-wrap {
    min-width: 0;
    width: 100%;
}

.modal-content-walkthrough #demo_calendar_inline {
    min-height: 360px;
    width: 100%;
}

.modal-content-walkthrough .demo-calendar-wrap input[type="text"],
.modal-content-walkthrough #demo_calendar_inline input[type="text"],
.modal-content-walkthrough #demo_calendar_inline .flatpickr-input {
    display: none !important;
}

.modal-content-walkthrough #demo_calendar_inline.flatpickr-calendar,
.modal-content-walkthrough #demo_calendar_inline .flatpickr-calendar {
    box-shadow: none;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100% !important;
    max-width: 320px;
    min-width: 280px;
}

.modal-content-walkthrough #demo_calendar_inline .flatpickr-days,
.modal-content-walkthrough #demo_calendar_inline .flatpickr-day {
    max-width: none;
}

.modal-content-walkthrough #demo_calendar_inline .flatpickr-calendar.inline {
    font-size: 15px;
}

.modal-content-walkthrough #demo_calendar_inline .flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.modal-content-walkthrough #demo_calendar_inline .flatpickr-day:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.modal-content-walkthrough .demo-calendar-label,
.modal-content-walkthrough .demo-time-slots-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    margin-top: 0;
    display: block;
}

.modal-content-walkthrough .demo-time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 460px;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 22px;
    box-sizing: border-box;
    scrollbar-gutter: stable;
}

.modal-content-walkthrough .demo-time-slot {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.modal-content-walkthrough .demo-time-slot:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.04);
}

.modal-content-walkthrough .demo-time-slot.selected {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

.modal-content-walkthrough .demo-time-slot:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-content-walkthrough .demo-form-fields .form-group {
    margin-bottom: 18px;
}

.modal-content-walkthrough .demo-form-fields .form-group:last-child {
    margin-bottom: 0;
}

.modal-content-walkthrough .demo-form-fields label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.modal-content-walkthrough .demo-form-fields input[type="text"],
.modal-content-walkthrough .demo-form-fields input[type="email"],
.modal-content-walkthrough .demo-form-fields .form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
}

.modal-content-walkthrough .demo-modal-footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 20px 32px 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(249, 250, 251, 0.6);
    flex-shrink: 0;
}

.modal-content-walkthrough .demo-selected-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    min-height: 52px;
    min-width: 0;
    max-width: 480px;
}

/* Entrance animation: only when modal opens (class added in JS), so it doesn't re-run when .updated is removed */
.modal-content-walkthrough .demo-selected-summary.summary-entered {
    animation: demoSummaryFade 0.35s ease-out forwards;
}

@keyframes demoSummaryFade {
    from {
        opacity: 0.6;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content-walkthrough .demo-selected-summary.updated {
    animation: demoSummaryPop 0.4s ease-out;
}

@keyframes demoSummaryPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.modal-content-walkthrough .demo-selected-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.modal-content-walkthrough .demo-selected-date,
.modal-content-walkthrough .demo-selected-time {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-content-walkthrough .demo-selected-date.empty,
.modal-content-walkthrough .demo-selected-time.empty {
    color: var(--text-muted);
    font-weight: 500;
}

.modal-content-walkthrough .demo-selected-sep {
    color: var(--border-light);
    font-weight: 400;
}

.modal-content-walkthrough .demo-btn-submit {
    padding: 10px 22px;
    font-size: 15px;
    flex-shrink: 0;
}

.modal-content-walkthrough .demo-btn-submit.is-loading {
    pointer-events: none;
}

.modal-content-walkthrough .demo-btn-submit .demo-btn-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 8px;
    vertical-align: -0.2em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: demo-btn-spin 0.65s linear infinite;
}

@keyframes demo-btn-spin {
    to { transform: rotate(360deg); }
}

/* Demo modal – short viewports: body scrolls, footer stays visible */
@media (max-height: 800px) {
    .modal-content-walkthrough {
        height: 96vh;
        max-height: 96vh;
    }
    .modal-content-walkthrough .demo-modal-inner {
        min-height: 0;
        flex: 1 1 auto;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .modal-content-walkthrough .demo-walkthrough-panel {
        padding: 20px 20px;
        overflow: visible;
    }
    .modal-content-walkthrough .demo-right-panel {
        padding: 20px 24px;
        overflow: visible;
    }
    .modal-content-walkthrough #demo_calendar_inline {
        min-height: 0;
    }
    .modal-content-walkthrough .demo-time-slots {
        max-height: min(320px, 40vh);
    }
}

/* Demo modal – responsive (single block per breakpoint, scoped) */
@media (max-width: 700px) {
    .modal-content-walkthrough .demo-date-time-row {
        grid-template-columns: 1fr;
    }
    .modal-content-walkthrough #demo_calendar_inline.flatpickr-calendar,
    .modal-content-walkthrough #demo_calendar_inline .flatpickr-calendar {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .modal-content-walkthrough {
        height: 95vh;
        max-height: 95vh;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }
    .modal-content-walkthrough .demo-modal-inner {
        flex-direction: column;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal-content-walkthrough .demo-walkthrough-panel {
        width: 100%;
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 24px 20px;
    }
    .modal-content-walkthrough .demo-calendar-wrap {
        width: 100%;
    }
    .modal-content-walkthrough .demo-right-panel {
        padding: 24px 20px;
        flex: 0 0 auto;
        overflow: visible;
        min-height: auto;
    }
    .modal-content-walkthrough .demo-date-time-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: none;
        min-height: auto;
    }
    .modal-content-walkthrough #demo_calendar_inline {
        min-height: 0;
    }
    .modal-content-walkthrough #demo_calendar_inline.flatpickr-calendar,
    .modal-content-walkthrough #demo_calendar_inline .flatpickr-calendar {
        min-width: 0;
        max-width: 100%;
    }
    .modal-content-walkthrough .demo-time-grid-wrap {
        display: none;
    }
    .modal-content-walkthrough .demo-time-dropdown-wrap {
        display: block;
        width: 100%;
    }
    .modal-content-walkthrough .demo-modal-footer-row {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 20px;
    }
    .modal-content-walkthrough .demo-selected-summary {
        max-width: none;
    }
    .modal-content-walkthrough .demo-btn-submit {
        width: 100%;
    }
}

/* Reusable custom dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
    min-width: 0;
}

.custom-dropdown__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.custom-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.custom-dropdown__trigger:hover:not(:disabled) {
    border-color: var(--primary-light, #60a5fa);
}

.custom-dropdown__trigger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.custom-dropdown.is-open .custom-dropdown__trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.custom-dropdown__trigger:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.custom-dropdown__value {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-dropdown__value--placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

.custom-dropdown__chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.custom-dropdown.is-open .custom-dropdown__chevron {
    transform: rotate(180deg);
}

.custom-dropdown__list {
    position: fixed;
    z-index: 10050;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    max-height: min(280px, 45vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-dropdown__option {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
}

.custom-dropdown__option:hover,
.custom-dropdown__option.is-active {
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary-color);
}

.custom-dropdown__option.is-selected {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.custom-dropdown__option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.custom-dropdown__input {
    display: none;
}

.btn-modal {
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
}

.footer-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.footer-section:has(h4) {
    text-align: center;
}

.footer-section:has(h4) ul {
    display: inline-block;
    text-align: left;
}

.footer-section-quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section-quick-links h4 {
    text-align: center;
    align-self: stretch;
}

.footer-quick-links {
    column-count: 2;
    column-gap: 24px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.footer-quick-links li {
    margin-bottom: 12px;
    break-inside: avoid;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link--facebook {
    color: #1877f2;
}

.footer-social-link--instagram {
    color: #e4405f;
}

.footer-social-link--linkedin {
    color: #0a66c2;
}

/* Ensure Lucide SVG strokes use brand colors even if other SVG rules exist */
.footer-social-link--facebook .footer-social-icon {
    stroke: #1877f2;
}

.footer-social-link--instagram .footer-social-icon {
    stroke: #e4405f;
}

.footer-social-link--linkedin .footer-social-icon {
    stroke: #0a66c2;
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    border-color: var(--primary-color);
    outline: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-separator {
    color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .nav {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 12px;
    }

    .header-actions .btn-login,
    .header-actions .btn-outlined {
        padding: 8px 14px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }

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

    .logo-img {
        height: 40px;
    }

    .footer-social {
        margin-top: 12px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .hero-logo-img {
        max-height: 100px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

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

    .hero-stats {
        flex-direction: column;
        padding: 30px;
        gap: 24px;
    }

    .stat-item {
        padding: 0;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .search-grid,
    .products-grid,
    .key-features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        margin-top: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .legal-content-section {
        padding: 80px 0;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-text h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-text h3 {
        font-size: 18px;
        margin-top: 28px;
    }

    .legal-text p,
    .legal-text li {
        font-size: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Legal Content Section */
.legal-content-section {
    padding: 120px 0;
    background: transparent;
    min-height: calc(100vh - 200px);
}

.legal-content {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    margin-top: 60px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-text li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-text a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-divider {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
    opacity: 0.5;
}

/* Scroll-triggered animations for cards */
.feature-card,
.search-card,
.product-card,
.key-feature-card,
.benefit-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.feature-card.animate-in,
.search-card.animate-in,
.product-card.animate-in,
.key-feature-card.animate-in,
.benefit-card.animate-in,
.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
