:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --secondary-dark: #020617;
    --secondary-light: #1e293b;
    --accent: #f59e0b;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #d1d5db;
    --gray-500: #9ca3af;
    --gray-600: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;
    --border-radius-full: 9999px;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--secondary);
    color: var(--gray-200);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--primary-light);
}

.section-dark .section-description {
    color: var(--gray-300);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--secondary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    position: relative;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--secondary);
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/><line x1="50" y1="0" x2="50" y2="100" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-full);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    opacity: 0.9;
    position: relative;
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-badges-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.badge-item i {
    color: var(--success);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.75rem;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    position: relative;
    transition: var(--transition-normal);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.tool-item:hover .tool-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.tool-icon i {
    font-size: 1.75rem;
    color: var(--primary-light);
    transition: var(--transition-normal);
}

.tool-item:hover .tool-icon i {
    color: var(--white);
}

.tool-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.tool-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.step-content {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 60px 25px 30px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.step-item:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.step-item:hover .step-icon {
    background: var(--gradient-primary);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.step-item:hover .step-icon i {
    color: var(--white);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--gray-300);
    position: relative;
    margin: 0 -20px;
    z-index: 1;
}

.step-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.step-item:hover ~ .step-line::before {
    width: 100%;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.differential-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    transition: var(--transition-slow);
    border-radius: 50%;
}

.differential-card:hover::before {
    width: 300px;
    height: 300px;
}

.differential-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
}

.differential-card:hover .differential-icon {
    transform: scale(1.1) rotate(-5deg);
}

.differential-icon i {
    font-size: 2rem;
    color: var(--white);
}

.differential-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.differential-description {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
}

.differential-highlight {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-frame {
    background: var(--gray-900);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-normal);
}

.showcase-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.frame-header {
    background: var(--gray-800);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.frame-dots {
    display: flex;
    gap: 6px;
}

.frame-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.frame-dots span:nth-child(1) {
    background: #ff5f57;
}

.frame-dots span:nth-child(2) {
    background: #ffbd2e;
}

.frame-dots span:nth-child(3) {
    background: #28ca42;
}

.frame-title {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.frame-content {
    padding: 0;
    height: 400px;
    background: var(--gray-900);
}

.dashboard-preview {
    display: flex;
    height: 100%;
}

.preview-sidebar {
    width: 60px;
    background: var(--gray-800);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    height: 35px;
    background: var(--gray-700);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.sidebar-item.active {
    background: var(--gradient-primary);
}

.preview-main {
    flex: 1;
    padding: 20px;
}

.main-header {
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.grid-card {
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    opacity: 0.8;
}

.main-chart {
    height: 200px;
    background: var(--gray-800);
    border-radius: var(--border-radius-md);
}

.showcase-text {
    padding: 20px 0;
}

.showcase-list {
    margin: 30px 0;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.showcase-list i {
    color: var(--success);
    font-size: 1.125rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-featured {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--gray-400);
    align-self: flex-start;
    margin-top: 10px;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
    align-self: flex-end;
    margin-bottom: 10px;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.125rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question {
    background: var(--gray-50);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

.section-cta {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.cta-guarantee i {
    color: var(--success);
}

.footer {
    background: var(--secondary-dark);
    padding: 60px 0 30px;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-bottom i {
    color: var(--error);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-wrap: wrap;
    }

    .step-line {
        display: none;
    }

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .pricing-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .pricing-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .frame-content {
        height: 300px;
    }

    .main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== DANGER ZONE SECTION ===== */
.section-danger {
    background: linear-gradient(135deg, #1f1c2e 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.section-danger .section-title {
    color: #ffffff !important;
}

.section-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.danger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.danger-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.danger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
}

.danger-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.danger-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    margin-bottom: 25px;
}

.danger-icon i {
    font-size: 2rem;
    color: #ef4444;
}

.danger-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.danger-scenario p {
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.8;
}

.danger-scenario strong {
    color: #ffffff;
}

.danger-cost {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(239, 68, 68, 0.15);
    border-left: 3px solid #ef4444;
    border-radius: var(--border-radius-md);
    margin-top: 20px;
}

.danger-cost i {
    color: #ef4444;
    font-size: 1.25rem;
}

.danger-cost span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.danger-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.danger-stat-card {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.danger-stat-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.05);
}

.danger-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1;
    margin-bottom: 15px;
}

.danger-stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.danger-cta {
    margin-top: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 50px;
}

.danger-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.danger-cta-content i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.danger-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.danger-cta-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ===== REAL CASES SECTION ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.case-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
}

.case-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.case-meta h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.case-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.case-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.case-attack, .case-impact {
    color: var(--gray-700);
}

.case-damage {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    margin: 20px 0;
}

.damage-financial {
    font-size: 1rem;
    font-weight: 700;
    color: #ef4444;
}

.damage-reputation {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f59e0b;
}

.case-prevention {
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    border-radius: var(--border-radius-md);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.case-prevention i {
    color: var(--success);
    margin-right: 8px;
}

.cases-warning {
    margin-top: 50px;
    padding: 30px;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: start;
    gap: 20px;
}

.cases-warning i {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 5px;
}

.cases-warning p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .danger-grid {
        grid-template-columns: 1fr;
    }

    .danger-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .danger-stats {
        grid-template-columns: 1fr;
    }

    .danger-cta {
        padding: 30px 20px;
    }

    .danger-cta-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== PRICING CARDS UPDATES ===== */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card .pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-card .btn-block {
    margin-top: auto;
}

.pricing-card-onetime {
    border: 2px solid #10b981;
    transition: var(--transition-normal);
}

.pricing-card-onetime:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.pricing-card-featured {
    border: 2px solid #f39c12;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
    position: relative;
}

.pricing-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.4);
}

.pricing-card-featured .btn-block {
    margin-bottom: 15px;
}

/* ===== TECHNICAL DEEP DIVE SECTION ===== */
.section-tech {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.section-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-tech .container {
    max-width: 100%;
    overflow-x: hidden;
}

.section-tech .section-header {
    position: relative;
    z-index: 1;
}

.section-tech .section-title,
.section-tech .section-subtitle {
    color: #ffffff;
}

.section-tech .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.technical-phases {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.tech-phase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    transition: var(--transition-normal);
}

.tech-phase:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--secondary);
    transform: translateX(10px);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.phase-number {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    flex: 1;
    min-width: 200px;
}

.phase-duration {
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
}

.phase-content {
    margin-top: 20px;
}

.phase-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 25px;
    width: 100%;
    max-width: 100%;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    transition: var(--transition-normal);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
}

.tech-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tech-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.tech-item p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.tech-item strong {
    color: var(--primary);
    font-weight: 600;
}

.tech-command {
    display: block;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    color: #10b981;
    overflow-x: auto;
    white-space: nowrap;
}

.tech-tools-arsenal {
    margin-top: 60px;
    padding: 40px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-xl);
    text-align: center;
}

.tech-tools-arsenal h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 100%;
}

.tool-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-normal);
}

