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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.typewriter {
    display: block;
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typewriter 3s steps(12) 1s forwards, cursor-blink 1s infinite;
    width: 0;
}

@keyframes typewriter {
    to { width: 100%; }
}

@keyframes cursor-blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hologram Visual */
.hologram-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.hologram-screen {
    width: 300px;
    height: 200px;
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.screen-content {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Browser Mockup */
.browser-mockup {
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    font-size: 10px;
}

.browser-header {
    background: #3c3c3c;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #555;
}

.browser-controls {
    display: flex;
    gap: 6px;
}

.control-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.control-btn.close { background: #ff5f57; }
.control-btn.minimize { background: #ffbd2e; }
.control-btn.maximize { background: #28ca42; }

.browser-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 4px;
    color: #888;
}

.nav-buttons i {
    font-size: 8px;
    padding: 2px;
}

.address-bar {
    background: #555;
    border-radius: 12px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 120px;
}

.address-bar i {
    color: #4CAF50;
    font-size: 8px;
}

.url-text {
    color: #ddd;
    font-size: 8px;
    animation: typeUrl 3s steps(20) 1s forwards;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.browser-content {
    height: calc(100% - 32px);
    position: relative;
    background: #fff;
}

.loading-bar {
    height: 2px;
    background: var(--primary-color);
    width: 0;
    animation: loadProgress 4s ease-out 2s forwards;
}

.website-preview {
    padding: 8px;
    opacity: 0;
    animation: fadeInSite 1s ease 5s forwards;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.site-logo {
    width: 20px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.site-nav {
    display: flex;
    gap: 6px;
}

.nav-item {
    width: 12px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.site-hero {
    text-align: center;
    padding: 12px 0;
}

.hero-text {
    margin-bottom: 8px;
}

.text-line {
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin: 4px auto;
    animation: slideInText 0.8s ease forwards;
    transform: translateX(-100%);
}

.text-line.large {
    width: 60%;
    animation-delay: 5.5s;
}

.text-line.medium {
    width: 40%;
    animation-delay: 6s;
}

.hero-button {
    width: 30px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 0 auto;
    animation: pulseButton 2s ease-in-out 6.5s infinite;
}

@keyframes typeUrl {
    to { width: 100%; }
}

@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fadeInSite {
    to { opacity: 1; }
}

@keyframes slideInText {
    to { transform: translateX(0); }
}

@keyframes pulseButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hologram-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    left: -175px;
    opacity: 0.3;
}

.ring-2 {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -140px;
    opacity: 0.5;
    animation-direction: reverse;
    animation-duration: 8s;
}

.ring-3 {
    width: 420px;
    height: 420px;
    top: -210px;
    left: -210px;
    opacity: 0.2;
    animation-duration: 12s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Features Section */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 40px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
}

.feature-content li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Phone Mockup - WhatsApp Style */
.phone-mockup {
    width: 280px;
    height: 580px;
    position: relative;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    background: #075e54;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding-top: 35px;
}

.status-left .time {
    font-weight: 600;
}

.status-right {
    display: flex;
    gap: 4px;
}

.status-right i {
    font-size: 0.7rem;
}

/* WhatsApp Header */
.whatsapp-header {
    background: #075e54;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left i {
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 35px;
    height: 35px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-status {
    font-size: 0.7rem;
    opacity: 0.8;
}

.header-right {
    display: flex;
    gap: 20px;
}

.header-right i {
    font-size: 1rem;
    cursor: pointer;
}

/* Chat Area */
.whatsapp-chat {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.chat-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5ddd5 0%, #d1c7b8 100%);
    opacity: 0.1;
}

.chat-messages {
    padding: 16px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.message-received {
    margin-bottom: 16px;
    animation: messageSlideIn 0.8s ease-out;
}

.message-bubble {
    background: white;
    border-radius: 8px 8px 8px 2px;
    padding: 12px 16px;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message-text {
    color: #303030;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.message-time {
    font-size: 0.65rem;
    color: #999;
    text-align: right;
}

/* Typing Indicator */
.typing-indicator {
    margin-top: 12px;
    animation: typingFadeIn 1s ease-in-out infinite alternate;
}

.typing-bubble {
    background: white;
    border-radius: 8px 8px 8px 2px;
    padding: 12px 16px;
    max-width: 60px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dots {
    display: flex;
    gap: 3px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: typingDots 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Input Area */
.whatsapp-input {
    background: #f0f0f0;
    padding: 8px 16px;
    border-top: 1px solid #e0e0e0;
}

.input-container {
    background: white;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-container i {
    color: #999;
    font-size: 1rem;
    cursor: pointer;
}

.text-input {
    flex: 1;
    color: #999;
    font-size: 0.85rem;
}

/* Animations */
@keyframes messageSlideIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes typingFadeIn {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes typingDots {
    0%, 60%, 100% { 
        transform: translateY(0); 
        opacity: 0.4; 
    }
    30% { 
        transform: translateY(-8px); 
        opacity: 1; 
    }
}

/* Dashboard Mockup */
.dashboard-mockup {
    width: 400px;
    height: 300px;
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.dashboard-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dashboard-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 100px;
}

.chart-bar {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-in-out infinite;
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.8); }
    50% { transform: scaleY(1); }
}

/* Advanced Code Editor */
.advanced-code-editor {
    width: 500px;
    height: 350px;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.advanced-code-editor:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.editor-window {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(78, 205, 196, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.window-controls {
    background: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #444;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.editor-header {
    background: #252526;
    border-bottom: 1px solid #3c3c3c;
}

.editor-tabs {
    display: flex;
    overflow-x: auto;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2d2d30;
    color: #cccccc;
    padding: 8px 16px;
    border-right: 1px solid #3c3c3c;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-width: 120px;
}

.tab:hover {
    background: #37373d;
}

.tab.active {
    background: #1e1e1e;
    color: white;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.tab i {
    font-size: 0.9rem;
}

.tab-close {
    margin-left: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.tab-close:hover {
    opacity: 1;
}

.editor-content {
    display: flex;
    height: calc(100% - 80px);
    background: #1e1e1e;
}



.code-content {
    flex: 1;
    padding: 16px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 20px;
    overflow: hidden;
    position: relative;
    background: #1e1e1e;
}

.file-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.file-content.active {
    display: block;
}

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

.code-line {
    display: flex;
    align-items: center;
    min-height: 20px;
    line-height: 20px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    white-space: pre;
    margin: 0;
    padding: 0;
}

.line-number {
    color: #858585;
    width: 40px;
    text-align: right;
    padding-right: 16px;
    user-select: none;
    flex-shrink: 0;
}

.line-content {
    flex: 1;
    color: #d4d4d4;
    white-space: pre;
    overflow: visible;
}

.cursor-blink {
    position: absolute;
    color: #ffffff;
    animation: blink 1s infinite;
    font-weight: bold;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

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

/* Code Syntax Highlighting */
.code-keyword {
    color: #569cd6;
    font-weight: 600;
}

.code-function {
    color: #dcdcaa;
}

.code-variable {
    color: #9cdcfe;
}

.code-parameter {
    color: #9cdcfe;
}

.code-comment {
    color: #6a9955;
    font-style: italic;
}

.code-string {
    color: #ce9178;
}

.code-template {
    color: #ce9178;
}

.code-number {
    color: #b5cea8;
}

.code-class {
    color: #4ec9b0;
}

.code-php-tag {
    color: #569cd6;
    font-weight: 600;
}

.code-selector {
    color: #d7ba7d;
}

.code-property {
    color: #92c5f7;
}

.code-value {
    color: #ce9178;
}

.editor-footer {
    background: #007acc;
    color: white;
    padding: 4px 16px;
    font-size: 0.75rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-info {
    opacity: 0.9;
}

.git-branch {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

/* Special Offer Section */
.special-offer {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.offer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 85%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 75%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 25%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    top: 20%;
    left: 90%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.offer-badge i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-subtitle {
    display: block;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
}

.offer-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
}

.offer-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

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

.original-price {
    text-align: left;
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.current-price {
    margin-bottom: 40px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-condition {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.offer-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.timer-label {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.time-unit {
    text-align: center;
    flex: 1;
}

.time-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    background: rgba(255, 107, 107, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-offer {
    background: var(--gradient-secondary);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
}

.guarantee {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.guarantee i {
    color: var(--primary-color);
}

.social-proof {
    margin-top: 80px;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.testimonial.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modules Section */
.modules {
    background: var(--light-bg);
}

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

.module-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.module-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.module-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.module-card li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.module-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.module-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.period {
    color: var(--text-secondary);
}

/* Proposal Section Responsive */
    .proposal-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .proposal-title {
        font-size: 2.2rem;
    }
    
    .proposal-subtitle {
        font-size: 1.1rem;
    }
    
    .proposal-cta {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .proposal-btn {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
/* Proposal Section */
.proposal-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.proposal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.proposal-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.proposal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
}

.proposal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.proposal-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proposal-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.proposal-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Proposal Card */
.proposal-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proposal-card {
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.card-title i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.card-content {
    padding: 25px;
}

.proposal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.proposal-item:last-child {
    margin-bottom: 0;
}

.proposal-item i {
    color: #4ecdc4;
    font-size: 1rem;
}

.card-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.proposal-value {
    text-align: center;
}

.value-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.value-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    color: #4ecdc4;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Proposal CTA */
.proposal-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proposal-btn {
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 40px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.proposal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.proposal-btn:hover .btn-shine {
    left: 100%;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: #4ecdc4;
}

/* Proposal Testimonials */
.proposal-testimonials {
    text-align: center;
}

.proposal-testimonials h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--text-primary);
    margin-bottom: 3px;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}
.contact {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--gradient-dark);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 60px auto 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.enhanced-form {
    background: none;
    padding: 0;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    min-height: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 55px;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
    font-size: 0.95rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 50px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--darker-bg);
    padding: 0 5px;
}

.form-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 1;
}

.form-extras {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.form-checkbox:last-child {
    margin-bottom: 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    position: static;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.4;
}

/* Form Error Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.form-group.error label {
    color: #ff4757;
}

.field-error {
    position: absolute;
    bottom: -20px;
    left: 15px;
    color: #ff4757;
    font-size: 0.8rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 30px;
}

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

.enhanced-submit {
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 40px;
    margin: 30px 0 25px 0;
    min-height: 60px;
}

.enhanced-submit .btn-loading {
    display: none;
}

.enhanced-submit.loading .btn-text {
    display: none;
}

.enhanced-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.form-footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer p:last-child {
    margin-bottom: 0;
}

.form-footer i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Special Offer Responsive */
    .offer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .pricing-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .original-price {
        text-align: center;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .time-value {
        font-size: 1.4rem;
        padding: 8px;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    /* Advanced Code Editor Responsive */
    .advanced-code-editor {
        width: 100%;
        max-width: 400px;
        height: 280px;
        transform: none;
    }
    
    .editor-window {
        border-radius: 6px;
    }
    
    .tab {
        min-width: 80px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .tab span {
        display: none;
    }
    
    .tab i {
        margin-right: 0;
    }
    
    .line-numbers {
        padding: 12px 6px;
        font-size: 0.75rem;
        min-width: 30px;
    }
    
    .code-content {
        padding: 12px;
        font-size: 0.75rem;
    }
    
    .typed-line {
        animation-duration: 0.5s;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hologram-container {
        width: 300px;
        height: 300px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    /* Proposal Section Mobile */
    .proposal-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .proposal-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .proposal-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .proposal-card {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .proposal-cta {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .proposal-btn {
        font-size: 1rem;
        padding: 16px 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .author-info h5 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* Contact Section Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 40px 25px;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-visual {
        transform: scale(0.8);
    }
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="slide-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

[data-aos="slide-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

[data-aos="slide-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}
