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

:root {
    --color-primary: #FF6B9D;
    --color-secondary: #C44569;
    --color-accent: #FFC75F;
    --color-success: #00D9A3;
    --color-info: #0066FF;
    --color-light: #F0F8FF;
    --color-white: #FFFFFF;
    --color-dark: #1A1A2E;
    --color-text: #2C3E50;
    --color-text-light: #7F8C8D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF0F5 50%, #FFFACD 100%);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-shape {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate 20s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-name {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-line {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-items {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    left: -100px;
    animation: morphing 8s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 50px;
    right: -50px;
    animation: morphing 8s infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--color-success);
    border-radius: 40% 60% 50% 50% / 50% 50% 50% 50%;
    top: 50%;
    right: 10%;
    animation: morphing 10s infinite;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--color-info);
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    top: 20%;
    left: 5%;
    animation: morphing 12s infinite reverse;
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

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

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 199, 95, 0.2));
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 13px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.accent-word {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-section {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: var(--color-primary);
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 199, 95, 0.1));
    transform: translateY(-4px);
}

.btn-text {
    display: flex;
    align-items: center;
}

.btn-arrow {
    font-size: 20px;
}

.btn-large {
    padding: 16px 40px;
    width: 100%;
}

.btn-block {
    width: 100%;
}

.social-proof {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
}

.hero-right {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
}

.card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-color: var(--color-secondary);
    z-index: 3;
}

.card-accent-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--color-accent), #FFD700);
    border-color: var(--color-accent);
}

.card-accent-2 {
    bottom: 20px;
    right: 0;
    background: linear-gradient(135deg, var(--color-success), #00C896);
    border-color: var(--color-success);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
}

.card-text {
    font-weight: 700;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 60px;
}

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

.service-box {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(255, 107, 157, 0.15);
    border-color: var(--color-primary);
}

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

.box-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 107, 157, 0.15);
    margin-bottom: 12px;
}

.box-icon {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 12px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.service-box p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.box-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 24px;
}

.stat-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.stat-1 {
    border-left-color: var(--color-primary);
}

.stat-2 {
    border-left-color: var(--color-accent);
}

.stat-3 {
    border-left-color: var(--color-success);
}

.stat-4 {
    border-left-color: var(--color-info);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-dark);
}

.stat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
}

/* About Section */
.about {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-shapes {
    position: relative;
    height: 400px;
}

.about-shape {
    position: absolute;
    border-radius: 20px;
}

.shape-a {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    top: 0;
    left: 0;
    animation: bounce 2s infinite;
}

.shape-b {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-accent), #FFD700);
    bottom: 0;
    right: 20px;
    animation: bounce 2s infinite 0.5s;
}

.shape-c {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-success), #00C896);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s infinite 1s;
}

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

.about-right h2 {
    font-size: 42px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Process Section */
.process {
    padding: 100px 40px;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF0F5 100%);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial {
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border-top: 4px solid var(--color-primary);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.av-1 {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.av-2 {
    background: linear-gradient(135deg, var(--color-accent), #FFD700);
}

.av-3 {
    background: linear-gradient(135deg, var(--color-success), #00C896);
}

.av-4 {
    background: linear-gradient(135deg, var(--color-info), #0052CC);
}

.testimonial-header h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
}

.testimonial-header p {
    font-size: 12px;
    color: var(--color-text-light);
}

.testimonial-rating {
    font-size: 14px;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFACD 100%);
}

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-box {
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    transition: all 0.3s;
    border-left: 4px solid var(--color-primary);
}

.contact-box:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15);
}

.contact-box-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.contact-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-desc {
    font-size: 13px;
    color: var(--color-text-light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 14px;
}

.footer p {
    margin: 8px 0;
}

/* Floating Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    animation: float-pulse 2s infinite;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.6);
    animation: none;
}

.float-btn svg,
.float-btn img {
    width: 36px;
    height: 36px;
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(255, 107, 157, 0.7); }
}


/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-items {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        transition: left 0.3s;
        overflow-y: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-items.active {
        left: 0;
    }

    .nav-link {
        padding: 12px 0;
        display: block;
    }

    .nav-link::before {
        display: none;
    }

    .hero {
        padding: 120px 20px 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-heading {
        font-size: 38px;
    }

    .hero-right {
        order: -1;
        height: 300px;
    }

    .services,
    .about,
    .process,
    .testimonials,
    .contact {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .float-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .float-btn svg,
    .float-btn img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .cta-section {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .services-container,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .float-btn {
        width: 55px;
        height: 55px;
    }
}