* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#shader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #10b981;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.hamburger:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hamburger:active {
    transform: translateY(0) scale(0.98);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    position: absolute;
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 16px;
}

.hamburger span:nth-child(2) {
    top: 23.5px;
}

.hamburger span:nth-child(3) {
    top: 31px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 28px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 28px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-menu-header h3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.close-menu {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 10px;
    font-size: 1.25rem;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-menu:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.close-menu:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-menu li {
    margin-bottom: 0.75rem;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
}

.mobile-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-nav-menu a:hover::before {
    left: 100%;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mobile-nav-menu a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    font-size: 1.25rem;
}

.mobile-nav-menu a:hover::after,
.mobile-nav-menu a.active::after {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.mobile-nav-buttons .btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-nav-buttons .btn:active::before {
    width: 300px;
    height: 300px;
}

.mobile-nav-buttons .btn-outline {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}

.mobile-nav-buttons .btn-outline:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.mobile-nav-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mobile-nav-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Overlay background */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-outline:hover {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}


.btn-google-play {
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    margin: 0.5rem;
}

.btn-google-play:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-google-play i {
    font-size: 1.75rem;
    color: #fff;
}

.btn-google-play .btn-text {
    display: flex;
    flex-direction: column;
}

.btn-google-play .small-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1;
    font-weight: 400;
}

.btn-google-play .main-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-app-store {
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    margin: 0.5rem;
}

.btn-app-store:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-app-store i {
    font-size: 1.75rem;
    color: #fff;
}

.btn-app-store .btn-text {
    display: flex;
    flex-direction: column;
}

.btn-app-store .small-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1;
    font-weight: 400;
}

.btn-app-store .main-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-modal.active {
    display: flex;
    opacity: 1;
}

.coming-soon-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 4rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

.coming-soon-modal.active .coming-soon-content {
    transform: scale(1);
}

.coming-soon-content .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.coming-soon-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon-content .close-modal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.coming-soon-content .close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.coming-soon-content .modal-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(107, 114, 128, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.coming-soon-content .modal-close-x:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 2rem 6rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #ecfdf5 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(5, 150, 105, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.35rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}


.portfolio-examples {
    margin: 3rem 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.portfolio-examples h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.url-examples {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.url-example {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.url-example:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.95);
}

.url-example .url {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.url-example .label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.portfolio-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.portfolio-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.portfolio-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    border: 3px solid #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    transition: transform 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.portfolio-card p {
    color: #10b981;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.portfolio-card small {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    font-family: 'Courier New', monospace;
}

.company-logos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.company-logos span {
    color: #9ca3af;
    margin-right: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logos {
    display: inline-flex;
    gap: 2.5rem;
    font-size: 2rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.logos i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.logos i:hover {
    color: #10b981;
    transform: scale(1.2);
}


/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-text p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: translateX(5px);
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.preview-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-header h3 {
    font-weight: 600;
    color: #111827;
}

.badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-content {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.preview-section h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.preview-section p {
    color: #6b7280;
    font-size: 0.875rem;
}

.preview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.stat .label {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Platform Section */
.platform-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.platform-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.search-interface h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked+span {
    color: #10b981;
}

.radio-option:hover {
    border-color: #10b981;
}

.search-box {
    display: flex;
    gap: 1rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.platform-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.platform-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.platform-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
}

.platform-feature i {
    font-size: 1.25rem;
    color: #10b981;
}

/* CTA Section */
.cta-section {
    background: #10b981;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: #10b981;
}

.cta-section .btn-primary:hover {
    background: #f9fafb;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand h3 {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #10b981;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #10b981;
}

/* Pricing Page Specific Styles */
.pricing-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;

    /* Pricing Section - Premium Upgrade */
    .pricing-hero {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
        padding: 6rem 2rem;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .pricing-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 70% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
        pointer-events: none;
    }

    .pricing-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out;
    }

    .pricing-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .pricing-hero p {
        font-size: 1.25rem;
        color: #9ca3af;
        max-width: 600px;
        margin: 0 auto 3rem;
        line-height: 1.7;
    }

    .pricing-info-badge {
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        color: #34d399;
        padding: 0.5rem 1.25rem;
        border-radius: 2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
        font-size: 0.95rem;
        margin-bottom: 2rem;
        backdrop-filter: blur(5px);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: -100px auto 4rem;
        padding: 0 1rem;
        position: relative;
        z-index: 10;
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 1.5rem;
        padding: 2.5rem;
        border: 1px solid rgba(229, 231, 235, 0.5);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .pricing-card.featured {
        background: white;
        transform: scale(1.05);
        border: 2px solid #10b981;
        box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
        z-index: 2;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .pricing-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: #10b981;
        color: white;
        padding: 0.25rem 1rem;
        border-radius: 2rem;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    }

    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-plans .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-plans .pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-plans .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-plans .currency {
    font-size: 3.5rem;
    font-weight: 700;
    color: #10b981;
}

.pricing-plans .period {
    color: #6b7280;
    font-size: 1.125rem;
}

.price-description {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-plans .pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-plans .pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.pricing-plans .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-plans .pricing-features .fa-check {
    color: #10b981;
    font-size: 1rem;
}

.pricing-plans .pricing-features .fa-times {
    color: #ef4444;
    font-size: 1rem;
}

.pricing-plans .pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: #10b981;
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    text-align: left;
    background: #111827;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #111827;
}

.comparison-table .fa-check {
    color: #10b981;
    font-size: 1.25rem;
}

.comparison-table .fa-times {
    color: #ef4444;
    font-size: 1.25rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f9fafb;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.trust-indicators .stat-item {
    text-align: center;
}

.trust-indicators .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.trust-indicators .stat-label {
    font-size: 1.125rem;
    color: #6b7280;
}

.company-logos {
    margin-top: 2rem;
}

.company-logos span {
    color: #6b7280;
    margin-right: 2rem;
    font-size: 1.125rem;
}

.company-logos .logos {
    display: inline-flex;
    gap: 2rem;
    font-size: 2rem;
    color: #6b7280;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.story-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.story-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.story-plan {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.story-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-results {
    display: flex;
    gap: 2rem;
}

.result {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Implementation Guide Section */
.implementation-guide {
    padding: 5rem 2rem;
    background: white;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.guarantee-feature i {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Enterprise Section */
.enterprise-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.enterprise-content {
    max-width: 1200px;
    margin: 0 auto;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.enterprise-feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.enterprise-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.enterprise-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.enterprise-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.enterprise-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enterprise-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.enterprise-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Enhanced FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #10b981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
    background: #f0fdf4;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #10b981;
}

.faq-question i {
    color: #10b981;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    background: rgba(16, 185, 129, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #10b981;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
    color: #6b7280;
}

.faq-footer .btn-link {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.5rem;
}

.faq-footer .btn-link:hover {
    text-decoration: underline;
}

/* Features Page Specific Styles */
.features-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats .label {
    font-size: 1rem;
    opacity: 0.8;
}

/* AI Features Section */
.ai-features {
    padding: 5rem 2rem;
    background: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ai-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ai-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.ai-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.ai-feature p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Core Features Section */
.core-features {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.feature-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-info p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Advanced Features Section */
.advanced-features {
    padding: 5rem 2rem;
    background: white;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advanced-feature {
    background: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advanced-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    list-style: none;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.feature-highlights .fa-check {
    color: #10b981;
}

/* Integration Features Section */
.integration-features {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.integration-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.integration-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.integration-item i {
    font-size: 1.5rem;
    color: #10b981;
}

.integration-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* Security Features Section */
.security-features {
    padding: 5rem 2rem;
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.security-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.security-item p {
    color: #6b7280;
    line-height: 1.5;
}

/* Performance Features Section */
.performance-features {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.metric-value {
    margin-bottom: 1rem;
}

.metric-value .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    display: block;
}

.metric-value .unit {
    font-size: 1rem;
    color: #6b7280;
}

.metric-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
}

.performance-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.performance-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.performance-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.performance-feature i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.performance-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.performance-feature p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: 5rem 2rem;
    background: white;
}

.feature-comparison .comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-comparison table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-comparison th {
    background: #10b981;
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.feature-comparison th:first-child {
    text-align: left;
    background: #111827;
}

.feature-comparison td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.feature-comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: #111827;
}

.feature-comparison .fa-check {
    color: #10b981;
    font-size: 1.25rem;
}

.feature-comparison .fa-times {
    color: #ef4444;
    font-size: 1.25rem;
}

.feature-comparison tr:last-child td {
    border-bottom: none;
}

.feature-comparison tr:hover {
    background: #f9fafb;
}

/* Sponsor Section */
.sponsor-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 4px solid #10b981;
}

.sponsor-content {
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #10b981;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sponsor-name {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sponsor-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Active navigation state */
.nav-menu a.active {
    color: #10b981;
    font-weight: 600;
}

/* Responsive Design for Features Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats .number {
        font-size: 2rem;
    }

    .ai-grid,
    .features-showcase,
    .advanced-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .advanced-feature {
        max-width: 400px;
        margin: 0 auto;
    }

    .integration-list {
        grid-template-columns: 1fr;
    }

    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .performance-features-list {
        grid-template-columns: 1fr;
    }

    .feature-comparison table {
        font-size: 0.875rem;
    }

    .feature-comparison th,
    .feature-comparison td {
        padding: 1rem 0.75rem;
    }
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2rem;
    }

    .pricing-hero-content p {
        font-size: 1rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-plans .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plans .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-plans .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-plans .currency {
        font-size: 2.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 1rem;
    }

    .comparison-table th:last-child,
    .comparison-table td:last-child {
        padding-right: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: #f9fafb;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #fbbf24;
    margin-top: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-item h3 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #6b7280;
    line-height: 1.6;
}

.problem-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #e5e7eb;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #9ca3af;
    transition: all 0.3s;
}

.problem-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-image-placeholder:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.problem-image-placeholder i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.problem-image-placeholder p {
    color: #6b7280;
    font-weight: 600;
    text-align: center;
}

/* Solution Section */
.solution-section {
    padding: 5rem 2rem;
    background: white;
}

.solution-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #e5e7eb;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #10b981;
    transition: all 0.3s;
}

.solution-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.solution-image-placeholder:hover {
    border-color: #059669;
    background: #f0fdf4;
}

.solution-image-placeholder i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.solution-image-placeholder p {
    color: #6b7280;
    font-weight: 600;
    text-align: center;
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.solution-item h3 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-item h3 i {
    color: #10b981;
    font-size: 1.25rem;
}

.solution-item p {
    color: #6b7280;
    line-height: 1.6;
}

.templates-section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.template-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.template-preview {
    position: relative;
    overflow: hidden;
}

.template-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.template-card:hover .template-preview img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-info {
    padding: 1.5rem;
}

.template-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.template-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.template-tag {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
}

.period {
    color: #6b7280;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: #10b981;
}

.pricing-features .fa-times {
    color: #ef4444;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.75rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: #10b981;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.875rem;
}

.cta-section .btn-primary {
    background: white;
    color: #10b981;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.cta-section .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    /* Hide desktop navigation on mobile */
    #shader-background {
        display: none;
    }

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .portfolio-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .features-content,
    .platform-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-images {
        order: -1;
    }

    .problem-image-placeholder {
        max-width: 100%;
        height: 250px;
    }

    .problem-image {
        max-width: 100%;
        height: 250px;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-images {
        order: -1;
    }

    .solution-image-placeholder {
        max-width: 100%;
        height: 250px;
    }

    .solution-image {
        max-width: 100%;
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .platform-features {
        flex-direction: column;
    }

    /* Reduce padding for wider content */
    .hero,
    .problem-section,
    .solution-section,
    .benefits-section,
    .platform-section,
    .testimonials-section,
    .pricing-section,
    .faq-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .features-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Make containers wider */
    .container {
        padding: 0 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* CTA Section - Premium Styling */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

/* Stats Section Styling */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

/* Final Mobile Overrides and Overflow Fixes */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem !important;
    }

    /* Hide desktop items */
    .nav-menu,
    .nav-buttons,
    #shader-background {
        display: none !important;
    }

    /* Show hamburger */
    .hamburger {
        display: flex !important;
    }

    .hero-title {
        font-size: 2.25rem !important;
        padding: 0 0.5rem !important;
    }

    .hero-description {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
    }

    /* Fix grid layouts */
    .features-content,
    .platform-content,
    .problem-content,
    .solution-content,
    .footer-content,
    .footer-links,
    .testimonials-grid,
    .templates-grid,
    .pricing-grid,
    .steps-container,
    .benefits-grid,
    .culture-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .pricing-grid {
        margin-top: 2rem !important;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }

    /* Widen sections on mobile */
    section {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .hero,
    .features-hero,
    .about-hero,
    .blog-hero,
    .careers-hero,
    .pricing-hero,
    .ai-features,
    .core-features,
    .advanced-features,
    .integration-features,
    .mission-section,
    .values-section,
    .story-section,
    .team-section,
    .positions-section,
    .culture-section,
    .faq-section,
    .cta-section,
    .stats-section {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    /* Legal pages content */
    .legal-content,
    .privacy-content,
    .terms-content,
    .cookie-content {
        padding: 1rem 0.75rem !important;
        max-width: 100% !important;
    }

    .section-header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section-header h2,
    .section-title {
        font-size: 1.75rem !important;
    }

    /* Force box model and prevent overflow */
    * {
        box-sizing: border-box !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Disable floating blobs that often cause overflow */
    .hero::before,
    .cta-section::before,
    .about-hero::before,
    .careers-hero::before {
        display: none !important;
    }

    .cta-content h2 {
        font-size: 2rem !important;
    }

    .step {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    /* Keep portfolio cards and URL examples side by side on mobile */
    .portfolio-cards,
    .url-examples {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        padding: 0.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-cards::-webkit-scrollbar,
    .url-examples::-webkit-scrollbar {
        display: none;
    }

    .portfolio-card,
    .url-example {
        flex: 0 0 auto !important;
        min-width: 120px !important;
    }

    .portfolio-card img {
        width: 50px !important;
        height: 50px !important;
    }

    .portfolio-card h4 {
        font-size: 0.85rem !important;
    }

    .portfolio-card p {
        font-size: 0.7rem !important;
    }

    .url-example {
        padding: 0.75rem 1rem !important;
    }

    .url-example .label {
        font-size: 0.75rem !important;
    }

    /* Compact Footer for Mobile */
    .footer {
        padding: 2rem 1rem 1.5rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-brand p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
        text-align: left;
    }

    .link-group h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .link-group li {
        margin-bottom: 0.25rem !important;
    }

    .link-group a {
        font-size: 0.75rem !important;
    }

    /* Keep app store buttons side by side on mobile */
    .btn-app-store,
    .btn-google-play {
        padding: 0.5rem 0.75rem !important;
        margin: 0.25rem !important;
        flex: 0 0 auto !important;
    }

    .btn-app-store i,
    .btn-google-play i {
        font-size: 1.25rem !important;
    }

    .btn-app-store .small-text,
    .btn-google-play .small-text {
        font-size: 0.5rem !important;
    }

    .btn-app-store .main-text,
    .btn-google-play .main-text {
        font-size: 0.85rem !important;
    }
}