/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a855f7;
    --primary-light: #c084fc;
    --secondary: #6366f1;
    --accent: #22d3ee;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --gray: #6b7280;
    --white: #ffffff;
}

body {
    font-family: 'GmarketSans', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background Glow Effects */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite 2s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite 4s;
}

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

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    color: rgba(168, 85, 247, 0.3);
    font-size: 24px;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 3s; }
.particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 6s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 9s; }
.particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 12s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Container */
.hero-container {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
    gap: 60px;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 650px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

/* Title */
.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(180deg, #fbc8d4 0%, #9795f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-title .line:nth-child(1) .gradient-text {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(2) .gradient-text {
    animation-delay: 0.4s;
}

/* Hero Info */
.hero-info {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.hero-subtitle .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 550px;
}

.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(168, 85, 247, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    z-index: 3;
    animation: float-card 5s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: 0;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Marquee */
.marquee-container {
    width: 100%;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 50px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    letter-spacing: 1px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        padding: 80px 40px 60px;
    }

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

    .hero-image img {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 80px 40px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 auto 30px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        max-width: 400px;
    }

    .hero-image img {
        max-width: 320px;
    }

    .floating-card {
        padding: 10px 16px;
        gap: 8px;
        border-radius: 10px;
    }

    .card-1 {
        top: 10%;
        right: -10px;
    }

    .card-2 {
        bottom: 15%;
        left: -10px;
    }

    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .card-text {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 60px 24px 40px;
    }

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

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

    .hero-desc {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 80px;
        align-items: center;
    }

    .hero-image img {
        max-width: 260px;
    }

    .floating-card {
        padding: 8px 12px;
        gap: 6px;
        border-radius: 8px;
    }

    .card-1 {
        top: 5%;
        right: -5px;
    }

    .card-2 {
        bottom: 10%;
        left: -5px;
    }

    .card-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 6px;
    }

    .card-text {
        font-size: 10px;
    }

    .marquee-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .floating-card {
        padding: 6px 10px;
        gap: 5px;
        border-radius: 6px;
    }

    .card-1 {
        top: 0;
        right: 0;
    }

    .card-2 {
        bottom: 5%;
        left: 0;
    }

    .card-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
        border-radius: 5px;
    }

    .card-text {
        font-size: 9px;
        letter-spacing: 0;
    }

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

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

    .stat-value {
        font-size: 24px;
    }

    .hero-image img {
        max-width: 220px;
    }
}

/* ========================================
   Section 2: Benefits
======================================== */
.benefits {
    padding: 140px 0;
    background: #E9E9F9;
}

.benefits-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -1px;
    line-height: 1.4;
}

/* Benefits Cards */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Benefit Card */
.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 36px 45px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(151, 149, 240, 0.15);
}

/* Card Emoji */
.card-emoji {
    width: 130px;
    height: 130px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-emoji img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

/* Card Content */
.benefit-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-card .card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.9;
    font-weight: 400;
}

/* Benefits Responsive */
@media (max-width: 1024px) {
    .benefits {
        padding: 100px 0;
    }

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

    .benefits-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 24px;
    }

    .benefit-card {
        padding: 40px 32px 38px;
    }

    .card-emoji {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 0;
    }

    .benefits-container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 50px;
    }

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

    .benefit-card {
        padding: 36px 28px 32px;
    }

    .card-emoji {
        width: 90px;
        height: 90px;
        margin-bottom: 22px;
    }

    .benefit-card .card-title {
        font-size: 19px;
    }

    .benefit-card .card-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-label {
        font-size: 14px;
    }

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

    .benefit-card {
        padding: 32px 24px 28px;
    }

    .card-emoji {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .benefit-card .card-title {
        font-size: 18px;
    }

    .benefit-card .card-desc {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* ========================================
   Section 3: Infinite Cross Slider (Reviews)
======================================== */
.infinite-cross-slider {
    position: relative;
    width: 100%;
    background-color: var(--bg-color, #E9E9F9);
    padding: 100px 0;
    overflow: hidden;
}

/* Section Header */
.ics-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

/* Section Title */
.ics-section-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--title-color, #1a1a2e);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    line-height: 1.4;
}

.ics-section-title .gradient-text {
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 50%, #e879a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ics-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

/* Row Container */
.ics-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
}

.ics-row:last-child {
    margin-bottom: 0;
}

/* Track - holds all cards */
.ics-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Left to Right Animation */
.ics-row-ltr .ics-track {
    animation: slideLeftToRight var(--slide-speed, 35s) linear infinite;
}

/* Right to Left Animation */
.ics-row-rtl .ics-track {
    animation: slideRightToLeft var(--slide-speed, 35s) linear infinite;
}

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

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

/* Pause on hover */
.ics-row:hover .ics-track {
    animation-play-state: paused;
}

/* Individual Card */
.ics-card {
    flex-shrink: 0;
    width: 380px;
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--card-border, #e5e7eb);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ics-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(151, 149, 240, 0.15);
}

/* Badge */
.ics-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(151, 149, 240, 0.15) 0%, rgba(192, 132, 252, 0.15) 100%);
    color: var(--badge-color, #9795f0);
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

/* Card Title */
.ics-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--title-color, #1a1a2e);
    margin: 0;
    line-height: 1.5;
}

/* Card Text */
.ics-card-text {
    font-size: 14px;
    color: var(--text-color, #6b7280);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Section */
.ics-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--card-border, #e5e7eb);
}

.ics-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(151, 149, 240, 0.3) 0%, rgba(192, 132, 252, 0.3) 100%);
    flex-shrink: 0;
}

