/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    margin-top: -80px;
    overflow: hidden;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.05) 30%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(255,107,0,0.03) 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    margin-bottom: 2rem;
}

.subtitle h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.template-text {
    margin-bottom: 3rem;
}

.template-text h2, .template-text h3 {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.template-text h3 {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.avatar-2 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.avatar-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.message-card {
    position: absolute;
    bottom: 30%;
    right: 15%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.message-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.message-icons {
    display: flex;
    gap: 1rem;
    color: var(--accent-color);
}

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

/* Services Overview Section */
.services-overview {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--dark-bg-2) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 380px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.15) 0%, rgba(255,107,0,0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.03);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: rgba(255, 107, 0, 0.15);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-card p {
    font-family: var(--font-primary);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    background: rgba(255, 107, 0, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card .service-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.service-card .learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.service-card .learn-more:hover {
    gap: 0.75rem;
}

/* Process Section */
.our-process {
    padding: 8rem 0;
    background: var(--dark-bg-2);
    position: relative;
    overflow: hidden;
}

.our-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 140px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.1;
    pointer-events: none;
}

.process-step {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.process-step p {
    font-family: var(--font-primary);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--dark-bg-2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,107,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.cta-section p {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .cta-section h2 {
        font-size: 2.75rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-section .cta-button {
        padding: 1.25rem 3rem;
    }

    .subtitle h2 {
        font-size: 2rem;
    }

    .template-text h2, .template-text h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .subtitle h2 {
        font-size: 1.75rem;
    }

    .template-text h2, .template-text h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}
