* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

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

/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile menu toggle button (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    margin: 3px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    animation: logoJiggle 5s ease-in-out infinite;
}

/* Logo Animation - Subtle jiggle once every 5s */
@keyframes logoJiggle {
    0% { transform: translateY(0) rotate(0); }
    2% { transform: translateY(-1px) rotate(-1deg); }
    4% { transform: translateY(1px) rotate(1deg); }
    6% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(0) rotate(0); }
}

/* Mobile Menu - Hidden on desktop */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 10000;
}

.mobile-menu-overlay.active .mobile-menu-drawer {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: #f3f4f6;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    background: #f9fafb;
    color: #20bc8d;
}

.mobile-nav-cta {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Show mobile menu only on mobile devices */
@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.logo h2 {
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
}

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

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #20bc8d;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Responsive navbar behavior */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
}

/* Buttons */
.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #1a9d75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 188, 141, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #20bc8d;
    border: 2px solid #20bc8d;
}

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

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

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 1rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #20bc8d;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Hero Process Timeline */
.hero-image {
    height: 600px;
    overflow-y: scroll;
    padding-right: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.hero-image::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.process-timeline {
    position: relative;
    padding: 0 20px;
    max-width: 100%;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #20bc8d, #1a9d75);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 2.5rem;
    width: 48%;
}

/* Odd steps on the left */
.process-step:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
}

.process-step:nth-child(odd) .step-number {
    right: calc(-50% - 75px);
    left: auto;
}

.process-step:nth-child(odd) .step-content {
    text-align: right;
    border: none;
}

.process-step:nth-child(odd)::before {
    right: calc(-50% - 38px);
    left: auto;
}

/* Even steps on the right */
.process-step:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.process-step:nth-child(even) .step-number {
    left: calc(-50% - 75px);
    right: auto;
}

.process-step:nth-child(even) .step-content {
    text-align: left;
    border: none;
}

.process-step:nth-child(even)::before {
    left: calc(-50% - 38px);
    right: auto;
}

.process-step:nth-child(even):hover .step-content {
    transform: translateX(5px);
}

.process-step:nth-child(odd):hover .step-content {
    transform: translateX(-5px);
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }
.process-step:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #20bc8d;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #20bc8d;
}

.process-step:hover::before {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 2px #20bc8d; }
    50% { box-shadow: 0 0 0 8px rgba(32, 188, 141, 0.3); }
}

.step-number {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    background: #20bc8d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(32, 188, 141, 0.3);
    z-index: 10;
}

.step-content {
    background: transparent;
    padding: 1.5rem;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
}

.process-step:nth-child(odd):hover .step-content,
.process-step:nth-child(even):hover .step-content {
    box-shadow: none;
}

.step-content h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.sub-steps {
    font-size: 0.75rem;
    color: #20bc8d;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    background: rgba(32, 188, 141, 0.05);
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.2;
}

/* Animation adjustments for alternating sides */
.process-step:nth-child(odd) {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.process-step:nth-child(even) {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #ffffff;
}

.process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.process-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1rem;
}

/* Process Cards Carousel */
.process-cards-wrapper {
    margin-top: 3rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}


.process-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.process-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    display: flex;
}

.process-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card-icon svg {
    width: 120px;
    height: 120px;
    color: #20bc8d;
}

