/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent: #ff0033;
    --accent-glow: rgba(255, 0, 51, 0.4);
    --accent-soft: rgba(255, 0, 51, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, #ff3366 100%);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Background Animation ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #6600ff;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links>li>a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--text-primary);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-secondary);
    min-width: 240px;
    box-shadow: var(--glass-shadow);
    z-index: 1001;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
    backdrop-filter: blur(20px);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease forwards;
}

.dropdown-content li a {
    color: var(--text-secondary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: var(--transition-base);
    border-left: 2px solid transparent;
}

.dropdown-content li a:hover {
    background-color: var(--glass-bg);
    color: var(--text-primary);
    border-left-color: var(--accent);
    padding-left: 24px;
}

.nav-cta {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .typed-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-number::after {
    content: '+';
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Hero Visual ===== */
.hero-visual {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 51, 0.3), transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 51, 0.2);
    animation: spherePulse 4s ease-in-out infinite;
}

@keyframes spherePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--glass-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 5%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 6rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 6rem 0;
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-us .container {
        grid-template-columns: 1fr;
    }
}

.why-us-content .section-tag {
    margin-bottom: 1rem;
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 3rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.feature:hover {
    border-color: rgba(255, 0, 51, 0.3);
    transform: translateX(10px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Glass Panel (Code Preview) ===== */
.why-us-visual {
    display: flex;
    justify-content: center;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--glass-shadow);
}

.panel-header {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca3f;
}

.panel-content {
    padding: 1.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.code-line:nth-child(1) {
    animation-delay: 0.5s;
}

.code-line:nth-child(2) {
    animation-delay: 0.7s;
}

.code-line:nth-child(3) {
    animation-delay: 0.9s;
}

.code-line:nth-child(4) {
    animation-delay: 1.1s;
}

.code-line:nth-child(5) {
    animation-delay: 1.3s;
}

.code-line.indent {
    padding-left: 1.5rem;
}

.keyword {
    color: #ff79c6;
}

.variable {
    color: #8be9fd;
}

.property {
    color: #50fa7b;
}

.string {
    color: #f1fa8c;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #ffc107;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 0;
}

.cta .container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta .container {
        padding: 3rem 1.5rem;
    }
}

/* ===== Page Specific Styles ===== */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ===== Services Detail Page ===== */
.services-detail {
    padding: 4rem 0 6rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    transition: var(--transition-base);
}

.service-detail-card:hover {
    border-color: rgba(255, 0, 51, 0.2);
}

.service-detail-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr auto;
}

.service-detail-content.reverse .service-detail-icon {
    order: 2;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: var(--accent-soft);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--accent);
}

.service-detail-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-text .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-content.reverse .service-detail-icon {
        order: 0;
    }

    .service-detail-icon {
        margin: 0 auto 1.5rem;
    }

    .feature-list {
        justify-items: center;
    }
}

/* ===== About Page ===== */
.about-intro {
    padding: 4rem 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
}

.about-placeholder {
    font-size: 4rem;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .about-intro .container {
        grid-template-columns: 1fr;
    }
}

/* ===== Values Section ===== */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Team Section ===== */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.3);
}

.team-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.5;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 51, 0.3);
}

.portfolio-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-card:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.3;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.contact-method:hover {
    border-color: rgba(255, 0, 51, 0.3);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.contact-method-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.contact-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.contact-social svg {
    width: 20px;
    height: 20px;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ===== Map Placeholder ===== */
.map-section {
    padding: 0 0 6rem;
}

.map-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent);
    margin-bottom: 1rem;
}

/* ===== Timeline ===== */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 4rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 4rem;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    top: 2.5rem;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-year {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -8px;
        right: auto;
    }
}

/* ===== Comparison Table Section ===== */
.comparison-section {
    position: relative;
}

