:root {
    --primary-color: #5A3BED;
    --primary-gradient: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    --secondary-color: #667eea;
    --accent-color: #764ba2;
    --text-primary: #23272f;
    --text-secondary: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

.container-fluid {
    padding: 0 !important;
}

body {
    overflow-x: hidden;
}

.product-hero .hero-content,
.product-hero .hero-badge,
.product-hero .hero-title,
.product-hero .hero-description,
.product-hero .hero-stats,
.product-hero .hero-actions {
    animation: none !important;
}

.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    margin-top: -80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    width: 100%;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-text-content {
    padding-right: 40px;
}

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

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-text-content {
        padding-right: 0;
        text-align: center;
    }

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

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(90, 59, 237, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(90, 59, 237, 0.2);
}

.product-badge i {
    font-size: 1rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-highlight {
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #5A3BED;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-end;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.stat-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A3BED;
    line-height: 1;
    margin: 0;
    display: block;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 8px 0 0 0;
    display: block;
    height: auto;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.devices-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    perspective: 1200px;
    height: 520px;
    padding: 0;
}

.phone-mockup {
    position: relative;
    width: 140px;
    height: 300px;
    left: 75px;
    top: 1px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 28px;
    padding: 8px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    z-index: 5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    border: 2px solid #404040;
    align-self: flex-end;
    order: 1;
}

.tablet-mockup {
    position: relative;
    width: 240px;
    height: 360px;
    right: 75px;
    top: 22px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 22px;
    padding: 8px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    z-index: 4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    border: 2px solid #404040;
    align-self: flex-end;
    margin-bottom: 20px;
    order: 3;
}

.desktop-mockup {
    position: relative;
    width: 630px;
    height: 400px;
    bottom: 100px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 8px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 2px solid #404040;
    align-self: flex-end;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    order: 2;
}

.desktop-mockup::after {
    content: '';
    position: absolute;
    bottom: -84px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 80px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 0 0 8px 8px;
    border: 2px solid #404040;
    border-top: none;
}

.desktop-mockup::before {
    content: '';
    position: absolute;
    bottom: -94px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 8px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 50px;
    border: 1px solid #404040;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #0a0a0a;
    border-radius: 2px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    z-index: 10;
    opacity: 0.6;
}

.phone-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    z-index: 15;
}

.nav-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: #ffffff;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.recent-square {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 1;
    border-radius: 2px;
}

.home-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 1;
}

.back-triangle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #ffffff;
    opacity: 1;
}

.tablet-mockup::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    z-index: 10;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.phone-screen {
    border-radius: 20px;
}

.tablet-screen {
    border-radius: 14px;
}

.desktop-screen {
    border-radius: 4px;
}

.screen-header {
    background: #ffffff;
    padding: 8px 12px;
    border-bottom: 1px solid #e9ecef;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #2d3436;
    margin-bottom: 8px;
}

.indicators {
    display: flex;
    gap: 4px;
}

.indicators i {
    font-size: 10px;
    color: #2d3436;
}

