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

:root {
    /* ========================================
       NEXUS PORTFOLIO - COLOR CUSTOMIZATION
       ========================================
       Change these colors to customize your theme
       Use tools like https://coolors.co to find colors
    */

    /* PRIMARY COLORS - Main brand color */
    --primary: #6366f1;        /* Indigo - buttons, links, accents */
    --primary-dark: #4f46e5;   /* Darker indigo - hover states */
    --primary-light: #818cf8;  /* Lighter indigo - highlights */

    /* SECONDARY COLORS - Complementary color */
    --secondary: #22d3ee;      /* Cyan - gradients, accents */

    /* ACCENT COLORS - For special highlights */
    --accent: #f472b6;         /* Pink - badges, special elements */

    /* BACKGROUND COLORS - Dark theme */
    --background: #0f172a;     /* Main page background (very dark blue) */
    --surface: #1e293b;        /* Card backgrounds (dark slate) */
    --surface-light: #334155;  /* Borders, dividers (slate) */

    /* TEXT COLORS */
    --text: #f8fafc;           /* Main text (almost white) */
    --text-muted: #94a3b8;     /* Secondary text (gray) */
    --text-dim: #64748b;       /* Disabled text (darker gray) */

    /* UTILITY COLORS */
    --success: #22c55e;        /* Green - success states */
    --warning: #f59e0b;        /* Orange - warnings */
    --error: #ef4444;          /* Red - errors */

    /* GRADIENTS - Used for buttons and highlights */
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
    --gradient-2: linear-gradient(135deg, #f472b6 0%, #6366f1 100%);

    /* SHADOWS */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* ========================================
       ALTERNATIVE COLOR SCHEMES
       Uncomment one of these blocks to change theme
       ======================================== */

    /* GREEN THEME (Tech/Natural)
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --gradient-1: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
    */

    /* RED/ORANGE THEME (Energy/Dynamic)
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --secondary: #ef4444;
    --accent: #eab308;
    --gradient-1: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.3);
    */

    /* PURPLE THEME (Creative/Luxury)
    --primary: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --secondary: #ec4899;
    --accent: #fbbf24;
    --gradient-1: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    */
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--surface-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.logo i {
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

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

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

.nav-links .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--warning);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.code-window {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--surface-light);
    box-shadow: var(--shadow-glow);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--surface-light);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.code-title {
    margin-left: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.code-content {
    padding: 20px;
    overflow-x: auto;
}

.code-content pre {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-keyword { color: #f472b6; }
.code-string { color: #a5f3fc; }
.code-function { color: #fde047; }
.code-comment { color: var(--text-dim); }
.code-decorator { color: #c084fc; }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--success);
}

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

.floating-card.card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

.floating-card.card-2 i {
    color: var(--primary);
}

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

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-icons {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 18px;
    font-weight: 600;
}

.proof-item i {
    font-size: 24px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-muted);
    font-size: 18px;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 41, 59, 0.3) 50%, var(--background) 100%);
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.service-features i {
    color: var(--success);
    font-size: 12px;
}

/* Bots Section */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bot-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.bot-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-placeholder {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bot-placeholder i {
    font-size: 48px;
    color: var(--primary-light);
    opacity: 0.8;
}

.bot-content {
    padding: 32px;
}

.bot-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.tag.hot {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.bot-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bot-card > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.bot-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.bot-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.bot-features i {
    color: var(--success);
    font-size: 11px;
}

.bot-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--surface-light);
}

.bot-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.bot-price::before {
    content: '';
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 41, 59, 0.3) 50%, var(--background) 100%);
}

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

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 14px;
}

.pricing-features .disabled {
    color: var(--text-dim);
}

.pricing-features .disabled i {
    color: var(--text-dim);
}

/* Process Section */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 20px;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 15px;
}

.step-arrow {
    color: var(--primary);
    font-size: 24px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 41, 59, 0.3) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin: 16px 0 24px;
}

.about-content > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 16px;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.skill {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.skill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.about-card i {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.about-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: var(--surface);
    border-top: 1px solid var(--surface-light);
    border-bottom: 1px solid var(--surface-light);
}

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

.testimonial-card {
    background: var(--background);
    border: 1px solid var(--surface-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin: 16px 0 24px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 12px;
    font-size: 20px;
    color: var(--primary);
}

.method-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.method-value {
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: 20px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--background);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--surface);
    color: var(--text);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--surface);
    border-top: 1px solid var(--surface-light);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--surface-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--surface-light);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom i {
    color: var(--error);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--surface);
    border: 1px solid var(--success);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--success);
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bots-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--surface-light);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links .btn-primary {
        width: 100%;
    }

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

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

    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

    .bot-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Contact Method Links */
.contact-method-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.contact-method-link:hover {
    transform: translateX(5px);
}

.contact-method-link:hover .contact-method {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.contact-method {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Visitor Counter Widget */
.visitor-counter {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.counter-box {
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-glow);
    font-size: 14px;
}

.counter-box i {
    color: var(--primary);
    font-size: 18px;
}

.counter-box strong {
    color: var(--primary-light);
    font-size: 16px;
}

.close-counter {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-counter:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

/* Admin Trigger (Hidden button in top-right) */
.admin-trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 10001;
    cursor: pointer;
    background: transparent;
}

/* Quick Contact Buttons */
.quick-contact {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.quick-contact-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.quick-contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.quick-contact-btn.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.quick-contact-btn.sms {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--surface-light);
}

.quick-contact-btn.sms:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Notification Badge */
.notification-badge {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--gradient-1);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10002;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.notification-badge.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Social Links Specific Colors */
.social-links a[href*="whatsapp"]:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.social-links a[href*="telegram"]:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
}

.social-links a[href*="mailto"]:hover {
    background: #ea4335;
    border-color: #ea4335;
    color: white;
}

.social-links a[href*="sms"]:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Mobile Responsive for Counter */
@media (max-width: 768px) {
    .visitor-counter {
        top: auto;
        bottom: 100px;
        right: 10px;
        left: 10px;
    }

    .counter-box {
        justify-content: center;
    }

    .quick-contact {
        justify-content: center;
    }

    .quick-contact-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
      /* Full Screen Mobile Override */
@media (max-width: 768px) {
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .container, main, section, .hero, .content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .quick-contact, .counter-box, .visitor-counter {
        padding-left: 10px !important;
        padding-right: 10px !important;
    
        }
}
