/* ============================================
   Landing Page Styles - Professional Design
   ============================================ */

/* Override auth-page gradient background for landing page */
body.auth-page,
html.auth-page {
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: initial !important;
}

.landing-page {
    min-height: 100vh;
    background: #ffffff;
    background-image: none;
    padding-top: 80px;
}

/* Top Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
}

.nav-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    display: none;
}

.nav-link:hover {
    color: var(--turquoise);
}

.nav-link-primary {
    background: #008B8D;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link-primary:hover {
    background: #006B6D;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 147, 150, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #004A5C;
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-large i {
    font-size: 14px;
}

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

.btn-primary:hover {
    background: #006B6D;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 147, 150, 0.3);
}

.btn-secondary {
    background: white;
    color: #006B6D;
    border: 1.5px solid #006B6D;
}

.btn-secondary:hover {
    background: #008B8D;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 147, 150, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screenshots {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.screenshot-hover-zone {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.screenshot-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    pointer-events: none;
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.screenshot-hover-zone:hover .screenshot-wrapper {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
    z-index: 20;
    animation-play-state: paused;
}

/* Automatic sliding animations */
@keyframes slideUpDown1 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes slideUpDown2 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(15px) scale(0.98);
    }
}

@keyframes slideUpDown3 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.01);
    }
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.screenshot-wrapper > img {
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.screenshot-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
}