.process-card-icon img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.card-icon-section {
    flex: 0 0 40%;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content-section {
    flex: 1;
    padding: 3rem;
    background: transparent;
}

.card-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.carousel-btn {
    background: transparent;
    color: #20bc8d;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.carousel-btn:hover {
    color: #1a9d75;
    transform: scale(1.2);
}

.carousel-btn:active {
    transform: scale(1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #20bc8d;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #20bc8d;
    transform: scale(1.2);
}

.process-card-goal {
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.process-card-goal strong {
    color: #20bc8d;
    font-weight: 600;
    font-size: 1rem;
}

.process-card-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.process-card-content ul li {
    padding: 0.6rem 0;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
}

.process-card-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20bc8d;
    font-weight: bold;
    font-size: 1.1rem;
}

.process-card-avoid {
    background: transparent;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.process-card-avoid strong {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ScrapOn Key Features Section */
.key-features-section {
    padding: 5rem 0;
    background: #ffffff;
}

.key-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.key-features-header p {
    font-size: 1.15rem;
    color: #666;
}

.key-features-section .modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.key-feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.key-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(32, 188, 141, 0.15);
    border-color: #20bc8d;
}

.key-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.key-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.key-feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Modules Section */
.modules-section {
    padding: 5rem 0;
    background: #ffffff;
}

.modules-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.modules-header p {
    font-size: 1.15rem;
    color: #666;
}

.modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.module-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.module-item:hover {
    border-color: #20bc8d;
    box-shadow: 0 6px 24px rgba(32, 188, 141, 0.12);
    transform: translateY(-2px);
}

.module-header {
    padding: 1rem 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
}

.module-header:hover {
    background: linear-gradient(to right, rgba(32, 188, 141, 0.02), transparent);
}

.module-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.module-number {
    background: linear-gradient(135deg, #20bc8d, #1a9d75);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 1px 6px rgba(32, 188, 141, 0.3);
}

.module-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.module-subtitle {
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 0 2.5rem;
    line-height: 1.4;
}

.module-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #20bc8d;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    background: rgba(32, 188, 141, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-item.active .module-toggle {
    transform: translateY(-50%) rotate(180deg);
    background: #20bc8d;
    color: white;
}

.module-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.25rem;
}

.module-item.active .module-features {
    max-height: 1200px;
    padding: 0 1.25rem 1rem 1.25rem;
}

.module-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features ul li {
    padding: 0.45rem 0;
    color: #444;
    line-height: 1.5;
    font-size: 0.85rem;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 1.25rem;
}

.module-features ul li:last-child {
    border-bottom: none;
}

.module-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20bc8d;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #20bc8d;
}

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

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

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

/* Compliance Section */
.compliance-section {
    padding: 5rem 0;
    background: #ffffff;
}

.compliance-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.compliance-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.compliance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    margin-bottom: 1.5rem;
}

.compliance-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(28%) sepia(8%) saturate(155%) hue-rotate(171deg) brightness(90%) contrast(88%);
    transition: all 0.3s ease;
}

.compliance-card:hover .compliance-icon img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(478%) hue-rotate(116deg) brightness(91%) contrast(86%);
}

.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #20bc8d;
}

.compliance-number {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.compliance-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.compliance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-card ul li {
    padding: 0.6rem 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.compliance-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20bc8d;
    font-weight: bold;
    font-size: 1.1rem;
}

.compliance-cta {
    text-align: center;
    background: linear-gradient(135deg, #20bc8d 0%, #1a9d75 100%);
    color: white;
    border: none;
}

.compliance-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(32, 188, 141, 0.25);
}

.compliance-cta .compliance-number {
    filter: brightness(0) invert(1);
}

.compliance-cta h3 {
    color: white;
}

.compliance-cta .cta-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: white;
}

.compliance-cta .cta-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Integration Ecosystem Section */
.integration-section {
    padding: 5rem 0;
    background: #ffffff;
}

.integration-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.integration-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.integration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #20bc8d;
    background: #ffffff;
}

.integration-icon {
    margin-bottom: 1rem;
}

.integration-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(28%) sepia(8%) saturate(155%) hue-rotate(171deg) brightness(90%) contrast(88%);
    transition: all 0.3s ease;
}

.integration-item:hover .integration-icon img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(478%) hue-rotate(116deg) brightness(91%) contrast(86%);
}

.integration-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.integration-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 5rem 0;
    background: #ffffff;
}

.mobile-app-section .container {
    display: flex;
    flex-direction: column;
}

.mobile-app-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.mobile-app-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 720px;
    margin: -2rem auto 2rem auto;
}

/* Play Store badge and CTA in Mobile App section */
.mobile-app-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.mobile-app-store .play-badge {
    width: 180px;
    height: auto;
    display: block;
}

.mobile-app-store .store-cta {
    font-size: 0.95rem;
    color: #444;
    text-align: center;
}

@media (max-width: 640px) {
    .mobile-app-store .play-badge {
        width: 160px;
    }
    .mobile-app-store .store-cta {
        font-size: 0.9rem;
    }
}

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

