/* ========================================
   RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* ========================================
   HEADER AND NAVIGATION
   ======================================== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo h1 {
    color: #6ace8b;
    font-size: 1.5rem;
    margin: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6ace8b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #6ace8b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: #ffffff;
    color: #1d1d1f;
    padding: 140px 0 100px;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    opacity: 0.03;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #6ace8b;
    color: white;
    box-shadow: 0 4px 20px rgba(106, 206, 139, 0.3);
}

.btn-primary:hover {
    background: #6ace8b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(106, 206, 139, 0.4);
}

.btn-secondary {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
}

.btn-secondary:hover {
    background: #e8e8ed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    background: white;
    padding: 12px;
}

.app-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1d1d1f;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-description {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
}

/* ========================================
   PRODUCTS OVERVIEW
   ======================================== */
.products-overview {
    padding: 120px 0;
    background: #f5f5f7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 206, 139, 0.3), transparent);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background: white;
    padding: 8px;
}

.product-name {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-description {
    margin-bottom: 2rem;
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.5;
}

.product-link {
    color: #6ace8b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-link:hover {
    color: #6ace8b;
    transform: translateX(4px);
}

.product-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.product-link:hover::after {
    transform: translateX(4px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 120px 0;
    background: white;
}

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

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #f5f5f7;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.feature-item h3 {
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-item p {
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    background: #1d1d1f;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(106, 206, 139, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.page-header {
    background: #ffffff;
    color: #1d1d1f;
    padding: 140px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    opacity: 0.03;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    position: relative;
    z-index: 2;
}

.page-description {
    font-size: 1.4rem;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.products-section {
    padding: 120px 0;
    background: #f5f5f7;
}

.product-card-large {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 206, 139, 0.3), transparent);
}

.product-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.product-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 8px;
    flex-shrink: 0;
}

.product-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.product-tagline {
    font-size: 1.1rem;
    color: #86868b;
    font-weight: 500;
}

.product-description {
    font-size: 1.1rem;
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #1d1d1f;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6ace8b;
    font-weight: bold;
    font-size: 1.1rem;
}

.product-actions {
text-align: center;
}

/* ========================================
   INDIVIDUALPRODUCT PAGE
   ======================================== */
.product-hero-content {
    margin-top: 150px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    background: #ffffff;
    color: #1d1d1f;
    padding: 140px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
    background: #ffffff;
    color: #1d1d1f;
    padding: 140px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    opacity: 0.03;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content .content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #6ace8b;
}

