/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from current Sanasight brand */
    --primary-blue: #1e73be;
    --dark-blue: #0a2540;
    --light-blue: #4a9eff;
    --dark-gray: #1a1a1a;
    --medium-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success-green: #10b981;
    --warning-red: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e73be 0%, #4a9eff 100%);
    --gradient-dark: linear-gradient(135deg, #0a2540 0%, #1e73be 100%);
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: flex-start;
    margin-left: var(--spacing-lg);
    margin-right: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a.btn-primary {
    margin-left: auto;
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-size: 1rem;
    color: var(--white);
}

.nav-links a.btn-primary:hover {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 115, 190, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 115, 190, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg) 0 8rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
    color: #fbbf24;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #4a9eff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: 0.5rem auto;
    animation: bounce 2s infinite;
    position: relative;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        top: 0;
    }
    40% {
        top: 10px;
    }
    60% {
        top: 5px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Showcase */
.product-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.product-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-top: var(--spacing-lg);
}

.product-visual {
    position: relative;
    max-width: 550px;
    padding: var(--spacing-md);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.product-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

.product-specs {
    margin-bottom: var(--spacing-md);
}

.spec-item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.spec-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #1e73be;
}

.spec-content h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.spec-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.detail-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.highlight-point {
    position: absolute;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.highlight-point.synced-hover .highlight-dot {
    background: var(--light-blue);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
    transform: scale(1.2);
}

.highlight-point.synced-hover .highlight-label {
    opacity: 1;
}

.highlight-dot {
    width: 20px;
    height: 20px;
    background: rgba(30, 115, 190, 0.6);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(30, 115, 190, 0.4);
    transition: all 0.3s ease;
}

.highlight-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(30, 115, 190, 0.8);
    border-radius: 50%;
    opacity: 0.7;
}

.highlight-label {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.highlight-point:hover .highlight-label {
    opacity: 1;
}

.highlight-label strong {
    display: block;
    color: var(--dark-blue);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.highlight-label span {
    display: block;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #1e73be, #4a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
    max-width: 320px;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step h3 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
    position: relative;
    top: 100px;
    flex-shrink: 0;
}

/* Custom Solutions Section */
.custom-solutions {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.custom-card {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.custom-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.15);
}

.custom-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-card h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.custom-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.custom-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.custom-cta p {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* ROI Section */
.roi-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.roi-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(30, 115, 190, 0.2);
    transform: scale(1.05);
}

.comparison-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.comparison-label.old {
    color: var(--medium-gray);
}

.comparison-label.new {
    color: var(--primary-blue);
}

.comparison-cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-md);
}

.comparison-cost span {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.comparison-features {
    list-style: none;
}

.comparison-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 2rem;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features li.positive::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.comparison-features li.negative::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--warning-red);
    font-weight: 700;
}

.comparison-vs {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--medium-gray);
    padding: 0 var(--spacing-sm);
}

.roi-benefits {
    margin-top: var(--spacing-lg);
}

.roi-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item h4 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.benefit-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Clients Section */
.clients-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.client-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.client-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    color: var(--dark-blue);
}

.badge-item .badge-icon {
    color: var(--success-green);
    font-size: 1.25rem;
}

/* Demo Section */
.demo-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.demo-info h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.demo-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.demo-benefits {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.demo-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.demo-form {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-cta-mobile {
    display: none;
}

.form-subtitle {
    text-align: center;
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-content {
        grid-template-columns: 1fr;
    }
    
    .demo-cta-mobile {
        display: block;
        text-align: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        top: 0;
        margin: var(--spacing-sm) 0;
    }
    
    .comparison-card.highlight {
        transform: scale(1);
    }
    
    .comparison-vs {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .features-grid,
    .benefits-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-label {
        left: auto;
        right: 35px;
        white-space: normal;
        max-width: 200px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
section {
    scroll-margin-top: 80px;
}