.mobile-app-image {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Reduce visual size of mobile screen image by 15% */
.mobile-app-image .mobile-screen-image {
    width: 55%;
    height: auto;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #20bc8d 0%, #1a9d75 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-content::before,
.app-content::after {
    content: '';
    display: block;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.app-content::before {
    width: 60%;
}

.app-content::after {
    width: 80%;
}

.app-footer {
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-app-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.mobile-app-features {
    padding-left: 1rem;
}

.mobile-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mobile-feature-number {
    font-size: 2rem;
    flex-shrink: 0;
}

.mobile-feature-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.mobile-feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ROI & Impact Section */
.roi-impact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.roi-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.roi-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.roi-stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roi-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: #20bc8d;
}

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

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.roi-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #20bc8d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

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

/* Why Choose ScrapOn Section */
.why-choose-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.why-choose-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

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

.why-choose-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #20bc8d;
}

.why-choose-icon {
    margin-bottom: 1.5rem;
}

.why-choose-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(28%) sepia(8%) saturate(155%) hue-rotate(171deg) brightness(90%) contrast(88%);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(478%) hue-rotate(116deg) brightness(91%) contrast(86%);
}

.why-choose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.why-choose-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #ffffff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.plan-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

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

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

.plan-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features ul li {
    padding: 0.5rem 0;
    color: #444;
    font-size: 0.95rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer p {
    font-size: 1rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #20bc8d;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.faq-answer strong {
    color: #20bc8d;
    font-weight: 700;
}

.faq-answer code, .faq-answer .highlight {
    background: #f0f9ff;
    color: #0284c7;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #20bc8d 0%, #1a9d75 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

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

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

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #20bc8d;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #20bc8d;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #20bc8d;
}

/* New footer structure used in index.html */
.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.7fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0 0 0;
    color: #ffffff;
}

.footer-tagline {
    color: #cccccc;
}

.footer-desc {
    color: #cccccc;
}

.footer-ownership a {
    color: #20bc8d;
    text-decoration: none;
}

.footer-ownership a:hover {
    text-decoration: underline;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-contact {
    color: #ffffff;
}

.footer-contact a {
    color: #20bc8d;
    text-decoration: none;
}

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

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin: 0.35rem 0;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #20bc8d;
}

.footer-social-compact {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-ic svg {
    width: 22px;
    height: 22px;
    color: #cccccc;
    transition: color 0.2s ease;
}

.social-ic:hover svg {
    color: #20bc8d;
}

.footer-bottom-bar {
    border-top: 1px solid #333333;
    margin-top: 1.5rem;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-bar .legal-line,
.footer-bottom-bar .ecosystem-line,
.footer-bottom-bar .policy-line {
    color: #b5b5b5;
    font-size: 0.9rem;
}

.footer-bottom-bar .policy-line {
    text-align: right;
}

.footer-bottom-bar .policy-line a {
    color: #20bc8d;
    text-decoration: none;
}

.footer-bottom-bar .policy-line a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
    /* Hide hero timeline on mobile */
    .hero .timeline-container {
        display: none;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        height: auto;
        padding-right: 0;
        overflow: visible;
        margin-top: 1rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }

    /* Center timeline step content if ever shown */
    .timeline-steps, .timeline-step, .step-content-grid, .step-content {
        text-align: center;
        justify-content: center;
    }
    .step-content.left, .step-content.right {
        padding-left: 0;
        padding-right: 0;
        grid-column: 1 / -1;
    }
    .step-circle-container { left: 50%; transform: translate(-50%, -50%); }

    /* Carousel: show text only, center it */
    .card-icon-section {
        display: none;
    }
    .card-content-section {
        padding: 1.5rem;
        text-align: center;
    }
    .carousel-track {
        min-height: auto;
    }
    .carousel-btn {
        font-size: 2rem;
    }

    /* Integration grid/card tweaks */
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .integration-item {
        padding: 1.5rem 1rem;
    }
    .integration-icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .integration-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.3;
    }
    
    .process-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .process-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .modules-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .modules-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .key-features-section .modules-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .module-header {
        padding: 1.5rem;
    }
    
    .module-title h3 {
        font-size: 1.25rem;
    }
    
    .module-subtitle {
        font-size: 0.9rem;
        margin: 0 0 0 3rem;
    }
    
    .module-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .key-features-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .key-features-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .key-feature-card {
        padding: 1.5rem;
    }
    
    .compliance-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .compliance-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .compliance-card {
        padding: 1.5rem;
    }
    
    .compliance-card h3 {
        font-size: 1.2rem;
    }
    
    .compliance-number {
        font-size: 2rem;
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .integration-header h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .integration-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mobile-app-features h2 {
        font-size: 1.75rem;
    }
    
    .mobile-feature-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-feature-number {
        font-size: 1.5rem;
    }
    
    .mobile-feature-content h3 {
        font-size: 1.15rem;
    }
    
    .mobile-feature-content p {
        font-size: 0.95rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .compliance-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roi-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .roi-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .process-card-header {
        padding: 1.5rem;
    }
    
    .process-card-icon {
        font-size: 2.5rem;
    }
    
    .process-card-header h3 {
        font-size: 1.25rem;
    }
    
    .process-card-body {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .process-timeline {
        padding: 0;
    }
    
    .process-timeline::before {
        left: 20px;
        transform: none;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        margin-left: 50px;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 0;
    }
    
    .process-step:nth-child(odd) .step-number,
    .process-step:nth-child(even) .step-number {
        left: -50px;
        right: auto;
    }
    
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        text-align: left;
        border-left: 4px solid #20bc8d;
        border-right: none;
    }
    
    .process-step:nth-child(odd)::before,
    .process-step:nth-child(even)::before {
        left: -40px;
        right: auto;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        animation: slideInFromLeft 0.6s ease forwards;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
}

/* New Timeline Styles */
:root {
    --brand-color: #20bc8d;
    --brand-color-dark: #1a9d75;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom, #ffffff, var(--gray-50));
    color: var(--gray-800);
    line-height: 1.5;
}

/* Progress Bar */
.progress-bar-container {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 13px 19px;
}

.progress-bar-inner {
    max-width: 896px;
    margin: 0 auto;
}

.progress-bar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 0.7rem;
    gap: 13px;
}

.progress-bar-header .label {
    color: var(--gray-600);
}

.progress-bar-header .step-counter {
    color: var(--brand-color);
}

.progress-bar-track {
    height: 5px;
    background: var(--gray-200);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--brand-color), var(--brand-color-dark));
    width: 0%;
    transition: width 0.1s linear;
}

/* Timeline Container */
.timeline-container {
    min-height: auto;
    height: auto;
    position: relative;
    padding: 20px 0;
}

.timeline-wrapper {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    padding: 20px 19px;
}

/* Background Grid */
.background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
}

