/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00;
}

.logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF8C00;
}

.sign-in-btn {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #FF8C00;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FF8C00;
    color: white;
}

.btn-primary:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #FF8C00;
    color: #FF8C00;
}

.trust-badge {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-hunt-badge {
    margin-bottom: 2rem;
}

.product-hunt-badge img {
    height: 40px;
}

.feature-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.demo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.demo-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.demo-placeholder {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.demo-image {
    position: relative;
    background: linear-gradient(135deg, #FF8C00, #FFB84D);
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF8C00;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.trusted-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trusted-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trusted-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.company-logos {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    padding: 1rem 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

/* Challenges Section */
.challenges-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.challenges-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.challenges-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.challenges-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.challenges-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.challenge-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.challenge-before,
.challenge-after {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.challenge-before {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
}

.challenge-after {
    background: #f0fff4;
    border-left: 4px solid #51cf66;
}

.challenges-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF8C00;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: white;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.how-it-works-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.how-it-works-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.step-item {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF8C00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    background: rgba(255, 140, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    font-size: 2rem;
    color: #FF8C00;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.step-item img {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.code-example {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    margin-top: 1rem;
}

.code-example pre {
    color: #fff;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.benefits-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.benefit-item i {
    color: #51cf66;
}

.cta-button {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Applications Section */
.applications-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.applications-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.applications-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.applications-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.applications-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.application-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.application-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.application-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.application-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.example {
    background: rgba(255, 140, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
}

/* Features Showcase */
.features-showcase {
    padding: 4rem 0;
    background: white;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-details p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.feature-benefits i {
    color: #51cf66;
}

.feature-cta {
    display: inline-block;
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-cta:hover {
    color: #FF7700;
}

/* Reliability Section */
.reliability-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reliability-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.reliability-stats {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.reliability-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reliability-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reliability-details p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reliability-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.reliability-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.reliability-benefits i {
    color: #51cf66;
}

.reliability-cta {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reliability-cta:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Key Features */
.key-features {
    padding: 4rem 0;
    background: white;
}

.key-features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.key-feature-item {
    text-align: center;
    padding: 2rem;
}

.key-feature-icon {
    background: rgba(255, 140, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #FF8C00;
}

.key-feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.key-feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.comparison-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.highlight-column {
    background: rgba(255, 140, 0, 0.1) !important;
    color: #FF8C00 !important;
}

.comparison-table i.fa-check {
    color: #51cf66;
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.comparison-highlight h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-highlight p {
    color: #666;
    line-height: 1.6;
}

.comparison-cta {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comparison-cta:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.testimonials-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonials-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.testimonial-nav {
    background: white;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.testimonial-nav:hover {
    border-color: #FF8C00;
    color: #FF8C00;
}

.testimonials-grid {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF8C00, #FFB84D);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-title .highlight {
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #FF8C00;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FF8C00;
}

.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item i {
    color: #FF8C00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .reliability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .testimonials-navigation {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF8C00;
    border-color: #FF8C00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.submit-btn {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

.thank-you-message {
    background: #f0fff4;
    border: 2px solid #51cf66;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.thank-you-content i {
    font-size: 3rem;
    color: #51cf66;
    margin-bottom: 1rem;
}

.thank-you-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thank-you-content p {
    color: #666;
    line-height: 1.6;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.response-time-card,
.qualification-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3,
.response-time-card h3,
.qualification-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-methods,
.response-info,
.qualification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method,
.response-item,
.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i,
.response-item i,
.qualification-item i {
    color: #FF8C00;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-method strong,
.response-item strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-method p,
.response-item p {
    color: #666;
    margin: 0;
}

.qualification-item span {
    color: #666;
    line-height: 1.5;
}

.contact-benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    text-align: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 1rem;
}

.legal-document {
    padding: 4rem 0;
    background: white;
}

.document-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.legal-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #666;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF8C00;
    margin: 1rem 0;
}

/* Pricing Page Specific Styles */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #FF8C00;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF8C00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF8C00;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FF8C00;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.pricing-features i {
    color: #51cf66;
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.pricing-comparison {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured-column {
    background: rgba(255, 140, 0, 0.1) !important;
}

.pricing-faq {
    padding: 4rem 0;
    background: white;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.faq-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    text-align: left;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF8C00, #FFB84D);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.guarantee-item {
    text-align: center;
}

.guarantee-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-item p {
    opacity: 0.9;
}

/* Features Page Specific Styles */
.features-overview {
    padding: 4rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.feature-card .feature-icon {
    background: rgba(255, 140, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FF8C00;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: #FF8C00;
    position: absolute;
    left: 0;
}

.feature-deep-dive {
    padding: 4rem 0;
    background: #f8f9fa;
}

.deep-dive-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.deep-dive-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.feature-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.feature-icon-large {
    background: rgba(255, 140, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF8C00;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-info p {
    color: #666;
    line-height: 1.6;
}

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

.integrations-section {
    padding: 4rem 0;
    background: white;
}

.integrations-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.integrations-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.integrations-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.integration-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.integration-logo {
    width: 40px;
    height: 40px;
    background: #FF8C00;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.security-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.security-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.security-header {
    margin-bottom: 3rem;
}

.security-icon {
    background: rgba(255, 140, 0, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #FF8C00;
}

.security-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.security-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-item i {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.security-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.security-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .reliability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .testimonials-navigation {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .demo-title,
    .trusted-title,
    .challenges-title,
    .how-it-works-title,
    .applications-title,
    .comparison-title,
    .testimonials-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .challenges-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}
