:root {
    --primary-color: #1abc9c;
    --primary-dark: #16a085;
    --secondary-color: #343a40;
    --accent-color: #27ae60;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --background-light: #f8f9fa;
    --background-medium: #e9ecef;
    --background-dark: #343a40;
    --border-color: #ddd;
    --border-light: #e6e6e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1rem;
    overflow-x: hidden;
    padding-top: 100px;
    scroll-padding-top: 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Layout */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.full-width {
    width: 100%;
    padding: 4rem 0;
}

.centered {
    text-align: center;
}

/* Section Styling */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Backgrounds */
.bg-light { 
    background-color: var(--background-light); 
}

.bg-medium { 
    background-color: var(--background-medium); 
}

.bg-dark {
    background-color: var(--background-dark);
    color: #fff;
}

.bg-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100px;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    background-color: #343a40 !important;
}

.navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar-brand img {
    height: auto;
    width: auto;
    max-width: 240px;
}

.navbar-nav li {
    padding-right: 20px;
}

.nav-link {
    font-size: 1.25em !important;
    color: #ffffff !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.navbar-nav .nav-link {
    margin-right: 5px;
    margin-left: 5px;
}

.nav-item.active .nav-link,
.nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-btn-primary {
    background-color: rgba(26, 188, 156, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
    font-size: 1.25em !important;
    transition: var(--transition);
    display: inline-block;
    color: #ffffff !important;
}

.nav-btn-primary:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 188, 156, 0.3);
    text-decoration: none;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    z-index: 1;
    transition: opacity 0.3s;
    pointer-events: none;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text-color);
    white-space: nowrap;
    padding: 12px 20px;
    display: block;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Banner Section */
.product-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: #000;
}

.product-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    will-change: transform;
    transform: scale(1.2);
}

.product-banner .hero-content {
    position: relative;
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
    text-align: center;
    color: white;
}

.product-banner .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: white;
}

.product-banner .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    color: white;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
}

/* Spotlight Section - Featured Product */
.spotlight-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