.background-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--brand-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: calc(100% - 80px);
    transform: translateX(-50%);
}

.timeline-line-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--gray-200), var(--gray-300), var(--gray-200));
    height: 100%;
}

/* Start Dot at the beginning of timeline */
.timeline-start-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--gray-300);
    border-radius: 50%;
    z-index: 10;
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.timeline-start-dot.active {
    background: var(--brand-color);
    box-shadow: 0 0 8px rgba(32, 188, 141, 0.4);
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(to bottom, rgba(32, 188, 141, 0.4), var(--brand-color), var(--brand-color-dark));
    transition: height 0.1s linear;
}

.timeline-line-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(to bottom, rgba(32, 188, 141, 0.3), rgba(32, 188, 141, 0.4), rgba(26, 157, 117, 0.3));
    filter: blur(3px);
    transform: scaleX(2);
    transition: height 0.1s linear;
}

/* Traveling Dot */
.traveling-dot {
    position: absolute;
    left: 50%;
    top: 0;
    pointer-events: none;
    z-index: 20;
    transition: transform 0.1s linear;
    opacity: 1;
}

.dot-ring-outer {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--brand-color);
    transform: translate(-50%, -50%);
    animation: pulse-outer 2s infinite;
}

@keyframes pulse-outer {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.dot-ring-inner {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--brand-color);
    transform: translate(-50%, -50%);
    animation: pulse-inner 1.5s infinite;
}

@keyframes pulse-inner {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.dot-main {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-color);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(32, 188, 141, 0.8), 0 0 40px rgba(32, 188, 141, 0.4);
    position: relative;
}

.dot-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

/* Timeline Steps */
.timeline-steps {
    position: relative;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-circle-container {
    position: absolute;
    left: 50%;
    top: 26px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.step-circle-glow {
    position: absolute;
    inset: -12px;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step-circle-glow::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(32, 188, 141, 0.4) 50%, transparent 100%);
}

.step-circle-pulse {
    position: absolute;
    inset: -8px;
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.5); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-circle-pulse::before {
    content: '';
    position: absolute;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    border: 2px solid rgba(32, 188, 141, 0.5);
}

.step-circle {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 3px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(32, 188, 141, 0.3);
}

.step-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(32, 188, 141, 0.08), rgba(32, 188, 141, 0.03), transparent);
}