.app-header h3 {
    color: #2d3436;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.screen-content {
    padding: 15px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.phone-mockup .screen-content {
    padding: 8px;
    height: calc(100% - 85px);
}

.phone-mockup .verification-steps {
    gap: 6px;
    margin-bottom: 8px;
}

.phone-mockup .step {
    padding: 4px 6px;
    font-size: 8px;
}

.phone-mockup .step-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.phone-mockup .step-icon.face-recognition,
.phone-mockup .step-icon.face-recognition i {
    background: #4caf50 !important;
    color: #ffffff !important;
    border-color: #4caf50 !important;
}

.phone-mockup .step-icon.id-scanning,
.phone-mockup .step-icon.id-scanning i {
    background: #2196f3 !important;
    color: #ffffff !important;
    border-color: #2196f3 !important;
}

.phone-mockup .step-icon.verification,
.phone-mockup .step-icon.verification i {
    background: #ff9800 !important;
    color: #ffffff !important;
    border-color: #ff9800 !important;
}

.phone-mockup .step.completed .step-icon,
.phone-mockup .step.completed .step-icon i {
    background: #4caf50 !important;
    color: white !important;
    border-color: #4caf50 !important;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3) !important;
}

.phone-mockup .step.active .step-icon,
.phone-mockup .step.active .step-icon i {
    background: #2196f3 !important;
    color: white !important;
    border-color: #2196f3 !important;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3) !important;
}

.phone-mockup .step span {
    font-size: 7px;
    font-weight: 500;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step.completed {
    background: #e8f5e8;
    border-color: #4caf50;
}

.step.active {
    background: #e3f2fd;
    border-color: #2196f3;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #636e72;
    font-size: 12px;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.step.completed .step-icon {
    background: #4caf50;
    color: #ffffff;
    border-color: #4caf50;
    border: 1px solid #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.step.active .step-icon {
    background: #2196f3;
    color: #ffffff;
    border-color: #2196f3;
    border: 1px solid #2196f3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.step-icon.face-recognition,
.step-icon.face-recognition i {
    background: #4caf50 !important;
    color: #ffffff !important;
    border-color: #4caf50 !important;
}

.step-icon.id-scanning,
.step-icon.id-scanning i {
    background: #2196f3 !important;
    color: #ffffff !important;
    border-color: #2196f3 !important;
}

.step-icon.verification,
.step-icon.verification i {
    background: #ff9800 !important;
    color: #ffffff !important;
    border-color: #ff9800 !important;
}

.step span {
    color: #2d3436;
    font-size: 11px;
    font-weight: 500;
}

.check-mark {
    color: #4caf50;
    font-size: 12px;
    margin-left: auto;
}

.loading-bar {
    width: 40px;
    height: 3px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #2196f3 0%, #21cbf3 100%);
    border-radius: 2px;
    width: 0%;
    animation: verificationProgress 8s ease-in-out infinite;
}



.tablet-mockup .screen-header {
    padding: 10px 15px;
}

.tablet-mockup .app-header h3 {
    font-size: 16px;
}

.tablet-mockup .status-bar {
    font-size: 13px;
    margin-bottom: 10px;
}

.tablet-mockup .indicators i {
    font-size: 11px;
}

.tablet-mockup .screen-content {
    padding: 12px;
    height: calc(100% - 55px);
}

.tablet-mockup .verification-steps {
    gap: 10px;
    margin-bottom: 12px;
}

.tablet-mockup .step {
    padding: 8px 10px;
    font-size: 10px;
}

.tablet-mockup .step-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.tablet-mockup .step-icon.face-recognition,
.tablet-mockup .step-icon.face-recognition i {
    background: #4caf50 !important;
    color: #ffffff !important;
    border-color: #4caf50 !important;
}

.tablet-mockup .step-icon.id-scanning,
.tablet-mockup .step-icon.id-scanning i {
    background: #2196f3 !important;
    color: #ffffff !important;
    border-color: #2196f3 !important;
}

.tablet-mockup .step-icon.verification,
.tablet-mockup .step-icon.verification i {
    background: #ff9800 !important;
    color: #ffffff !important;
    border-color: #ff9800 !important;
}

.tablet-mockup .step.completed .step-icon,
.tablet-mockup .step.completed .step-icon i {
    background: #4caf50 !important;
    color: white !important;
    border-color: #4caf50 !important;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3) !important;
}

.tablet-mockup .step.active .step-icon,
.tablet-mockup .step.active .step-icon i {
    background: #2196f3 !important;
    color: white !important;
    border-color: #2196f3 !important;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3) !important;
}

.tablet-mockup .step span {
    font-size: 9px;
    font-weight: 500;
}



.desktop-mockup .screen-header {
    padding: 8px 15px;
    background: #ffffff;
}

.desktop-mockup .app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.desktop-mockup .app-header h3 {
    font-size: 14px;
    color: #2d3436;
    margin: 0;
}

.desktop-mockup .app-header::before {
    content: '● ● ●';
    position: absolute;
    left: 0;
    color: #666;
    font-size: 8px;
}

.desktop-mockup .screen-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    position: relative;
    overflow: hidden;
}

.desktop-wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    z-index: 1;
}

.desktop-taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(200, 200, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    z-index: 3;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.start-button {
    color: #2196f3;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    pointer-events: none;
}


.start-button i {
    font-size: 1rem;
}

.start-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    z-index: -1;
}


.desktop-window {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    width: auto;
    height: auto;
    background: #ffffff;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #f1f3f4;
    border-bottom: 1px solid #dadce0;
    border-radius: 8px 8px 0 0;
    height: 32px;
}

.chrome-tabs {
    flex: 1;
    display: flex;
    align-items: stretch;
    height: 100%;
    padding-left: 6px;
}

.chrome-tab {
    background: #dee1e6;
    border-radius: 6px 6px 0 0;
    padding: 6px 12px;
    margin-right: 2px;
    display: flex;
    align-items: center;
    min-width: 100px;
    max-width: 180px;
    position: relative;
    border: 1px solid #dadce0;
    border-bottom: none;
}

.chrome-tab.active {
    background: #ffffff;
    border-color: #dadce0;
}

.tab-title {
    font-size: 12px;
    color: #202124;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.window-controls {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 8px;
    gap: 4px;
}

.window-control {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #5f6368;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.window-control:hover {
    background: rgba(0, 0, 0, 0.05);
}

.window-control.close:hover {
    background: #ea4335;
    color: #ffffff;
}

.window-content {
    padding: 0;
    height: calc(100% - 32px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.chrome-url-bar {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #e8eaed;
    gap: 10px;
}

.chrome-nav-buttons {
    display: flex;
    gap: 8px;
}

.chrome-nav-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #5f6368;
    font-size: 11px;
    cursor: pointer;
    margin-right: 3px;
}

.chrome-nav-btn:hover {
    background: #f1f3f4;
}

.chrome-nav-btn:disabled {
    color: #dadce0;
    cursor: not-allowed;
}

.chrome-address-bar {
    flex: 1;
    height: 28px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 14px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #202124;
    max-width: 500px;
    margin: 0 auto;
}

.chrome-content {
    flex: 1;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 60px);
    overflow: hidden;
}

.kyc-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: calc(100% - 20px);
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 8px 15px;
    justify-content: center;
    align-items: stretch;
}

.kyc-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    font-size: 11px;
    transition: all 0.3s ease;
    width: 100%;
    flex: 1;
    min-height: 42px;
}