.spotlight-badge {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spotlight-badge .badge-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.spotlight-badge .badge-text {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.spotlight-content {
    padding-right: 2rem;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.spotlight-tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.spotlight-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.spotlight-features li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spotlight-features .feature-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.spotlight-features span {
    flex: 1;
}

.spotlight-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-spotlight {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-spotlight-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-spotlight-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-spotlight-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-spotlight-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.spotlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Product Finder Section */
.product-finder-section {
    padding: 5rem 0;
    background-color: white;
}

.product-finder {
    max-width: 1000px;
    margin: 0 auto;
}

.finder-selectors {
    margin-bottom: 3rem;
}

.selector-group {
    display: flex;
    flex-direction: column;
}

.selector-group label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.finder-select {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    box-shadow: var(--shadow-sm);
}

.finder-select:hover {
    border-color: var(--primary-color);
}

.finder-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.finder-results {
    min-height: 200px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.finder-results.show-results {
    opacity: 1;
}

.finder-prompt {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.finder-prompt i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.finder-prompt p {
    font-size: 1.125rem;
}

/* Enhanced Product Finder with Screenshots */
.finder-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.finder-product-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.finder-product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.finder-product-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.finder-product-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05) 0%, rgba(255,255,255,1) 100%);
}

.finder-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* Product Screenshot Container */
.finder-product-screenshot {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.finder-product-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.finder-product-card:hover .finder-product-screenshot img {
    transform: scale(1.05);
}

/* Product Content Area */
.finder-product-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.finder-product-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.finder-product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.finder-product-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: auto;
}

/* All Products Section */
.all-products-section {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured-card {
    border: 2px solid var(--primary-color);
    position: relative;
}

.product-ribbon {
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.product-card-inner {
    padding: 2.5rem;
}

.product-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.product-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-card-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card-features .feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.product-card-features span {
    flex: 1;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.product-card-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Free Statistics Callout */
.free-stats-callout {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(255,255,255,1) 100%);
}

.free-stats-callout .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.callout-content {
    position: relative;
}

.callout-badge {
    margin-bottom: 1.5rem;
}

.badge-free {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #1abc9c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.callout-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.callout-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-callout {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-callout:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.callout-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(26, 188, 156, 0.3));
}

/* Value Propositions with Scroll Reveal */
.value-propositions-section {
    padding: 6rem 0;
    background-color: white;
}

.value-prop-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transition: all 0.8s ease;
}

.value-prop-item.full-width {
    grid-template-columns: 1fr;
    text-align: center;
}

.value-prop-item.full-width .value-prop-content {
    max-width: 900px;
    margin: 0 auto;
}

.scroll-reveal {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-reveal[data-reveal="left"] {
    transform: translateX(-50px);
}

.scroll-reveal[data-reveal="right"] {
    transform: translateX(50px);
}

.scroll-reveal[data-reveal="up"] {
    transform: translateY(50px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Ensure the scroll reveal doesn't cause width issues */
section:has(.scroll-reveal) {
    overflow-x: hidden;
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-prop-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.value-prop-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.value-prop-content p.large-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.value-prop-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Pricing Comparison Table */
.pricing-comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.pricing-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
}

.pricing-comparison-table th.highlight-col {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

.pricing-comparison-table td.highlight-col {
    background: rgba(26, 188, 156, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-comparison-table tbody tr:hover {
    background-color: var(--background-light);
}

.table-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.btn-pricing {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 2rem;
    transition: var(--transition);
}

.btn-pricing:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
    border-color: var(--primary-color);
}

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solution-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.solution-card:hover .solution-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.testimonial-track {
    position: relative;
    min-height: 450px;
    height: 450px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-height: 350px;
}

.testimonial-quote-mark {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.125rem;
}

.author-company {
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question:focus {
    outline: none;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        #1abc9c 0%, 
        #16a085 25%, 
        #27ae60 50%, 
        #2ecc71 75%, 
        #3498db 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(46, 204, 113, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(26, 188, 156, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(22, 160, 133, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 20%);
    pointer-events: none;
    opacity: 0.7;
}

.cta-content-header,
.cta-form-wrapper {
    position: relative;
    z-index: 1;
}

.cta-content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-content-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cta-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-form-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.trial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 4rem 0 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-icons .fa-linkedin-in {
    background-color: #0077B5;
}

.social-icons .fa-youtube {
    background-color: #FF0000;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Messages */
.messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    list-style: none;
}

.alert {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

/* Utility Classes */
.page_header {
    position: relative;
    text-align: center;
    margin-top: 30px;
    line-height: 1.2em;
}

.section_header {
    text-align: center !important;
    padding-top: 30px;
}

/* Spacing Utilities */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pb-6 {
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

/* Video Tabs Section */
.video-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.video-tab {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.video-tab i {
    font-size: 1.75rem;
    color: var(--text-light);
    transition: var(--transition);
}

.video-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.video-tab:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.video-tab.active i {
    color: white;
}

.video-player-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.video-description {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.video-description p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.video-playlist-link {
    text-align: center;
    margin-top: 2rem;
}

.video-playlist-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #FF0000;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    text-decoration: none;
}

.video-playlist-link a:hover {
    background: #CC0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-playlist-link i {
    font-size: 1.5rem;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .spotlight-grid {
        gap: 3rem;
        padding: 3rem;
    }

    .spotlight-title {
        font-size: 2.5rem;
    }

    .value-prop-item {
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .pricing-comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .product-banner {
        min-height: 500px;
    }

    .product-banner .hero-title {
        font-size: 2.5rem;
    }

    .product-banner .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .spotlight-content {
        padding-right: 0;
    }

    .value-prop-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .free-stats-callout .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-brand img {
        width: auto;
        max-width: 180px;
    }

    .dropdown-content {
        opacity: 1;
        position: relative;
        background-color: transparent;
        box-shadow: none;
        border: none;
        left: 0;
        transform: none;
    }

    .dropdown-content a {
        color: #ffffff;
        padding: 8px 24px;
        border-bottom: none;
    }

    .dropdown-content a:hover {
        color: var(--primary-color);
        background-color: transparent;
    }

    .video-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .finder-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .finder-product-screenshot {
        height: 200px;
    }

    /* shared mobile styles section */
    [class*="-visual"] {
        order: -1;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        padding: 1.5rem 1rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    .stat-label {
        font-size: 0.7rem !important;
    }

    .btn-hero,
    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .product-banner {
        min-height: 450px;
    }

    .product-banner .hero-title {
        font-size: 2rem;
    }

    .product-banner .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
    }

    .spotlight-grid {
        padding: 1.5rem;
    }

    .spotlight-title {
        font-size: 2rem;
    }

    .spotlight-tagline {
        font-size: 1.25rem;
    }

    .products-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .trial-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-form-container {
        padding: 2rem 1.5rem;
    }

    .callout-title {
        font-size: 2rem;
    }

    .value-prop-content h3 {
        font-size: 1.5rem;
    }

    .testimonials-carousel {
        padding: 0 1rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .pricing-comparison-table {
        font-size: 0.85rem;
    }

    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .finder-select {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .nav-link {
        font-size: 1rem !important;
    }

    .video-tabs {
        grid-template-columns: 1fr;
    }
    
    .video-tab {
        padding: 1rem;
    }
    
    .video-player-wrapper {
        padding: 1rem;
    }
    
    .video-playlist-link a {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .finder-products-grid {
        grid-template-columns: 1fr;
    }
    
    .finder-product-screenshot {
        height: 220px;
    }
    
    .finder-product-content {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta-group,
    .cta-section,
    footer {
        display: none;
    }
}