:root {
    --bg-color: #0b0c15;
    --bg-gradient: radial-gradient(circle at top left, #1a1638 0%, #0b0c15 50%);
    --accent-pink: #d9008d;
    --accent-purple: #7000b0;
    --text-light: #ffffff;
    --text-muted: #a3a8b5;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    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: 50px 50px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5rem;
}

.tagline {
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tagline::before, .tagline::after {
    content: "";
    height: 2px;
    width: 30px;
    background-color: var(--accent-pink);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #a3a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(217, 0, 141, 0.05);
    border: 1px solid rgba(217, 0, 141, 0.3);
    color: #ff72d2;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Content Grid (Overview & Stats) */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.overview h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.overview p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-pink);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 0, 141, 0.1);
    border-left-color: #ff2eb3;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(217, 0, 141, 0.05), transparent);
    pointer-events: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.stat-plus {
    color: var(--accent-pink);
    font-size: 1.8rem;
    margin-left: 4px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Visual Mockup Section */
.mockup-section {
    position: relative;
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    text-align: center;
}

.mockup-image {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge {
    position: absolute;
    bottom: 3rem;
    right: 10%;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(221, 36, 118, 0.4);
    border: 4px solid #fff;
    z-index: 10;
}

.search-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 85%;
    max-width: 600px;
    z-index: 5;
}

.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
    background: transparent;
}

.search-btn {
    background: var(--accent-pink);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s ease;
}

.search-btn:hover { background: #ff2eb3; }

/* The Execution Grid (Deep Dive) */
.execution-section {
    margin-bottom: 6rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.execution-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--accent-purple);
}

.execution-card:hover { transform: translateY(-10px); }

.step-number {
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.execution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.execution-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Testimonial Block */
.testimonial {
    background: linear-gradient(135deg, rgba(112, 0, 176, 0.1) 0%, rgba(217, 0, 141, 0.05) 100%);
    border: 1px solid var(--card-border);
    padding: 5rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-pink);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    line-height: 1;
}

.testimonial blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 2;
}

.client-info .name {
    display: block;
    font-weight: 700;
    color: var(--accent-pink);
    font-size: 1.1rem;
}

.client-info .title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(217, 0, 141, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid { grid-template-columns: 1fr; gap: 4rem; }
    .execution-grid { grid-template-columns: repeat(2, 1fr); }
    .badge { right: 2rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .execution-grid { grid-template-columns: 1fr; }
    .testimonial blockquote { font-size: 1.3rem; }
    .stats-container { grid-template-columns: 1fr; }
}