.comparison-table {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-header .comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.comparison-header svg {
    width: 40px;
    height: 40px;
}

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.comparison-header .comparison-cell.without svg {
    color: rgba(255, 0, 51, 0.8);
}

.comparison-header .comparison-cell.with svg {
    color: rgba(0, 255, 102, 0.8);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.comparison-cell.without {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-cell .cell-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comparison-cell.without .cell-icon {
    color: rgba(255, 0, 51, 0.7);
}

.comparison-cell.with .cell-icon {
    color: rgba(0, 255, 102, 0.7);
}

.comparison-cell span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== Live Statistics Section ===== */
.stats-section {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.2);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), rgba(255, 255, 255, 0.05));
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), rgba(255, 51, 102, 0.8));
    border-radius: 50%;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent), rgba(255, 51, 102, 0.8));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Enhanced Integration Showcase ===== */
.integrations-section {
    position: relative;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--platform-color, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.integration-card:hover::before {
    opacity: 0.1;
}

.integration-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.integration-card[data-platform="whatsapp"] {
    --platform-color: #25D366;
}

.integration-card[data-platform="whatsapp"]:hover {
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
}

.integration-card[data-platform="instagram"] {
    --platform-color: #E4405F;
}

.integration-card[data-platform="instagram"]:hover {
    box-shadow: 0 20px 60px rgba(228, 64, 95, 0.3);
}

.integration-card[data-platform="telegram"] {
    --platform-color: #0088cc;
}

.integration-card[data-platform="telegram"]:hover {
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.3);
}

.integration-card[data-platform="facebook"] {
    --platform-color: #0084FF;
}

.integration-card[data-platform="facebook"]:hover {
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.3);
}

.integration-card[data-platform="web"] {
    --platform-color: #ff0033;
}



.integration-card:hover .integration-icon {
    transform: rotate(5deg);
    border-color: var(--platform-color);
}

.integration-icon svg {
    width: 50px;
    height: 50px;
    color: var(--platform-color);
}

