:root {
    --primary: #EC6952;
    --primary-dark: #c0392b;
    --primary-glow: rgba(236, 105, 82, 0.5);
    --bg-dark: #0a0a0a;
    --bg-panel: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -2;
    opacity: 0.4;
    animation: pulse 10s infinite alternate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

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

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(236, 105, 82, 0.2);
    transform: translateY(-5px);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--border-glass);
    border-top: none;
}

.logo img {
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--text-main);
}

.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    color: var(--text-main);
}

.btn-nav:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(236, 105, 82, 0.1);
    color: var(--primary);
    border: 1px solid rgba(236, 105, 82, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 0 40px;
    max-width: 540px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(236, 105, 82, 0.4);
}

.primary-btn:hover {
    background: #ff7b63;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 105, 82, 0.6);
}

.secondary-btn {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid var(--border-glass);
}

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

.arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-card {
    position: absolute;
    width: 280px;
    padding: 24px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    color: white;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.visual-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    z-index: 3;
    border-left: 4px solid var(--primary);
}

.visual-card:nth-child(2) {
    top: 40%;
    left: 10%;
    animation-delay: 2s;
    z-index: 2;
    opacity: 0.8;
}

.visual-card:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
    z-index: 1;
    opacity: 0.6;
}

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

/* Services */
.services {
    padding: 100px 0;
}

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

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin: 0 0 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-box {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 0 16px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

/* About */
.about {
    padding: 80px 0;
}

.about-content {
    padding: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.about h2 {
    margin-bottom: 24px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-header h2 {
    margin-bottom: 16px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item .icon {
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
}

.contact-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.contact-item p, .contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-visual {
        display: none; /* Simplify for mobile for now */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