.screenshot-zone-main {
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.screenshot-zone-main .screenshot-wrapper {
    width: 100%;
    height: 100%;
    animation: slideUpDown1 4s ease-in-out infinite;
}

.screenshot-zone-1 {
    width: 80%;
    height: auto;
    aspect-ratio: 16 / 10;
    top: 5%;
    right: -10%;
    z-index: 2;
    transform: rotate(-6deg);
    transform-origin: center center;
}

.screenshot-zone-1 .screenshot-wrapper {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    opacity: 0.95;
    transform: rotate(0deg);
    animation: slideUpDown2 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.screenshot-zone-1:hover .screenshot-wrapper {
    opacity: 1;
    z-index: 25;
    animation-play-state: paused;
}

.screenshot-zone-2 {
    width: 80%;
    height: auto;
    aspect-ratio: 16 / 10;
    bottom: 5%;
    left: -10%;
    z-index: 2;
    transform: rotate(6deg);
    transform-origin: center center;
}

.screenshot-zone-2 .screenshot-wrapper {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    opacity: 0.95;
    transform: rotate(0deg);
    animation: slideUpDown3 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

.screenshot-zone-2:hover .screenshot-wrapper {
    opacity: 1;
    z-index: 25;
    animation-play-state: paused;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #f9fafb;
    scroll-margin-top: 80px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 36px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'%3E%3Cpath d='M 50 75 C 36.192 75 25 86.192 25 100 L 0 100 C 0 72.386 22.386 50 50 50 Z M 100 50 C 100 77.614 77.614 100 50 100 L 50 75 C 63.808 75 75 63.808 75 50 Z M 50 25 C 36.192 25 25 36.192 25 50 L 0 50 C 0 22.386 22.386 0 50 0 Z M 100 0 C 100 27.614 77.614 50 50 50 L 50 25 C 63.808 25 75 13.808 75 0 Z' fill='%2394D2BD' fill-opacity='0.35'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' fill='none'%3E%3Cpath d='M 55.001 82.197 C 55.123 71.841 68.631 55 88 55 L 88 28 L 55 28 C 55 43.237 43.237 55 28 55 L 28 88 L 55 88 Z M 88 110 L 28 110 C 12.763 110 0 97.237 0 82 L 0 28 L 28 28 L 28 0 L 88 0 C 103.237 0 110 12.763 110 28 L 110 88 L 88 88 Z' fill='%2394D2BD' fill-opacity='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' fill='none'%3E%3Cpath d='M 15 72 C 15 78.627 20.373 84 27 84 C 27 90.627 21.627 96 15 96 C 8.373 96 3 90.627 3 84 C 3 77.373 8.373 72 15 72 Z M 45 72 C 45 78.627 50.373 84 57 84 C 57 90.627 51.627 96 45 96 C 38.373 96 33 90.627 33 84 C 40.627 84 45 78.627 45 72 Z M 75 72 C 75 78.627 80.373 84 87 84 C 87 90.627 81.627 96 75 96 C 68.373 96 63 90.627 63 84 C 71.627 84 75 78.627 75 72 Z' fill='%2394D2BD' fill-opacity='0.28'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='85' height='85' fill='none'%3E%3Cpath d='M 42.5 63.75 C 31.15 63.75 21.25 73.65 21.25 85 L 0 85 C 0 61.528 19.028 42.5 42.5 42.5 Z M 85 42.5 C 85 65.972 65.972 85 42.5 85 L 42.5 63.75 C 53.85 63.75 63.75 53.85 63.75 42.5 Z M 42.5 21.25 C 31.15 21.25 21.25 31.15 21.25 42.5 L 0 42.5 C 0 19.028 19.028 0 42.5 0 Z M 85 0 C 85 23.472 65.972 42.5 42.5 42.5 L 42.5 21.25 C 53.85 21.25 63.75 11.35 63.75 0 Z' fill='%2394D2BD' fill-opacity='0.32'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='95' height='95' fill='none'%3E%3Cpath d='M 47.501 69.883 C 47.612 60.949 59.535 47.5 73.25 47.5 L 73.25 23.75 L 47.5 23.75 C 47.5 37.465 35.965 47.5 23.25 47.5 L 23.25 73.25 L 47.5 73.25 Z M 73.25 95 L 23.25 95 C 9.535 95 0 85.465 0 71.75 L 0 23.75 L 23.25 23.75 L 23.25 0 L 73.25 0 C 86.965 0 95 9.535 95 23.25 L 95 73.25 L 73.25 73.25 Z' fill='%2394D2BD' fill-opacity='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' fill='none'%3E%3Cpath d='M 12.5 64 C 12.5 69.799 17.201 74.5 23 74.5 C 23 80.299 18.299 85 12.5 85 C 6.701 85 2 80.299 2 74.5 C 2 68.701 6.701 64 12.5 64 Z M 40 64 C 40 69.799 44.701 74.5 50.5 74.5 C 50.5 80.299 45.799 85 40 85 C 34.201 85 29.5 80.299 29.5 74.5 C 37.299 74.5 40 69.799 40 64 Z M 67.5 64 C 67.5 69.799 72.201 74.5 78 74.5 C 78 80.299 73.299 85 67.5 85 C 61.701 85 57 80.299 57 74.5 C 65.799 74.5 67.5 69.799 67.5 64 Z' fill='%2394D2BD' fill-opacity='0.25'/%3E%3C/svg%3E");
    background-size: 100px 100px, 110px 110px, 90px 90px, 85px 85px, 95px 95px, 80px 80px;
    background-position: 5% 15%, 85% 25%, 45% 70%, 20% 50%, 75% 80%, 60% 5%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 0;
    transform: rotate(0deg) scale(1);
}

.feature-card:hover::before {
    transform: rotate(-3deg) scale(1.05);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(148, 210, 189, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(148, 210, 189, 0.25), 0 0 0 1px rgba(148, 210, 189, 0.1);
    border-color: rgba(148, 210, 189, 0.3);
}

.feature-card:hover::before {
    opacity: 0.4;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    margin-bottom: 24px;
    transition: background-color 0.25s ease;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: #f0f9ff;
}

.feature-icon i {
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: var(--dark-teal);
    color: white;
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(148, 210, 189, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 210, 189, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(148, 210, 189, 0.15) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(148, 210, 189, 0.15) 50%, transparent 100%);
    background-size: 200% 200%;
    animation: thunder 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

@keyframes thunder {
    0%, 100% {
        background-position: 0% 0%, 0% 0%;
        opacity: 0.2;
    }
    25% {
        background-position: 100% 0%, 0% 0%;
        opacity: 0.4;
    }
    50% {
        background-position: 100% 100%, 0% 100%;
        opacity: 0.25;
    }
    75% {
        background-position: 0% 100%, 100% 100%;
        opacity: 0.35;
    }
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits-text .section-title {
    color: white;
    margin-bottom: 18px;
}

.benefits-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.benefits-list {
    list-style: none;
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
}

.benefit-item i {
    flex-shrink: 0;
    color: var(--light-teal);
    font-size: 18px;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-badge {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-content {
    text-align: center;
}

.badge-label {
    display: block;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    display: block;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
    background: #f9fafb;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.partners-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(249, 250, 251, 1), rgba(249, 250, 251, 0));
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(249, 250, 251, 1), rgba(249, 250, 251, 0));
}

.partners-carousel {
    display: flex;
    gap: 60px;
    width: fit-content;
    animation: scrollPartners 30s linear infinite;
}

.partners-carousel-wrapper:hover .partners-carousel {
    animation-play-state: paused;
}

.partners-carousel-2 {
    display: none;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.partner-logo:hover {
    transform: translateY(-4px);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: white;
    scroll-margin-top: 80px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--turquoise), var(--teal));
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(10, 147, 150, 0.2);
    overflow: hidden;
}

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

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 280px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-image-placeholder img {
    width: 50%;
    height: auto;
    max-width: 250px;
    object-fit: contain;
}

.about-image-placeholder i {
    font-size: 140px;
    color: rgba(255, 255, 255, 0.9);
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 32px;
}

.section-header-left .section-description {
    margin: 0;
    max-width: 100%;
}

.about-description {
    margin-bottom: 24px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 24px;
}

.about-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    margin-top: 0;
}

.about-feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-cta {
    margin-top: auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(148, 210, 189, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(148, 210, 189, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.testimonials-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.testimonials-carousel-wrapper:hover .testimonials-carousel {
    animation-play-state: paused;
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonials-carousel-2 {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    border-color: rgba(148, 210, 189, 0.2);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(148, 210, 189, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 48px;
    line-height: 1;
    color: var(--turquoise);
    opacity: 0.2;
    position: absolute;
    top: -16px;
    left: -8px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f9ff;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--turquoise);
    transform: scale(1.05);
    filter: grayscale(0%);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--teal) 50%, var(--turquoise) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' fill='none'%3E%3Cpath d='M 100 150 C 72.384 150 50 172.384 50 200 L 0 200 C 0 144.772 44.772 100 100 100 Z M 200 100 C 200 155.228 155.228 200 100 200 L 100 150 C 127.616 150 150 127.616 150 100 Z M 100 50 C 72.384 50 50 72.384 50 100 L 0 100 C 0 44.772 44.772 0 100 0 Z M 200 0 C 200 55.228 155.228 100 100 100 L 100 50 C 127.616 50 150 27.616 150 0 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' fill='none'%3E%3Cpath d='M 110.002 164.394 C 110.246 143.682 137.262 110 176 110 L 176 56 L 110 56 C 110 86.474 86.474 110 56 110 L 56 176 L 110 176 Z M 176 220 L 56 220 C 25.526 220 0 194.474 0 164 L 0 56 L 56 56 L 56 0 L 176 0 C 206.474 0 220 25.526 220 56 L 220 176 L 176 176 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: 300px 300px, 350px 350px;
    background-position: -300px 20%, -350px 60%;
    opacity: 0.6;
    animation: float 25s linear infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(148, 210, 189, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        background-position: -300px 20%, -350px 60%;
    }
    100% {
        background-position: calc(100vw + 300px) 20%, calc(100vw + 350px) 60%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #008B8D;
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    box-shadow: 0 8px 24px rgba(10, 147, 150, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: #006B6D;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 147, 150, 0.4);
}

.cta-section .btn-secondary {
    background: white;
    color: #006B6D;
    border: 2px solid #006B6D;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.cta-section .btn-secondary:hover {
    background: #008B8D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 147, 150, 0.3);
}

/* Footer */
.landing-footer {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #9ca3af;
    padding: 80px 20px 40px;
    margin-top: 0;
    position: relative;
    overflow: visible;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.8;
    pointer-events: none;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.landing-footer {
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-brand {
    max-width: 320px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-brand-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    max-width: 320px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.2s ease;
    width: fit-content;
}

.footer-menu a i {
    font-size: 13px;
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-menu a:hover i {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
}

.footer-shape svg {
    width: 280px;
    height: 280px;
    opacity: 0.25;
    animation: blink 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(84, 84, 84, 0.15));
    transition: opacity 0.3s ease;
    margin-top: 0;
    margin-right: 0;
    transform: translateX(0);
}

.footer-shape:hover svg {
    opacity: 0.35;
}

@keyframes blink {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.01);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .landing-page {
        padding-top: 0;
        padding-bottom: 80px;
    }

    /* Transform top nav to bottom nav on mobile */
    .landing-nav {
        top: auto;
        bottom: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: none;
    }

    .nav-container {
        height: 70px;
        padding: 0 16px;
    }

    .nav-brand {
        display: none;
    }

    .nav-menu {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .nav-link i {
        display: block;
        font-size: 18px;
    }

    .nav-link span {
        font-size: 11px;
    }

    .nav-link-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 20px 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-visual {
        height: 400px;
    }

    .screenshot-main {
        width: 90%;
    }

    .screenshot-secondary {
        width: 70%;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        flex-direction: column;
    }

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

    .partners-carousel {
        gap: 40px;
    }

    .partners-carousel-2 {
        display: flex;
        animation: scrollPartners 35s linear infinite reverse;
        margin-top: 20px;
    }

    .partners-carousel-wrapper:hover .partners-carousel-2 {
        animation-play-state: paused;
    }

    .partner-logo {
        padding: 15px 30px;
    }

    .partner-logo img {
        max-width: 160px;
        max-height: 70px;
    }

    .testimonials-carousel {
        gap: 20px;
    }

    .testimonials-carousel-2 {
        display: flex;
        animation: scrollTestimonials 45s linear infinite reverse;
        margin-top: 20px;
    }

    .testimonial-card {
        width: 280px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-content {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-brand {
        max-width: 100%;
    }

    .footer-shape {
        display: none;
    }
}

@media (max-width: 640px) {
    /* Remove main-content padding on landing page */
    .main-content:has(.landing-page) {
        padding: 0 !important;
    }
    
    .landing-page {
        margin: 0;
        padding: 0;
        padding-bottom: 70px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 11px;
        padding: 6px 8px;
    }

    .nav-link i {
        display: block;
        font-size: 16px;
    }

    .nav-link span {
        font-size: 10px;
    }

    .nav-link-primary {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content {
        padding: 50px 30px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        height: 350px;
    }

    .screenshot-main {
        width: 95%;
    }

    .screenshot-secondary {
        width: 75%;
        opacity: 0.7;
    }

    .screenshot-1 {
        transform: rotate(-5deg);
    }

    .screenshot-2 {
        transform: rotate(5deg);
    }

    .custom-badge {
        width: 200px;
        height: 200px;
    }

    .badge-label {
        font-size: 48px;
    }

    .badge-text {
        font-size: 16px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-content {
        gap: 40px;
    }

    .partners-section {
        padding: 60px 20px;
    }

    .partners-carousel {
        gap: 30px;
    }

    .partners-carousel-2 {
        display: flex;
        animation: scrollPartners 35s linear infinite reverse;
        margin-top: 16px;
    }

    .partners-carousel-wrapper:hover .partners-carousel-2 {
        animation-play-state: paused;
    }

    .partner-logo {
        padding: 12px 24px;
    }

    .partner-logo img {
        max-width: 120px;
        max-height: 50px;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-carousel {
        gap: 16px;
    }

    .testimonials-carousel-2 {
        display: flex;
        animation: scrollTestimonials 45s linear infinite reverse;
        margin-top: 16px;
    }

    .testimonial-card {
        width: 280px;
        padding: 24px;
    }

    .about-image-wrapper {
        padding: 30px 20px;
    }

    .about-image-placeholder {
        min-height: 220px;
    }

    .about-image-placeholder img {
        width: 50%;
        max-width: 200px;
    }

    .about-image-placeholder i {
        font-size: 90px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-text h3 {
        font-size: 26px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .landing-footer {
        padding: 60px 20px 30px;
    }

    .footer-main {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}
