:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent: #00ff88;
    --color-accent-dim: #00cc6a;
    --color-border: #2a2a2a;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.logo-number {
    font-size: 32px;
    color: var(--color-accent);
    line-height: 1;
}

.logo-text {
    font-size: 24px;
    color: var(--color-text);
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--color-text);
}

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

.nav-link-cta {
    padding: 10px 24px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 0;
    transition: all 0.3s ease;
}

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

.nav-link-cta:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 8px 20px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.4s var(--ease-out);
    z-index: -1;
}

.btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
}

.btn-secondary {
    background: transparent;
    border-color: var(--color-text);
    color: var(--color-text);
}

.btn-secondary::before {
    background: var(--color-text);
}

.btn-secondary:hover {
    color: var(--color-bg);
}

.btn-secondary:hover::before {
    left: 0;
}

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

/* Section Styles */
section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    margin-bottom: 100px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--color-border);
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--color-text);
}

/* Services */
.services {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

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

.service-icon {
    color: var(--color-accent);
    margin-bottom: 30px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-list li:last-child {
    border-bottom: none;
}

/* Process */
.process-intro {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 800px;
    margin-bottom: 80px;
    font-weight: 300;
}

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

.process-step {
    position: relative;
    padding-left: 30px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.step-number {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* CTA Section */
.cta {
    background: var(--color-surface);
    text-align: center;
    padding: 180px 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.cta-title .line {
    display: block;
}

.cta-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-text-muted);
    margin-bottom: 60px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.cta-info a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-info a:hover {
    color: var(--color-accent-dim);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-logo .logo-number {
    font-size: 40px;
    color: var(--color-accent);
}

.footer-logo .logo-text {
    font-size: 30px;
    color: var(--color-text);
}

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

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

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

/* Responsive */
@media (max-width: 968px) {
    .container, .nav-container {
        padding: 0 40px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s var(--ease-out);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }

    .hero-scroll {
        left: 40px;
    }

    section {
        padding: 100px 0;
    }

    .cta {
        padding: 120px 0;
    }
}

@media (max-width: 640px) {
    .container, .nav-container {
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        padding: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Smooth animations on load */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    opacity: 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}