.tool-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.tool-badge i {
    font-size: 1.125rem;
    color: var(--primary);
}

/* Responsive - Technical Section */
@media (max-width: 968px) {
    .tech-phase {
        padding: 30px 25px;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .phase-title {
        font-size: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-item {
        max-width: 100%;
        overflow: hidden;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .tech-phase {
        padding: 25px 20px;
    }

    .phase-title {
        font-size: 1.25rem;
    }

    .phase-description {
        font-size: 1rem;
    }

    .tech-item {
        padding: 20px;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .tech-item h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tech-item p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tech-command {
        font-size: 0.7rem;
        padding: 10px 12px;
        word-break: break-all;
        overflow-x: auto;
        white-space: pre-wrap;
    }

    .tech-tools-arsenal {
        padding: 30px 20px;
    }

    .tech-tools-arsenal h3 {
        font-size: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .tool-badge {
        padding: 12px 15px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .pricing-grid {
        gap: 15px;
        padding: 0 5px;
    }

    .pricing-card {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 100%;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    .btn-block {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .phase-number {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .phase-title {
        font-size: 1.125rem;
        word-wrap: break-word;
    }

    .tech-phase {
        padding: 20px 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .tech-grid {
        gap: 20px;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
    }

    .tech-icon i {
        font-size: 1.25rem;
    }

    .tech-item {
        padding: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .tech-item h4 {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tech-item p {
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tech-command {
        font-size: 0.65rem;
        padding: 8px 10px;
        word-break: break-all;
        overflow-x: auto;
        white-space: pre-wrap;
        max-width: 100%;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ACCESSIBILITY - REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== SKIP LINK FOR KEYBOARD NAVIGATION ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    border-radius: 0 0 var(--border-radius-md) 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ===== REDUCED 3D TRANSFORMS FOR ACCESSIBILITY ===== */
.feature-card:hover,
.tool-item:hover,
.differential-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-10px) !important;
}

/* ===== HERO INFO BADGES ===== */
.hero-info-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-full);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.info-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.info-badge i {
    font-size: 0.875rem;
    color: var(--primary-light);
}

/* ===== TRUST INDICATORS SECTION ===== */
.trust-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    text-align: center;
}

.trust-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: 25px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.4;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.trust-logo:hover {
    opacity: 0.7;
}

.trust-logo img {
    height: 40px;
    width: auto;
}

/* ===== CTA ENHANCEMENTS ===== */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.cta-badge i {
    color: var(--success);
    font-size: 0.875rem;
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.testimonial-dot:hover {
    background: var(--primary-light);
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roi-input-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--gray-200);
    outline: none;
    transition: var(--transition-normal);
}

.roi-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: var(--transition-normal);
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6);
}

.roi-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.roi-value {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.roi-results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.roi-result-card {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition-normal);
}

.roi-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.roi-cost {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.roi-savings {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.roi-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.roi-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
}

.roi-cost .roi-amount {
    color: #ef4444;
}

.roi-savings .roi-amount {
    color: #10b981;
}

.roi-period {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.roi-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.roi-total-savings {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    margin-top: 10px;
}

.roi-total-savings i {
    font-size: 3rem;
    color: var(--primary);
}

.savings-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.savings-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
}

.roi-annual {
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.roi-annual strong {
    color: var(--gray-900);
}

.roi-annual span {
    color: var(--success);
    font-weight: 800;
    font-size: 1.5rem;
}

@media (max-width: 968px) {
    .roi-calculator-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .roi-arrow {
        transform: rotate(90deg);
    }

    .testimonials-slider {
        padding: 0 50px;
    }
}

@media (max-width: 640px) {
    .roi-calculator-container {
        padding: 25px 15px;
    }

    .roi-amount {
        font-size: 2rem;
    }

    .savings-amount {
        font-size: 1.75rem;
    }

    .roi-total-savings {
        flex-direction: column;
        text-align: center;
    }
}
