/* ===== VARIABLES ===== */
:root {
    /* 90s Tech Color Palette */
    --primary-cyan: #00f3ff;
    --primary-magenta: #ff00ff;
    --primary-purple: #9d00ff;
    --accent-lime: #00ff00;
    --accent-orange: #ff6b35;
    
    /* Background colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252540;
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --text-muted: #6e6e80;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    --gradient-secondary: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    --gradient-accent: linear-gradient(135deg, var(--accent-lime), var(--primary-cyan));
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATED GRID OVERLAY ===== */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

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

.logo {
    position: relative;
    text-decoration: none;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-cyan), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-cyan);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-magenta);
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-purple);
    bottom: 10%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.tag-icon {
    font-size: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

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

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-cyan), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.5);
}

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

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

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

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

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

.btn-icon {
    font-size: 20px;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

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

.section-tag {
    display: inline-block;
    color: var(--primary-cyan);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHY DIFFERENT ===== */
.why-different {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
}

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

.why-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 15px;
    opacity: 0.1;
}

.why-icon span {
    position: relative;
    z-index: 1;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: var(--bg-darker);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(157, 0, 255, 0.3);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

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

.service-arrow {
    color: var(--primary-purple);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-arrow {
    transform: translateX(10px);
    color: var(--primary-cyan);
}

.services-cta {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--bg-darker);
}

.cta-content {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: ctaPattern 30s linear infinite;
}

@keyframes ctaPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--bg-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 20px;
    color: var(--bg-dark);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    color: var(--primary-cyan);
}

.cta-content .btn:hover {
    background: var(--bg-darker);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    color: var(--primary-cyan);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SERVICE DETAIL ===== */
.services-detail {
    padding: 60px 0 100px;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.service-detail-title h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 8px;
}

.service-detail-tagline {
    color: var(--primary-cyan);
    font-size: 16px;
    font-weight: 600;
}

.service-detail-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    gap: 24px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(0, 243, 255, 0.03);
    border-left: 3px solid var(--primary-cyan);
    border-radius: 8px;
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-result {
    padding: 24px;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 16px;
    line-height: 1.6;
}

.service-result strong {
    font-weight: 700;
}

.custom-solutions {
    background: var(--gradient-secondary);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
}

.custom-solutions-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.custom-solutions-content p {
    color: var(--bg-dark);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 16px;
}

.custom-solutions-content .btn {
    margin-top: 30px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 80px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.story-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-main h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mission-main p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-values {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.mission-values h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-cyan);
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.value-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.different-section {
    padding: 100px 0;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.different-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.different-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 30px rgba(157, 0, 255, 0.2);
}

.different-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: rgba(157, 0, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.different-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.different-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== TOOLS PAGE ===== */
.tools-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.tools-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tools-category {
    margin-bottom: 80px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 243, 255, 0.2);
}

.category-icon {
    font-size: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);
}

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

.tool-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
}

.tool-badge {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tool-features span {
    font-size: 13px;
    color: var(--primary-cyan);
    background: rgba(0, 243, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-link:hover {
    color: var(--primary-magenta);
    transform: translateX(5px);
}

.tools-tips {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 60px 50px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.tools-tips h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    text-align: center;
}

.tip-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tools-cta {
    background: var(--gradient-secondary);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.tools-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.tools-cta p {
    color: var(--bg-dark);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-darker);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--bg-dark);
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
}

.contact-info-card h2,
.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(157, 0, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(157, 0, 255, 0.1);
    transform: translateX(5px);
}

.method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.response-time {
    text-align: center;
}

.response-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.what-happens ol {
    list-style: none;
    counter-reset: step-counter;
}

.what-happens li {
    counter-increment: step-counter;
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.what-happens li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--bg-dark);
}

.what-happens li strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.what-happens li p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== ANIMATIONS & AOS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

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

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .services-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .custom-solutions {
        padding: 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        padding: 60px 30px;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .tools-tips {
        padding: 40px 30px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .category-title {
        font-size: 24px;
        flex-wrap: wrap;
    }
}