.legal-content .content-block h2 {
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.legal-content .content-block a {
    color: #6ace8b;
    text-decoration: none;
    font-weight: 500;
}

.legal-content .content-block a:hover {
    text-decoration: underline;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 120px 0;
    background: #f5f5f7;
}

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

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 206, 139, 0.3), transparent);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-card p {
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-card a {
    color: #6ace8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #6ace8b;
}

.contact-form-section {
    padding: 120px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f5f5f7;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ace8b;
    box-shadow: 0 0 0 3px rgba(106, 206, 139, 0.1);
}

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

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #1d1d1f;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.faq-section {
    padding: 120px 0;
    background: #f5f5f7;
}

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

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.faq-item p {
    color: #86868b;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #f5f5f7;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #86868b;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6ace8b;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* Legal pages tablet styles */
    .legal-hero {
        padding: 120px 0 70px;
    }

    .legal-content {
        padding: 70px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-graphic {
        gap: 1rem;
    }

    .app-logo {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    /* Remove card styling for mobile */
    .products-overview {
        background: transparent;
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .product-card::before {
        display: none;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-logo {
        width: 60px;
        height: 60px;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-bottom: 1rem;
    }

    .features {
        background: transparent;
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        border: none;
        margin-bottom: 2rem;
    }

    .feature-item:hover {
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-description {
        font-size: 1.2rem;
    }

    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .product-content {
        margin-left: 0;
        text-align: center;
    }

    .product-actions {
        margin-left: 0;
    }

    .product-logo-large {
        width: 80px;
        height: 80px;
    }

    .product-info h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        background: transparent;
        padding: 60px 0;
    }

    .contact-card {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .contact-card::before {
        display: none;
    }

    .contact-card:hover {
        transform: none;
        box-shadow: none;
    }

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

    .form-container {
        padding: 2rem;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .contact-form-section {
        background: transparent;
        padding: 60px 0;
    }

    .faq-section {
        background: transparent;
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .faq-item:hover {
        transform: none;
        box-shadow: none;
    }

    /* Products page specific mobile styles */
    .products-section {
        background: transparent;
        padding: 60px 0;
    }

    .product-card-large {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .product-card-large::before {
        display: none;
    }

    .product-card-large:hover {
        transform: none;
        box-shadow: none;
    }

    .product-logo-large {
        width: 60px;
        height: 60px;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    /* Fix check mark alignment in mobile */
    .product-features li {
        padding-left: 0;
        text-align: center;
        position: relative;
    }

    .product-features li::before {
        position: static;
        margin-right: 0.5rem;
        display: inline;
    }
}

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

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .products-overview {
        padding: 40px 0;
    }

    .features {
        padding: 40px 0;
    }

    .contact-info {
        padding: 40px 0;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .faq-section {
        padding: 40px 0;
    }

    .products-section {
        padding: 40px 0;
    }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   APP-FOCUSED PRODUCT PAGE LAYOUT
   ======================================== */
.app-hero {
    background: linear-gradient(135deg, #6ace8b 0%, #6ace8b 50%, #6ace8b 100%);
    color: white;
    padding: 100px 0 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.app-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 60px;
}

.app-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.app-breadcrumb a {
    color: white;
    text-decoration: none;
}

.app-breadcrumb a:hover {
    text-decoration: underline;
}

.app-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.app-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-showcase {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 30px 30px 0 0;
    padding: 60px 0;
    margin-top: -30px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.app-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-logo-section {
    text-align: center;
}

.app-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.1);
}

.app-info {
    text-align: left;
}

.app-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.app-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-screenshot-large {
    grid-column: 1 / -1;
    height: 300px;
}

/* ========================================
   APP-FOCUSED SECTIONS
   ======================================== */
.app-features {
    padding: 80px 0;
    background: white;
}

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

.app-feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6ace8b, #6ace8b);
}

.app-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.app-feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.app-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.app-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #6ace8b 0%, #6ace8b 100%);
    color: white;
    position: relative;
}

.app-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.app-demo-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-demo-image {
    position: relative;
}

.app-demo-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.app-stats {
    padding: 60px 0;
    background: #f8fafc;
}

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

.app-stat-item {
    padding: 2rem;
}

.app-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6ace8b;
    margin-bottom: 0.5rem;
    display: block;
}

.app-stat-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6ace8b, #6ace8b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefits {
    padding: 80px 0;
    background: white;
}

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

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

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 0;
}

.benefits-graphic {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6ace8b;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}





/* ========================================
   RESPONSIVE DESIGN FOR APP PAGES
   ======================================== */
@media (max-width: 768px) {
    .app-title {
        font-size: 2.5rem;
    }

    .app-subtitle {
        font-size: 1.2rem;
    }

    .app-actions {
        flex-direction: column;
        align-items: center;
    }

    .app-showcase {
        padding: 40px 0;
    }

    .app-showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .app-screenshots {
        grid-template-columns: 1fr;
    }

    .app-features {
        background: transparent;
        padding: 40px 0;
    }

    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .app-feature-card {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        border: none;
        margin-bottom: 2rem;
    }

    .app-feature-card::before {
        display: none;
    }

    .app-feature-card:hover {
        transform: none;
        box-shadow: none;
    }

    .app-demo {
        padding: 40px 0;
    }

    .app-demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .app-stats {
        background: transparent;
        padding: 40px 0;
    }

    .app-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .app-stat-item {
        background: transparent;
        padding: 1rem 0;
        border: none;
    }

    .benefits {
        background: transparent;
        padding: 40px 0;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-graphic {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        background: transparent;
        border: none;
        padding: 1rem 0;
    }

    .how-it-works {
        background: transparent;
        padding: 40px 0;
    }

    .steps-grid {
        gap: 1rem;
    }

    .step-item {
        padding: 1rem 0;
    }

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

    .contact-form {
        padding: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Legal pages responsive styles */
    .legal-hero {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 60px 0;
    }

    .legal-content .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Hero responsive styles */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .hero-features .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .hero-features .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .hero-features .feature-text {
        font-size: 0.9rem;
    }

    .hero-stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        gap: 1rem;
    }

    .stat-badge {
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .testimonial-card::before {
        display: none;
    }

    .testimonial-card:hover {
        transform: none;
        box-shadow: none;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .value-benefits {
        gap: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .features-showcase {
        background: transparent;
        padding: 40px 0;
    }

    .features-showcase .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-showcase .feature-card {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-bottom: 2rem;
    }

    .features-showcase .feature-card::before {
        display: none;
    }

    .features-showcase .feature-card:hover {
        transform: none;
        box-shadow: none;
    }

    .urgency-section {
        padding: 40px 0;
    }

    .urgency-section h2 {
        font-size: 2rem;
    }

    .urgency-section p {
        font-size: 1.1rem;
    }

    .faq-section {
        background: transparent;
        padding: 40px 0;
    }

    .faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-section .faq-item {
        background: transparent;
        padding: 1rem 0;
        border-radius: 0;
        border: none;
        margin-bottom: 2rem;
    }

    .faq-section .faq-item:hover {
        transform: none;
        box-shadow: none;
    }

    .final-cta {
        padding: 40px 0;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ========================================
   CONVERSION-FOCUSED LAYOUT STYLES
   ======================================== */

/* Hero Section */
.hero {
    background: #ffffff;
    color: #1d1d1f;
    padding: 140px 0 100px;
    margin-top: 70px;
    position: relative;
}

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

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

.hero-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #86868b;
}

.hero-breadcrumb a {
    color: #6ace8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #6ace8b;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.hero-features .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6ace8b 0%, #6ace8b 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(106, 206, 139, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-features .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 12px;
}

.hero-features .feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.hero-stats-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #86868b;
    font-weight: 500;
}

/* Inline, bold, larger hero stat badges (scoped to hero overlay) */
.hero-stats-overlay .stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats-overlay .stat-number {
    display: inline;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f;
}

.hero-stats-overlay .stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 206, 139, 0.3), transparent);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1f2937;
    font-style: italic;
    margin: 0;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #6b7280;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: white;
}

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

.value-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.value-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 3rem;
}

.value-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.value-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Showcase */
.features-showcase {
    padding: 80px 0;
    background: #f8fafc;
}

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

.features-showcase .feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-showcase .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 206, 139, 0.3), transparent);
}

.features-showcase .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.features-showcase .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.features-showcase .feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.features-showcase .feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: #f8fafc;
    color: #1d1d1f;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 206, 139, 0.03) 0%, rgba(106, 206, 139, 0.01) 100%);
}

.urgency-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-block;
    background: rgba(106, 206, 139, 0.1);
    border: 1px solid rgba(106, 206, 139, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
}

.urgency-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6ace8b;
}

.urgency-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    line-height: 1.2;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #86868b;
    line-height: 1.5;
}

.urgency-cta {
    margin-bottom: 2rem;
}

.urgency-note {
    font-size: 0.9rem;
    color: #86868b;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-section .faq-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-section .faq-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #1f2937;
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(106, 206, 139, 0.1) 0%, transparent 70%);
}

.final-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE TWEAKS FOR HERO & VALUE SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .hero-content,
    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text,
    .value-text {
        margin: 0 auto;
    }

    .hero-visual,
    .value-visual {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .value-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-breadcrumb { 
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        padding: 0 20px;
    }

    .hero-description {
        font-size: 1rem;
    }
    .benefit-item {
        text-align: left;
    };

    .value-image {
        max-height: 320px;
    }
    
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.guarantee-text {
    color: white;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}
