:root {
    --primary: #48BB78;
    --primary-dark: #38A169;
    --primary-light: #C6F6D5;
    --dark: #1A202C;
    --light: #F7FAFC;
    --background: #FFFFFF;
    --text: #1A202C;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

/* Base Styles */
body {
    background-color: var(--background);
    color: var(--text);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

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

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1.5rem auto 0;
}

/* Navbar */
.navbar {
    background: var(--background);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--text);
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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



/* Hero Section */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    transform: rotate(-10deg);
    z-index: -1;
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    opacity: 0.9;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--primary-dark);
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.hero-image-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--background) 50%, var(--light) 100%);
}

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

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--primary-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text);
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
}

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

.testimonial-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

/* Pricing Section */
.pricing {
    background: var(--background);
}

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

.pricing-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.pro {
    border-color: var(--primary);
}

.pricing-card.lifetime {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, var(--background) 0%, #fff5f5 100%);
}

.popular-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
}

.daily-cost {
    color: var(--text);
    opacity: 0.9;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Download Section */
.download-section {
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 4rem 0;
}

.download-section .section-title {
    color: white;
}

.download-section .section-title::after {
    background: white;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-button {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.download-button.chrome {
    background: white;
    color: #4285F4;
}

.download-button.edge {
    background: white;
    color: #0078D7;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.download-button.mobile {
    background: #4A90E2;
    color: white;
    border: none;
}

.download-button.mobile:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: var(--background);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question .arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg);
    transition: var(--transition);
}

.faq-question.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--background);
}

.faq-answer p {
    padding: 1.5rem 0;
    color: var(--text);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo .logo span {
    color: white;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 0;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid,
    .pricing-cards,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 4rem 0;
}

.policy-update {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    opacity: 0.8;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text);
}

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

.policy-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

.policy-section.contact {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 3rem;
}

.policy-section.contact a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.policy-section.contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 3rem 0;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
}

/* Summarizer Section Styles */
.summarizer-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.summarizer-container {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.input-section {
    padding: 2rem;
}

#textInput {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    margin-bottom: 1rem;
    background: var(--input-background);
    color: var(--text-color);
}

.summarizer-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.output-section {
    padding: 2rem;
    background: var(--background-color);
}

#loadingContainer {
    text-align: center;
    padding: 2rem;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--primary-color);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -30%; }
    100% { left: 100%; }
}

#summaryContainer {
    background: var(--card-background);
    border-radius: 8px;
    overflow: hidden;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
}

.summary-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-summary {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

#summaryContent {
    padding: 1.5rem;
    line-height: 1.6;
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summarizer-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toggle-label {
        justify-content: space-between;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    margin: 6px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .theme-toggle {
        margin-top: 2rem;
    }
}

/* Why SnipIt Section */
.why-snipit {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

.value-item {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
}

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

.use-case {
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #48BB78;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.use-case p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background-color: #48BB78;
    color: white;
    padding: 4rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.step {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: #48BB78;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Technology Section */
.technology {
    padding: 5rem 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tech-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.tech-features {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.tech-features li {
    margin-bottom: 1rem;
    position: relative;
}

.tech-features li::before {
    content: "•";
    color: #48BB78;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.tech-image img {
    border-radius: 8px;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Comparison Section */
.comparison {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.comparison-table th {
    background-color: #48BB78;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

/* Integrations Section */
.integrations {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 3rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.platform {
    text-align: center;
    width: 160px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.platform:hover .platform-icon {
    filter: grayscale(0%);
    opacity: 1;
}

.platform span {
    display: block;
    color: #555;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.chrome-cta, .edge-cta, .web-cta {
    min-width: 180px;
}

.guarantee {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-image {
        order: -1;
        text-align: center;
    }
    
    .tech-image img {
        max-width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .value-grid,
    .use-cases-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .tech-features {
        padding-left: 1rem;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.story-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.story-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.story-header h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.story-author {
    font-size: 0.9rem;
    color: #777;
    text-align: right;
    margin-bottom: 1.5rem;
}

.story-highlight {
    background-color: #f3f9f4;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.story-highlight span {
    font-weight: 600;
    color: #48BB78;
}

/* Reading Benefits Section */
.reading-benefits {
    padding: 5rem 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.featured-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.benefits-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.benefits-info h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem;
    color: #333;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "→";
    color: #48BB78;
    position: absolute;
    left: 0;
    top: 0;
}

.benefits-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefits-list li p {
    margin: 0;
    font-size: 0.95rem;
}

.benefits-image img {
    border-radius: 8px;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Productivity Calculator Section */
.productivity-calculator {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.calculator-form {
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.calc-field {
    margin-bottom: 2rem;
}

.calc-field label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #333;
}

.calc-field input[type="range"] {
    width: 100%;
    margin-bottom: 0.5rem;
    accent-color: #48BB78;
}

.range-value {
    font-size: 0.9rem;
    color: #555;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f3f9f4;
    border-radius: 6px;
}

.result-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #48BB78;
}

.result-note {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.result-note span {
    font-weight: 700;
    color: #48BB78;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-image {
        order: -1;
        text-align: center;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-form {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-text {
        font-size: 1.2rem;
    }
}

/* Remove guarantee styling */
.guarantee {
    display: none;
}

.social-validation-banner {
    background: var(--primary-light);
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.social-validation-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-validation-banner .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-validation-banner .stars {
    color: #ffc107;
    font-size: 18px;
}

.social-validation-banner .rating-text {
    font-weight: 500;
    color: #2d3748;
}

.social-validation-banner .trust-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 14px;
}

@media (max-width: 768px) {
    .social-validation-banner .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.group-pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f3f9f4;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.group-pricing-note p {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.group-pricing-note a {
    color: #48BB78;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background-color: rgba(72, 187, 120, 0.1);
}

.group-pricing-note a:hover {
    color: #38A169;
    background-color: rgba(72, 187, 120, 0.2);
    text-decoration: none;
}

.why-tldr {
    padding: 3rem 0;
}

.before-after-showcase {
    padding: 3rem 0;
}