.step-circle span {
    position: relative;
    z-index: 10;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
}

.step-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.step-content {
    position: relative;
    padding: 4px 0;
}

.step-content.left {
    padding-right: 61px;
    text-align: right;
    grid-column: 1;
    opacity: 1;
    transform: translateX(0);
}

.step-content.right {
    padding-left: 29px;
    text-align: left;
    grid-column: 2;
    opacity: 1;
    transform: translateX(0);
}

.timeline-step.visible .step-content {
    opacity: 1;
    transform: translateX(0);
}

.step-content h3 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.step-content:hover h3 {
    color: var(--brand-color);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.4;
    font-size: 0.78rem;
}

.step-content::before {
    display: none;
}

.step-content.active {
    transform: scale(1.1);
    transition: transform 0.6s ease-out;
}

.step-content.active h3 {
    color: var(--brand-color);
}

.step-content.active p {
    color: var(--gray-800);
}

/* Completion Marker */
.completion-marker {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.completion-marker.visible {
    opacity: 1;
    transform: scale(1);
}

.completion-circle-wrapper {
    position: relative;
    z-index: 30;
}

.completion-ring {
    position: absolute;
    inset: -16px;
    animation: rotate-completion 15s linear infinite;
}

@keyframes rotate-completion {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.completion-ring::before {
    content: '';
    position: absolute;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(32, 188, 141, 0.3) 25%, transparent 50%, rgba(32, 188, 141, 0.3) 75%, transparent 100%);
}

.completion-circle {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 3px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.8s ease;
}

.completion-circle.active {
    background: linear-gradient(to bottom right, var(--brand-color), var(--brand-color-dark));
    border-color: var(--brand-color);
    box-shadow: 0 8px 40px rgba(32, 188, 141, 0.4);
}

.completion-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.completion-circle svg {
    width: 32px;
    height: 32px;
    color: #9ca3af;
    transition: color 0.6s ease;
}

.completion-circle.active svg {
    color: white;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: draw-check 0.8s ease-out 0.3s forwards;
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

.completion-text {
    text-align: center;
}

.completion-text h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .step-content-grid {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .step-content.left,
    .step-content.right {
        grid-column: 1;
        text-align: left;
        padding-left: 64px;
        padding-right: 19px;
    }

    .step-circle-container {
        left: 32px;
    }

    .timeline-line {
        left: 32px;
    }

    .traveling-dot {
        left: 32px;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.contact-form {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    max-height: 80vh;
    overflow-y: auto;
}

/* Form layout and controls */
.contact-form .form-section {
    margin-bottom: 1rem;
}

.contact-form .form-section h3 {
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.1rem;
    color: #111827;
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form label {
    font-size: 0.95rem;
    color: #374151;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #20bc8d;
    box-shadow: 0 0 0 3px rgba(32, 188, 141, 0.15);
}

.contact-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Ensure page can scroll unless an overlay is active */
html, body {
    overflow-y: auto;
}

/* Lazy reveal */
.lazy-observe {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.lazy-show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WhatsApp Floating Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Floating Button */
.whatsapp-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Popup Card */
.whatsapp-popup {
    position: absolute;
    bottom: 58px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Popup Header */
.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.whatsapp-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 3px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.whatsapp-popup-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.whatsapp-popup-close svg {
    width: 14px;
    height: 14px;
}

.whatsapp-popup-avatar {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-popup-avatar svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.whatsapp-popup-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-popup-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.whatsapp-popup-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 14px;
    background: #E5DDD5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4ccc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.whatsapp-message {
    background: #fff;
    padding: 8px 12px;
    border-radius: 0 10px 10px 10px;
    max-width: 90%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
}

.whatsapp-message p {
    margin: 0;
    font-size: 12px;
    color: #303030;
    line-height: 1.4;
}

.whatsapp-message p:first-child {
    margin-bottom: 2px;
}

.message-time {
    display: block;
    font-size: 10px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 10px 14px;
    background: #fff;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-chat-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 14px;
        right: 14px;
    }
    
    .whatsapp-btn {
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-popup {
        width: calc(100vw - 28px);
        right: 0;
        bottom: 54px;
    }
}