.integration-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.integration-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.integration-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-table {
        border-radius: 16px;
    }

    .comparison-header {
        grid-template-columns: 1fr;
    }

    .comparison-header .comparison-cell:first-child {
        border-bottom: 1px solid var(--glass-border);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell.without {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .comparison-cell {
        padding: 1.25rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .integration-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-section,
    .stats-section,

}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--platform-color, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.integration-card:hover::before {
    opacity: 0.1;
}

.integration-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.integration-card[data-platform="whatsapp"] {
    --platform-color: #25D366;
}

.integration-card[data-platform="whatsapp"]:hover {
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
}

.integration-card[data-platform="instagram"] {
    --platform-color: #E4405F;
}

.integration-card[data-platform="instagram"]:hover {
    box-shadow: 0 20px 60px rgba(228, 64, 95, 0.3);
}

.integration-card[data-platform="telegram"] {
    --platform-color: #0088cc;
}

.integration-card[data-platform="telegram"]:hover {
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.3);
}

.integration-card[data-platform="facebook"] {
    --platform-color: #0084FF;
}

.integration-card[data-platform="facebook"]:hover {
    box-shadow: 0 20px 60px rgba(0, 132, 255, 0.3);
}

.integration-card[data-platform="web"] {
    --platform-color: #ff0033;
}



.integration-card:hover .integration-icon {
    transform: rotate(5deg);
    border-color: var(--platform-color);
}

.integration-icon svg {
    width: 50px;
    height: 50px;
    color: var(--platform-color);
}

.integration-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.integration-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.integration-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-table {
        border-radius: 16px;
    }

    .comparison-header {
        grid-template-columns: 1fr;
    }

    .comparison-header .comparison-cell:first-child {
        border-bottom: 1px solid var(--glass-border);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell.without {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .comparison-cell {
        padding: 1.25rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .integration-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-section,
    .stats-section,
    .integrations-section {
        padding: 4rem 0 !important;
    }
}

/* AI Videos Page Specific Styles */
.detail-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: currentColor;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--accent);
    border-color: var(--accent);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
}

.integration-icon svg {
    width: 50px;
    height: 50px;
    color: var(--platform-color);
}

.integration-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.integration-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.integration-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-table {
        border-radius: 16px;
    }

    .comparison-header {
        grid-template-columns: 1fr;
    }

    .comparison-header .comparison-cell:first-child {
        border-bottom: 1px solid var(--glass-border);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell.without {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .comparison-cell {
        padding: 1.25rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .integration-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-section,
    .stats-section,
    .integrations-section {
        padding: 4rem 0 !important;
    }
}

/* AI Videos Page Specific Styles */
.detail-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: currentColor;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--accent);
    border-color: var(--accent);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;

    .play-button {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .play-button svg {
        width: 32px;
        height: 32px;
        color: #fff;
        fill: currentColor;
    }

    .play-button:hover {
        transform: scale(1.1);
        background: var(--accent);
        border-color: var(--accent);
    }

    .video-overlay {
        position: absolute;
        bottom: 20px;
    }

    .integration-icon svg {
        width: 50px;
        height: 50px;
        color: var(--platform-color);
    }

    .integration-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .integration-desc {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .integration-benefits {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .benefit-item svg {
        width: 20px;
        height: 20px;
        color: var(--accent);
        flex-shrink: 0;
    }

    /* ===== Responsive Breakpoints ===== */
    @media (max-width: 1024px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .integrations-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .comparison-table {
            border-radius: 16px;
        }

        .comparison-header {
            grid-template-columns: 1fr;
        }

        .comparison-header .comparison-cell:first-child {
            border-bottom: 1px solid var(--glass-border);
        }

        .comparison-row {
            grid-template-columns: 1fr;
        }

        .comparison-cell.without {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comparison-cell {
            padding: 1.25rem 1.5rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .stat-number {
            font-size: 3rem;
        }

        .integrations-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .integration-benefits {
            flex-direction: column;
            gap: 1rem;
        }

        .comparison-section,
        .stats-section,
        .integrations-section {
            padding: 4rem 0 !important;
        }
    }

    /* AI Videos Page Specific Styles */
    .detail-visual {
        position: relative;
        height: 100%;
        min-height: 400px;
    }

    .video-placeholder {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 300px;
        background: #000;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .play-button {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .play-button svg {
        width: 32px;
        height: 32px;
        color: #fff;
        fill: currentColor;
    }

    .play-button:hover {
        transform: scale(1.1);
        background: var(--accent);
        border-color: var(--accent);
    }

    .video-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.6);
        padding: 8px 16px;
        border-radius: 20px;
        color: #fff;
        font-size: 0.9rem;
        backdrop-filter: blur(5px);
    }

    /* =========================================
   APPROACH PAGE OVERHAUL - BRUTALIST THEME
   ========================================= */

    /* --- Brutalist Hero Section --- */
    .brutalist-hero {
        padding: 12rem 0 6rem;
        position: relative;
        background: #000;
        overflow: hidden;
        border-bottom: 1px solid var(--glass-border);
    }

    .data-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        z-index: 0;
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    /* Glitch Typography */
    .glitch-wrapper {
        position: relative;
        margin-bottom: 2rem;
    }

    .glitch-text {
        font-family: var(--font-display);
        font-size: 6rem;
        font-weight: 800;
        line-height: 0.9;
        color: #fff;
        text-transform: uppercase;
        position: relative;
    }

    .glitch-text::before,
    .glitch-text::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
    }

    .glitch-text::before {
        left: 2px;
        text-shadow: -1px 0 #ff0033;
        clip: rect(24px, 550px, 90px, 0);
        animation: glitch-anim-2 3s infinite linear alternate-reverse;
    }

    .glitch-text::after {
        left: -2px;
        text-shadow: -1px 0 #00ccff;
        clip: rect(85px, 550px, 140px, 0);
        animation: glitch-anim 2.5s infinite linear alternate-reverse;
    }

    @keyframes glitch-anim {
        0% {
            clip: rect(14px, 9999px, 127px, 0);
        }

        20% {
            clip: rect(93px, 9999px, 16px, 0);
        }

        40% {
            clip: rect(48px, 9999px, 86px, 0);
        }

        60% {
            clip: rect(10px, 9999px, 139px, 0);
        }

        80% {
            clip: rect(72px, 9999px, 24px, 0);
        }

        100% {
            clip: rect(122px, 9999px, 6px, 0);
        }
    }

    @keyframes glitch-anim-2 {
        0% {
            clip: rect(65px, 9999px, 119px, 0);
        }

        20% {
            clip: rect(12px, 9999px, 54px, 0);
        }

        40% {
            clip: rect(98px, 9999px, 15px, 0);
        }

        60% {
            clip: rect(34px, 9999px, 82px, 0);
        }

        80% {
            clip: rect(5px, 9999px, 133px, 0);
        }

        100% {
            clip: rect(111px, 9999px, 46px, 0);
        }
    }

    /* System Status Grid */
    .system-status-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1px;
        background: var(--glass-border);
        border: 1px solid var(--glass-border);
        margin-top: 3rem;
    }

    .status-item {
        background: rgba(0, 0, 0, 0.8);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .status-label {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.8rem;
        color: var(--text-secondary);
        text-transform: uppercase;
    }

    .status-value {
        font-family: 'JetBrains Mono', monospace;
        font-size: 1.1rem;
        color: var(--accent);
        font-weight: 700;
    }

    .status-indicator {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        margin-right: 8px;
        box-shadow: 0 0 10px var(--accent);
        animation: blink 2s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    /* --- Philosophy Section --- */
    .philosophy-section {
        padding: 6rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--glass-border);
        border: 1px solid var(--glass-border);
    }

    .philosophy-card {
        background: #050505;
        padding: 3rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .philosophy-card:hover {
        background: #0a0a0a;
    }

    .card-index {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        display: block;
    }

    .philosophy-card h3 {
        font-family: var(--font-display);
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #fff;
    }

    .philosophy-card p {
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* --- Enhanced Timeline --- */
    .approach-section {
        padding: 8rem 0;
        position: relative;
        overflow: hidden;
    }

    .process-timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Central Line */
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--glass-border);
        transform: translateX(-50%);
    }

    .process-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 6rem;
        position: relative;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    /* Checkpoint Visual */
    .step-checkpoint {
        position: absolute;
        left: 50%;
        top: 0;
        width: 40px;
        height: 40px;
        background: #000;
        border: 2px solid var(--glass-border);
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.9rem;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .process-step:hover .step-checkpoint {
        border-color: var(--accent);
        color: var(--accent);
        box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    }

    /* Step Content */
    .step-content-wrapper {
        position: relative;
    }

    .process-step:nth-child(odd) .step-content-wrapper {
        grid-column: 1;
        text-align: right;
        padding-right: 2rem;
    }

    .process-step:nth-child(even) .step-content-wrapper {
        grid-column: 2;
        text-align: left;
        padding-left: 2rem;
    }

    .step-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--glass-border);
        padding: 2.5rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        border-color: var(--accent);
        background: rgba(255, 0, 51, 0.05);
    }

    .step-header {
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .process-step:nth-child(odd) .step-header {
        flex-direction: row-reverse;
    }

    .step-number {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.1);
        line-height: 1;
    }

    .step-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    /* Step Meta */
    .step-meta-wrapper {
        display: flex;
        align-items: center;
    }

    .process-step:nth-child(odd) .step-meta-wrapper {
        grid-column: 2;
        padding-left: 2rem;
        justify-content: flex-start;
    }

    .process-step:nth-child(even) .step-meta-wrapper {
        grid-column: 1;
        padding-right: 2rem;
        justify-content: flex-end;
    }

    .step-meta-box {
        background: #000;
        border: 1px solid var(--glass-border);
        padding: 1.5rem;
        min-width: 200px;
    }

    .meta-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.85rem;
    }

    .meta-row:last-child {
        margin-bottom: 0;
    }

    .meta-key {
        color: var(--text-secondary);
    }

    .meta-val {
        color: var(--accent);
    }

    /* --- Terminal CTA --- */
    .terminal-cta-section {
        padding: 6rem 0;
        background: #050505;
        border-top: 1px solid var(--glass-border);
    }

    .terminal-window {
        background: #000;
        border: 1px solid var(--glass-border);
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .terminal-header {
        background: var(--glass-border);
        padding: 0.5rem 1rem;
        display: flex;
        gap: 0.5rem;
    }

    .terminal-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot-red {
        background: #ff5f56;
    }

    .dot-yellow {
        background: #ffbd2e;
    }

    .dot-green {
        background: #27c93f;
    }

    .terminal-body {
        padding: 3rem;
        font-family: 'JetBrains Mono', monospace;
    }

    .command-line {
        color: #fff;
        margin-bottom: 1rem;
    }

    .command-prompt {
        color: var(--accent);
        margin-right: 0.5rem;
    }

    .terminal-response {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .terminal-btn {
        display: inline-block;
        background: var(--accent);
        color: #fff;
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .terminal-btn:hover {
        background: #fff;
        color: #000;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .philosophy-grid {
            grid-template-columns: 1fr;
        }

        .glitch-text {
            font-size: 4rem;
        }
    }

    @media (max-width: 768px) {
        .process-timeline::before {
            left: 20px;
        }

        .process-step {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .step-checkpoint {
            left: 20px;
        }

        .process-step:nth-child(odd) .step-content-wrapper,
        .process-step:nth-child(even) .step-content-wrapper {
            grid-column: 1;
            text-align: left;
            padding-left: 3.5rem;
            padding-right: 0;
        }

        .process-step:nth-child(odd) .step-header {
            flex-direction: row;
        }

        .process-step:nth-child(odd) .step-meta-wrapper,
        .process-step:nth-child(even) .step-meta-wrapper {
            grid-column: 1;
            padding-left: 3.5rem;
            padding-right: 0;
            justify-content: flex-start;
        }

        .glitch-text {
            font-size: 3rem;
        }
    }

/* =========================================
   FARKIMIZ PAGE STYLES
   ========================================= */

/* Section Header */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-index {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

/* Differentiators Section */
.differentiators-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.diff-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    transition: all 0.3s ease;
}

.diff-card:hover {
    border-color: var(--accent);
    background: rgba(255, 0, 51, 0.05);
    transform: translateY(-5px);
}

.diff-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.diff-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.diff-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.diff-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.diff-tags span {
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--accent);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    text-transform: uppercase;
}

/* Comparison Matrix */
.comparison-matrix-section {
    padding: 8rem 0;
    background: #050505;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--glass-border);
    background: #000;
}

.comparison-table thead th {
    background: var(--glass-border);
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid var(--glass-border);
}

.comparison-table thead th.gurizon {
    color: var(--accent);
}

.comparison-table tbody td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 600;
    color: #fff;
}

.comparison-table .traditional {
    color: var(--text-secondary);
}

.comparison-table .gurizon {
    color: #fff;
}

.comparison-table .check {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.terminal-display {
    background: #000;
    border: 1px solid var(--glass-border);
    max-width: 900px;

    margin: 0 auto;
}

.terminal-display .terminal-header {
    background: var(--glass-border);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

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

.terminal-dots .dot.red {
    background: #ff5f56;
}

.terminal-dots .dot.yellow {
    background: #ffbd2e;
}

.terminal-dots .dot.green {
    background: #27c93f;
}

.terminal-content {
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

.terminal-content pre {
    margin: 0;
    color: #fff;
}

.terminal-content code {
    color: var(--text-secondary);
}

/* Results Section */
.results-section {
    padding: 8rem 0;
    background: #050505;
    border-bottom: 1px solid var(--glass-border);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.metric-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.metric-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .diff-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .diff-number {
        font-size: 2.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 3rem;
    }
}
