:root {
    /* Colors - Nutzy Acorn Palette */
    --bg-dark: #F9F7F5;
    /* Warm White */

    --bg-card: rgba(255, 255, 255, 0.6);
    --bg-card-hover: rgba(255, 255, 255, 0.9);

    --primary: #D4B69D;
    /* Pastel Acorn Brown */
    --primary-glow: rgba(212, 182, 157, 0.5);

    --secondary: #A8D0E6;
    /* Sky Blue Goggles */
    --secondary-glow: rgba(168, 208, 230, 0.5);

    --accent-blue: #A8D0E6;
    /* Sky Blue Goggles */
    --accent-green: #B7D9AE;
    /* Soft Leaf Green */
    --accent-mint: #E5F5E4;
    /* Mint Apron */
    --accent-orange: #ffdac1;

    --text-main: #5d4037;
    /* Dark Brown for text to match Acorn theme */
    --text-muted: #8d6e63;

    --border-glass: rgba(255, 255, 255, 0.8);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-text: linear-gradient(to right, #ff9aa2, #ffdac1);

    /* Fonts */
    --font-heading: 'Nunito', sans-serif;
    /* Rounded & Cute */
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    /* Soft Pattern Overlay */
    background-image: radial-gradient(#ffd1dc 1px, transparent 1px);
    background-size: 30px 30px;

    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 800;
    /* Extra bold for cuteness */
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.logo-img {
    height: 48px;
    border-radius: 50%;
    /* Add a little bounce to logo */
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Cute text shadow */
    text-shadow: 2px 2px 0px rgba(255, 183, 178, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    /* Maximum rounded */
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    /* Bouncy transition */
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow), inset 0 -4px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

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

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

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 183, 178, 0.1);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid white;
    border-radius: 30px;
    /* Extra round */
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 183, 178, 0.3);
    border-color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.nav-links {
    display: none;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 10px;
}

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

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

.nav-actions {
    display: none;
    gap: 12px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 32px;
    }

    .nav-actions {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.badge-pill {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    border: 2px solid var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(255, 183, 178, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: inline-flex;
    padding: 24px 40px;
    gap: 40px;
    align-items: center;
    background: white;
    border: 2px solid var(--primary);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--accent-blue);
    opacity: 0.3;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    /* Higher opacity for pastels */
    z-index: 0;
}

.glow-1 {
    background: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: var(--accent-orange);
    bottom: -100px;
    right: -100px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services-grid .service-card {
    flex: 1 1 300px;
    max-width: 400px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-blue {
    background: #e0f2fe;
    color: var(--accent-blue);
}

.icon-purple {
    background: #f3e8ff;
    color: #c084fc;
}

.icon-pink {
    background: #ffe4e6;
    color: var(--primary);
}

.icon-orange {
    background: #ffedd5;
    color: var(--accent-orange);
}

.icon-green {
    background: #dcfce7;
    color: var(--accent-green);
}

::selection {
    background: var(--secondary);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.feature-list {
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    /* Darker text for readability */
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-list li i {
    color: var(--secondary);
    /* Mint checkmarks */
    background: white;
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.learn-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 183, 178, 0.1);
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
    background: var(--primary);
    color: white;
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 #fff;
    -webkit-text-stroke: 0;
}

.step-connector {
    display: none;
    flex: 1;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--accent-blue) 0, var(--accent-blue) 10px, transparent 10px, transparent 20px);
    align-self: center;
    margin: 0 10px;
    opacity: 0.3;
}

/* Split CTA */
.split-cta-section {
    padding: 80px 0;
}

.split-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-box {
    flex: 1;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid;
}

.client-box {
    border-color: var(--accent-blue);
    background: linear-gradient(to bottom right, #fff, #f0f9ff);
}

.freelancer-box {
    border-color: var(--primary);
    background: linear-gradient(to bottom right, #fff, #fff0f5);
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* Why Us */
.why-us-section {
    padding: 80px 0;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 30px;
    flex: 1 1 280px;
    max-width: 400px;
}

.icon-why {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(255, 183, 178, 0.3));
}

.why-card h4 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

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

/* Future Vision */
.future-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.future-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.future-content {
    flex: 1;
    min-width: 300px;
}

.roadmap-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roadmap-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
    background: var(--bg-dark);
    padding: 12px 20px;
    border-radius: 16px;
}

.roadmap-list span i {
    color: var(--primary);
}

.future-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    /* Pastel background for visual */
    border: none;
}

.app-mockup {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
}

.app-icon {
    font-size: 6rem;
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    /* Using the main background color */
    border-top: none;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col {
    color: var(--text-main);
}

.footer-heading {
    font-family: 'Orbitron', 'Nunito', sans-serif;
    /* Tech feel */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: #1a1a1a;
    margin-bottom: 25px;
}

.footer-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-service-list li {
    margin-bottom: 12px;
}

.footer-service-list a {
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 10px;
    transition: all 0.3s;
}

.footer-service-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: #999;
    border-radius: 50%;
}

.footer-service-list a:hover {
    color: var(--primary);
    padding-left: 15px;
}

.footer-contact-list li {
    margin-bottom: 20px;
    color: #555;
}

.footer-contact-list li,
.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

.contact-icon {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-icon:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive */
@media (min-width: 992px) {
    .step-connector {
        display: block;
    }

    .split-container {
        flex-direction: row;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 2px;
    }
}