.kyc-step.completed {
    background: #e8f5e8;
    border-color: #4caf50;
}

.kyc-step.active {
    background: #e3f2fd;
    border-color: #2196f3;
}

.step-icon-desktop {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #636e72;
    font-size: 11px;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.kyc-step.completed .step-icon-desktop {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.kyc-step.active .step-icon-desktop {
    background: #2196f3;
    color: white;
    border-color: #2196f3;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

.kyc-step span {
    flex: 1;
    font-weight: 600;
    font-size: 12px;
}

.kyc-step .fas.fa-check {
    color: #4caf50;
    font-size: 11px;
}

.progress-bar-desktop {
    width: 80px;
    height: 3px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-desktop {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #2196f3 0%, #21cbf3 100%);
    border-radius: 2px;
}

.taskbar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.taskbar-search {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 7px;
    color: #5f6368;
    width: 80px;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
}

.taskbar-search i {
    color: #9aa0a6;
    font-size: 6px;
}

.taskbar-search span {
    color: #9aa0a6;
    font-size: 6px;
}

.taskbar-apps {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.taskbar-app {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 9px;
    color: #5f6368;
    transition: all 0.2s ease;
    position: relative;
}

.taskbar-app.chrome {
    position: relative;
    color: transparent;
}

.taskbar-app.chrome::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #4285f4 0%, #4285f4 25%, transparent 25%),
        conic-gradient(from -60deg, #ea4335 0deg, #ea4335 120deg, #fbbc04 120deg, #fbbc04 240deg, #34a853 240deg, #34a853 360deg);
}

.taskbar-app.file-explorer {
    color: #ffb900;
}

.taskbar-app.mail {
    color: #0078d4;
}

.taskbar-app.settings {
    color: #767676;
}

.taskbar-app.store {
    color: #0078d4;
}

.taskbar-app:hover {
    background: rgba(0, 0, 0, 0.05);
}

.taskbar-app.active {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
}

.taskbar-app.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #4285f4;
    border-radius: 1px;
}

.taskbar-right {
    margin-left: auto;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: #5f6368;
    padding: 2px 6px;
    border-radius: 3px;
    backdrop-filter: blur(10px);
}

.system-tray .time {
    font-weight: 500;
    margin-left: 2px;
    font-size: 7px;
}

.features-showcase,
.how-it-works,
.modules-section,
.trust-section,
.cta-section {
    padding: 100px 0;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(90, 59, 237, 0.25);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.how-it-works {
    background: #f8f9fa;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.step-item {
    text-align: center;
    max-width: 300px;
}

.step-visual {
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-illustration {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(90, 59, 237, 0.15);
    font-size: 2.5rem;
    color: #5A3BED;
    border: 1px solid rgba(90, 59, 237, 0.1);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 12px;
}

.step-content p {
    color: #636e72;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #5A3BED;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-badge i {
    font-size: 0.9rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.module-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.module-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.module-body h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.module-body p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    background: rgba(102, 126, 234, 0.05);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

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

.module-footer {
    margin-top: auto;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.modules-integration {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0;
    padding: 120px 0;
    margin-top: 0;
    border: none;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.modules-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.integration-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(90, 59, 237, 0.3);
}

.header-badge i {
    font-size: 1rem;
}

.integration-header h3 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-header p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.integration-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 160px);
    background: linear-gradient(180deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
    border-radius: 2px;
    z-index: 1;
}

.integration-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.integration-step:nth-child(even) {
    flex-direction: row-reverse;
}

.integration-step:nth-child(even) .step-card {
    margin-right: 60px;
    margin-left: 0;
}

.integration-step:nth-child(odd) .step-card {
    margin-left: 60px;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(90, 59, 237, 0.4);
    border: 4px solid white;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    border: 3px solid white;
}

.step-icon {
    color: white;
    font-size: 2rem;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(90, 59, 237, 0.1);
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 20px 20px 0 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h4 {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

.card-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.tech-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.trust-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

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

.trust-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.trust-section .section-header p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.security-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(90, 59, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 16px 16px 0 0;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(90, 59, 237, 0.2);
}

.security-icon i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.security-title {
    font-size: 1rem;
    font-weight: 700;
    color: #5A3BED;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-desc {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.4;
}

.security-metrics {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(90, 59, 237, 0.1);
    border: 1px solid rgba(90, 59, 237, 0.1);
}

.metrics-header {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 40px 40px 30px 40px;
    border-bottom: 1px solid rgba(90, 59, 237, 0.1);
}

.metrics-title {
    color: #5A3BED;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.metrics-subtitle {
    color: #667eea;
    font-size: 1rem;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.metric-item {
    text-align: center;
    padding: 20px;
    position: relative;
    background: white;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(90, 59, 237, 0.2) 50%, transparent 100%);
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #5A3BED;
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: #636e72;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}



@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metrics-header {
        padding: 30px 30px 20px 30px;
    }
    
    .metrics-title {
        font-size: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 30px 0;
    }
    
    .metric-item:nth-child(2)::after {
        display: none;
    }
    
    .metric-item:nth-child(3)::after {
        display: block;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metrics-header {
        padding: 25px 20px 15px 20px;
    }
    
    .metrics-title {
        font-size: 1.3rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 25px 0;
    }
    
    .metric-item {
        padding: 15px 20px;
    }
    
    .metric-item::after {
        display: none !important;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
}

.cta-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

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

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

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

/* Global Mobile Responsive */
/* Tablet/Minibook (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .devices-showcase {
        gap: 40px;
        max-width: 900px;
    }

    .phone-mockup {
        width: 120px;
        height: 240px;
    }

    .tablet-mockup {
        width: 160px;
        height: 200px;
    }



    .desktop-mockup {
        width: 300px;
        height: 190px;
    }
}

/* Orta Mobil/Tablet (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .product-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-container {
        padding: 20px 15px;
    }

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

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

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

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

    .cta-button.large {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        min-width: 200px;
    }

    /* Device mockup'ları gizle */
    .devices-showcase {
        display: none;
    }

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

    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 20px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-arrow {
        display: none;
    }



    .trust-section .section-header h2 {
        font-size: 2.8rem;
    }

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

    .security-dna {
        height: 500px;
    }

    .dna-helix {
        width: 250px;
        height: 400px;
    }

    .dna-base {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .security-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 80px;
        padding: 0 20px;
    }

    .matrix-item {
        padding: 25px;
    }

    .matrix-value {
        font-size: 2.2rem;
    }

    .matrix-label {
        font-size: 1rem;
    }

    .cert-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 15px;
    }

    /* Integration Benefits Responsive */
    .modules-integration {
        padding: 80px 0;
        margin-top: 0;
    }

    .integration-container {
        padding: 0 30px;
    }

    .integration-header {
        margin-bottom: 60px;
    }

    .integration-header h3 {
        font-size: 2.2rem;
    }

    .integration-header p {
        font-size: 1.1rem;
    }

    .integration-timeline {
        max-width: 100%;
    }

    .timeline-line {
        display: none;
    }

    .integration-step {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 50px;
    }

    .integration-step:nth-child(even) .step-card,
    .integration-step:nth-child(odd) .step-card {
        margin: 20px 0 0 0;
        max-width: 100%;
    }

    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        top: -12px;
        right: -12px;
        font-size: 0.8rem;
    }

    .step-icon {
        font-size: 1.6rem;
    }

    .step-card {
        padding: 25px;
        max-width: 100%;
    }

    .card-header h4 {
        font-size: 1.3rem;
    }

    .card-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .tech-showcase {
        gap: 8px;
    }

    .tech-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .tech-icon {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }
}

/* Küçük Mobil (0-480px) */
@media (max-width: 480px) {

    /* Hero Section */
    .product-hero {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .hero-container {
        padding: 15px 10px;
    }

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

    .product-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .hero-stats {
        justify-content: center;
        gap: 12px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        padding: 0 5px;
    }

    .stat-item {
        min-width: 70px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.4rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 3px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .cta-button.large {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Device mockup'ları gizle */
    .devices-showcase {
        display: none;
    }

    /* Global Sections */
    .features-showcase,
    .how-it-works,
    .trust-section,
    .cta-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 10px;
    }

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

    .section-header h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .feature-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-content h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .feature-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Steps */
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .step-item {
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 12px;
    }

    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .step-arrow {
        display: none;
    }



    /* Certificates */
    .certifications {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cert-item {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cert-icon {
        flex-shrink: 0;
        width: 35px;
        height: 35px;
    }

    .cert-content h4 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .cert-content p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Integration Benefits Mobile */
    .modules-integration {
        padding: 60px 0;
        margin-top: 0;
    }

    .integration-container {
        padding: 0 20px;
    }

    .integration-header {
        margin-bottom: 40px;
    }

    .integration-header h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .integration-header p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .integration-timeline {
        max-width: 100%;
    }

    .timeline-line {
        display: none;
    }

    .integration-step {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 35px;
    }

    .integration-step:nth-child(even) .step-card,
    .integration-step:nth-child(odd) .step-card {
        margin: 15px 0 0 0;
        max-width: 100%;
    }

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        top: -10px;
        right: -10px;
        font-size: 0.75rem;
    }

    .step-icon {
        font-size: 1.4rem;
    }

    .step-card {
        padding: 20px;
        max-width: 100%;
        border-radius: 16px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .card-header h4 {
        font-size: 1.2rem;
    }

    .card-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        align-self: flex-start;
    }

    .step-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .tech-showcase {
        gap: 6px;
    }

    .tech-item {
        font-size: 0.75rem;
        padding: 5px 8px;
        border-radius: 8px;
    }

    .tech-icon {
        width: 14px;
        height: 14px;
        font-size: 0.7rem;
    }

    /* CTA */
    .cta-content {
        padding: 0 10px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .cta-content p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Global Sections */
    .features-showcase,
    .how-it-works,
    .trust-section,
    .cta-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .feature-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

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

    .feature-content {
        flex: 1;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* How It Works */
    .steps-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 10px;
    }

    .step-item {
        text-align: center;
    }

    .step-visual {
        margin-bottom: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 15px;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .step-arrow {
        display: none;
    }

    /* Modules Section */
    .modules-list {
        order: 1;
        gap: 15px;
    }

    .module-item {
        padding: 15px;
        border-radius: 10px;
    }

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

    .module-info h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .module-info p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .module-preview {
        order: 2;
        margin-top: 15px;
        height: 300px;
    }

    /* Trust Section */
    .trust-section {
        padding: 80px 0;
    }

    .trust-section .section-header h2 {
        font-size: 2.2rem;
    }

    .trust-section .section-header p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .security-dna {
        height: 400px;
        padding: 0 20px;
    }

    .dna-helix {
        width: 200px;
        height: 320px;
    }

    .dna-base {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .security-matrix {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
        padding: 0 20px;
    }

    .matrix-item {
        padding: 20px;
    }

    .matrix-value {
        font-size: 2rem;
    }

    .matrix-label {
        font-size: 0.95rem;
    }

    /* CTA Section */
    .cta-content {
        padding: 0 15px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-button.large {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {

    /* Hero Section Ultra Compact */
    .product-hero {
        padding-top: 70px;
        padding-bottom: 15px;
    }

    .hero-container {
        padding: 5px 3px;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 2px 5px;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 1.2rem;
        line-height: 1;
        margin-bottom: 3px;
    }

    .hero-description {
        font-size: 0.7rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    /* Global Sections */
    .features-showcase,
    .how-it-works,
    .trust-section,
    .cta-section {
        padding: 20px 0;
    }

    .container {
        padding: 0 3px;
    }

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

    .section-header h2 {
        font-size: 1.1rem;
        line-height: 1;
        margin-bottom: 2px;
    }

    .section-header p {
        font-size: 0.65rem;
        line-height: 1;
    }

    /* Hero Stats */
    .hero-stats {
        gap: 4px;
        margin-bottom: 6px;
        padding: 0;
    }

    .stat-item {
        min-width: 45px;
    }

    .stat-number {
        font-size: 0.9rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.5rem;
        margin-top: 0;
    }

    /* Buttons */
    .hero-actions {
        padding: 0;
        gap: 3px;
        margin-bottom: 3px;
    }

    .cta-button.large {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 200px;
        min-width: 160px;
    }

    /* Device mockup'ları gizle */
    .devices-showcase {
        display: none;
    }

    /* Features */
    .features-grid {
        gap: 4px;
    }

    .feature-item {
        padding: 4px;
        gap: 3px;
        border-radius: 3px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .feature-icon i {
        font-size: 0.6rem;
    }

    .feature-content h3 {
        font-size: 0.65rem;
        margin-bottom: 0;
    }

    .feature-content p {
        font-size: 0.55rem;
        line-height: 1;
    }

    /* Steps */
    .steps-container {
        gap: 12px;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        margin: 0 auto 3px;
    }

    .step-content h3 {
        font-size: 0.65rem;
        margin-bottom: 1px;
    }

    .step-content p {
        font-size: 0.55rem;
        line-height: 1;
    }

    /* Modules */


    .modules-list {
        gap: 4px;
    }

    .module-item {
        padding: 4px;
        border-radius: 2px;
    }

    .module-icon {
        width: 18px;
        height: 18px;
    }

    .module-info h4 {
        font-size: 0.6rem;
        margin-bottom: 0;
    }

    .module-info p {
        font-size: 0.5rem;
        line-height: 1;
    }

    .module-preview {
        height: 100px;
        margin-top: 3px;
    }

    /* Certificates */
    .certifications {
        gap: 4px;
    }

    .cert-item {
        padding: 4px;
        gap: 3px;
        border-radius: 2px;
    }

    .cert-icon {
        width: 18px;
        height: 18px;
    }

    .cert-content h4 {
        font-size: 0.55rem;
        margin-bottom: 0;
    }

    .cert-content p {
        font-size: 0.5rem;
        line-height: 1;
    }

    /* CTA */
    .cta-content {
        padding: 0 2px;
    }

    .cta-content h2 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .cta-content p {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .cta-buttons {
        gap: 3px;
    }
}

/* Verification Animation */
@keyframes verificationProgress {
    0% {
        width: 0%;
    }

    25% {
        width: 33%;
    }

    50% {
        width: 66%;
    }

    75% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.progress-fill-desktop {
    width: 80%;
    animation: desktopProgress 3s ease-in-out infinite;
}

@keyframes desktopProgress {
    0% {
        width: 0%;
    }

    25% {
        width: 30%;
    }

    50% {
        width: 60%;
    }

    75% {
        width: 80%;
    }

    100% {
        width: 80%;
    }
}