.ics-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ics-company {
    font-size: 14px;
    font-weight: 600;
    color: var(--title-color, #1a1a2e);
}

.ics-name {
    font-size: 13px;
    color: var(--text-color, #6b7280);
}

/* Gradient Overlays */
.ics-row::before,
.ics-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ics-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color, #E9E9F9) 0%, transparent 100%);
}

.ics-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color, #E9E9F9) 0%, transparent 100%);
}

/* Infinite Cross Slider Responsive */
@media (max-width: 1024px) {
    .infinite-cross-slider {
        padding: 80px 0;
    }

    .ics-section-title {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .ics-card {
        width: 340px;
        padding: 24px;
    }

    .ics-row::before,
    .ics-row::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .infinite-cross-slider {
        padding: 60px 0;
    }

    .ics-section-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 24px;
    }

    .ics-row {
        margin-bottom: 16px;
    }

    .ics-track {
        gap: 16px;
    }

    .ics-card {
        width: 300px;
        padding: 22px;
        border-radius: 16px;
    }

    .ics-card-title {
        font-size: 15px;
    }

    .ics-card-text {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .ics-row::before,
    .ics-row::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .infinite-cross-slider {
        padding: 50px 0;
    }

    .ics-section-title {
        font-size: 24px;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .ics-card {
        width: 280px;
        padding: 18px;
    }

    .ics-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ics-card-title {
        font-size: 14px;
    }

    .ics-avatar {
        width: 36px;
        height: 36px;
    }

    .ics-company {
        font-size: 13px;
    }

    .ics-name {
        font-size: 12px;
    }

    .ics-row::before,
    .ics-row::after {
        width: 30px;
    }
}

/* ========================================
   Section 4: Process Steps
======================================== */
.process-section {
    padding: 140px 0;
    background: #E9E9F9;
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header .section-label {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 20px;
}

.process-header .section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    letter-spacing: -1px;
}

/* Timeline Container */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

/* Individual Timeline Item */
.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

/* Number Box */
.timeline-number {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px solid rgba(151, 149, 240, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.timeline-number span {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Connector Line */
.timeline-connector {
    position: absolute;
    top: 50px;
    left: 100px;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9795f0 0%, #c084fc 100%);
    z-index: 1;
}

/* Icon Box */
.timeline-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #9795f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: #9795f0;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(151, 149, 240, 0.3);
}

.timeline-item:hover .timeline-icon svg {
    color: #ffffff;
}

/* Content */
.timeline-content {
    padding-right: 40px;
}

.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* Process CTA Banner */
.process-cta-banner {
    background: rgba(151, 149, 240, 0.08);
    border-left: 4px solid #9795f0;
    padding: 40px 50px;
}

.process-cta-banner .banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.process-cta-banner .banner-title span {
    color: #9795f0;
}

.process-cta-banner .banner-subtitle {
    font-size: 16px;
    color: #6b7280;
}

/* Process Section Responsive */
@media (max-width: 1200px) {
    .timeline-number {
        width: 85px;
        height: 85px;
    }

    .timeline-number span {
        font-size: 28px;
    }

    .timeline-connector {
        top: 42px;
        left: 85px;
    }

    .timeline-content {
        padding-right: 30px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .process-section {
        padding: 100px 0;
    }

    .process-header .section-title {
        font-size: 36px;
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }

    .timeline-item {
        flex: 0 0 calc(50% - 20px);
    }

    .timeline-connector {
        display: none;
    }

    .process-cta-banner {
        padding: 32px 36px;
    }

    .process-cta-banner .banner-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-container {
        padding: 0 24px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-header .section-title {
        font-size: 28px;
    }

    .process-timeline {
        gap: 32px;
    }

    .timeline-item {
        flex: 0 0 calc(50% - 16px);
    }

    .timeline-number {
        width: 60px;
        height: 60px;
    }

    .timeline-number span {
        font-size: 22px;
    }

    .timeline-icon {
        width: 44px;
        height: 44px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .timeline-icon svg {
        width: 22px;
        height: 22px;
    }

    .timeline-content {
        padding-right: 16px;
    }

    .timeline-content h4 {
        font-size: 14px;
    }

    .timeline-content p {
        font-size: 12px;
    }

    .process-cta-banner {
        padding: 28px 24px;
    }

    .process-cta-banner .banner-title {
        font-size: 20px;
    }

    .process-cta-banner .banner-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-header .section-label {
        font-size: 14px;
    }

    .process-header .section-title {
        font-size: 24px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 28px;
    }

    .timeline-item {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .timeline-number {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .timeline-number span {
        font-size: 20px;
    }

    .timeline-icon {
        display: none;
    }

    .timeline-content {
        padding-right: 0;
        padding-top: 8px;
    }

    .process-cta-banner .banner-title {
        font-size: 18px;
    }
}

/* ========================================
   Section 5: CTA Contact
======================================== */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #E9E9F9 0%, #f0f0ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(151, 149, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-desc {
    font-size: 18px;
    color: #4b5563;
}

.cta-desc strong {
    color: #9795f0;
    font-weight: 600;
}

.cta-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 4px 6px rgba(151, 149, 240, 0.05),
        0 20px 40px rgba(151, 149, 240, 0.1);
    border: 1px solid rgba(151, 149, 240, 0.15);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(151, 149, 240, 0.4);
    margin-bottom: 36px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(151, 149, 240, 0.5);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(151, 149, 240, 0.15);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(151, 149, 240, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #9795f0;
}

.info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.info-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.info-value {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

.info-divider {
    width: 1px;
    height: 48px;
    background: rgba(151, 149, 240, 0.2);
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 24px;
    }

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

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

    .cta-desc {
        font-size: 16px;
    }

    .cta-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .cta-button {
        font-size: 17px;
        padding: 18px 32px;
        width: 100%;
    }

    .cta-info {
        flex-direction: column;
        gap: 24px;
    }

    .info-divider {
        width: 80%;
        height: 1px;
    }

    .info-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 16px;
    }

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

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-desc {
        font-size: 14px;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .cta-button {
        font-size: 15px;
        padding: 16px 24px;
        border-radius: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-value {
        font-size: 16px;
    }
}

/* ========================================
   Section 6: Contact Form
======================================== */
.contact-form-section {
    padding: 100px 40px;
    background: #ffffff;
    position: relative;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-form-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: #f9f9fc;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(151, 149, 240, 0.15);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group label .required {
    color: #e879a9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #9795f0;
    box-shadow: 0 0 0 4px rgba(151, 149, 240, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(151, 149, 240, 0.35);
    margin-bottom: 20px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(151, 149, 240, 0.45);
}

.form-privacy-notice {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 24px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .contact-form-subtitle {
        font-size: 16px;
    }

    .contact-form {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group.full-width {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 18px;
        font-size: 16px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 60px 16px;
    }

    .contact-form-title {
        font-size: 26px;
    }

    .contact-form-subtitle {
        font-size: 14px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .form-submit-btn {
        padding: 16px;
        font-size: 15px;
    }

    .form-privacy-notice {
        font-size: 12px;
    }
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: #0a0a0f;
    padding: 40px 20px;
    text-align: center;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(151, 149, 240, 0.7);
    margin: 0;
}

/* ========================================
   Fixed Quick Contact Bar
======================================== */
.quick-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
    border-top: 2px solid rgba(151, 149, 240, 0.3);
    padding: 16px 24px;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 30px rgba(151, 149, 240, 0.15);
}

.quick-contact-bar.hidden {
    transform: translateY(100%);
}

.quick-contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.quick-contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-contact-label svg {
    stroke: #9795f0;
    -webkit-text-fill-color: initial;
}

.quick-contact-form {
    display: flex;
    flex: 1;
    gap: 12px;
    align-items: center;
}

.quick-contact-form input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    font-size: 14px;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(151, 149, 240, 0.3);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.quick-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-contact-form input:focus {
    border-color: #9795f0;
    background: rgba(151, 149, 240, 0.1);
    box-shadow: 0 0 0 3px rgba(151, 149, 240, 0.15);
}

.quick-submit-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #9795f0 0%, #c084fc 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(151, 149, 240, 0.4);
}

.quick-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 149, 240, 0.5);
}

/* Add padding to body to prevent content being hidden behind fixed bar */
body {
    padding-bottom: 80px;
}

/* Quick Contact Bar Responsive */
@media (max-width: 1024px) {
    .quick-contact-form input {
        padding: 12px 14px;
        font-size: 13px;
    }

    .quick-submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .quick-contact-bar {
        padding: 12px 16px;
    }

    .quick-contact-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .quick-contact-label {
        font-size: 13px;
        gap: 6px;
    }

    .quick-contact-label svg {
        width: 16px;
        height: 16px;
    }

    .quick-contact-form {
        width: 100%;
        gap: 8px;
    }

    .quick-contact-form input {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .quick-submit-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    body {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .quick-contact-bar {
        padding: 10px 12px;
    }

    .quick-contact-inner {
        gap: 8px;
    }

    .quick-contact-label {
        font-size: 12px;
    }

    .quick-contact-label svg {
        width: 14px;
        height: 14px;
    }

    .quick-contact-form {
        gap: 6px;
    }

    .quick-contact-form input {
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 6px;
    }

    .quick-submit-btn {
        padding: 9px 16px;
        font-size: 12px;
        border-radius: 6px;
    }

    body {
        padding-bottom: 95px;
    }
}

/* End of styles */
