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

:root {
    --primary-color: #7ed957;
    --secondary-color: #4a9c2d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --gradient: linear-gradient(135deg, #7ed957 0%, #4a9c2d 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(126, 217, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 156, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
    font-size: 1.05rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 217, 87, 0.4);
}

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

.btn-outline:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-color);
}

.mobile-break {
    display: none;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: var(--gradient);
    color: white;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(126, 217, 87, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.service-card.featured .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card.featured .service-features li::before {
    color: white;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    gap: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.tech-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--gradient);
    color: white;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form select option {
    background: var(--dark-color);
    color: white;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(126, 217, 87, 0.2));
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #7ed957 0%, #4a9c2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Removed ::before rule - SVG icons now rendered directly in HTML */

.portfolio-item:hover .portfolio-icon-home {
    opacity: 0.2;
    transform: scale(1.2);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: white;
}

.portfolio-info {
    padding: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 0.4rem 1rem;
    background: rgba(126, 217, 87, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--light-color);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.process-number {
    min-width: 60px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
    position: relative;
    z-index: 1;
    margin-top: 0.25rem;
}

.process-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Clients Section */
.clients {
    padding: 4rem 0;
    background: var(--light-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-color);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: white;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-circle {
        width: 250px;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        left: 22px;
        top: 22px;
    }

    .process-step {
        gap: 1.5rem;
        align-items: flex-start;
    }

    .process-number {
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

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

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

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-content {
        transform: none !important;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-image {
        height: 250px;
    }

    .hero-circle {
        width: 200px;
        height: 200px;
    }

    .stat-card h3 {
        font-size: 1.75rem;
    }

    .stat-card p {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .portfolio-card {
        padding: 1.25rem;
    }

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

/* Home Page Production Polish */
.hero {
    background:
        radial-gradient(circle at 10% 18%, rgba(126, 217, 87, 0.18) 0%, transparent 32%),
        radial-gradient(circle at 88% 70%, rgba(74, 156, 45, 0.12) 0%, transparent 36%),
        linear-gradient(135deg, #f8fbf6 0%, #ffffff 48%, #edf6ea 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(74, 156, 45, 0.035) 38px, rgba(74, 156, 45, 0.035) 76px);
    pointer-events: none;
}

.hero-particles {
    z-index: 0;
    background-image:
        radial-gradient(circle at 18% 55%, rgba(126, 217, 87, 0.12) 0%, transparent 48%),
        radial-gradient(circle at 82% 25%, rgba(74, 156, 45, 0.12) 0%, transparent 48%);
}

.hero-content {
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(74, 156, 45, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(20, 32, 23, 0.06);
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 7px rgba(126, 217, 87, 0.16);
}

.hero-title {
    max-width: 820px;
    color: #142017;
    font-size: clamp(3rem, 5vw, 4.55rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.hero-subtitle {
    max-width: 680px;
    color: #536155;
    font-size: 1.16rem;
    line-height: 1.85;
}

.hero-stats {
    gap: 1rem;
}

.stat {
    padding: 1.1rem 1rem;
    border: 1px solid rgba(220, 233, 214, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(20, 32, 23, 0.06);
}

.stat-number {
    font-size: 2.2rem;
}

.floating-card {
    border: 1px solid rgba(220, 233, 214, 0.95);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 46px rgba(20, 32, 23, 0.13);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(74, 156, 45, 0.22);
}

.card-label {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-text {
    color: #142017;
}

.home-signal {
    position: relative;
    z-index: 2;
    margin-top: -58px;
    padding: 0 0 78px;
}

.home-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.home-signal-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 1.55rem;
    border: 1px solid #dce9d6;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.18) 0%, transparent 38%),
        #ffffff;
    box-shadow: 0 18px 44px rgba(20, 32, 23, 0.09);
}

.home-signal-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--gradient);
}

.home-signal-card span {
    display: inline-block;
    margin-bottom: 1.7rem;
    color: rgba(74, 156, 45, 0.32);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

.home-signal-card h3 {
    margin-bottom: 0.7rem;
    color: #142017;
    font-size: 1.2rem;
}

.home-signal-card p {
    margin: 0;
    color: #566357;
    line-height: 1.7;
}

.services {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.section-title {
    color: #142017;
    letter-spacing: -0.035em;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    border: 1px solid #dce9d6;
    box-shadow: 0 12px 32px rgba(20, 32, 23, 0.07);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.service-card.featured {
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.24) 0%, transparent 42%),
        linear-gradient(145deg, #1a2a1d 0%, #2e5d2a 100%);
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.about {
    background:
        radial-gradient(circle at 12% 18%, rgba(126, 217, 87, 0.12) 0%, transparent 32%),
        #f7faf6;
}

.feature-item {
    padding: 1.1rem;
    border: 1px solid #dce9d6;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(20, 32, 23, 0.055);
}

.feature-icon {
    box-shadow: 0 10px 22px rgba(74, 156, 45, 0.2);
}

.tech-stack {
    position: relative;
    padding: 1.25rem;
    border: 1px solid #dce9d6;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.2) 0%, transparent 34%),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 55px rgba(20, 32, 23, 0.08);
}

.tech-item {
    border: 1px solid rgba(220, 233, 214, 0.9);
    color: #17241a;
}

.process {
    background:
        linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.process-content {
    border: 1px solid #dce9d6;
}

.testimonial-card {
    border: 1px solid #dce9d6;
    background: #f7faf6;
}

.cta {
    isolation: isolate;
    padding: 96px 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(126, 217, 87, 0.2) 0%, transparent 28%),
        radial-gradient(circle at 86% 76%, rgba(74, 156, 45, 0.18) 0%, transparent 32%),
        #132016;
}

.cta::before {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(255, 255, 255, 0.035) 36px, rgba(255, 255, 255, 0.035) 72px),
        linear-gradient(135deg, rgba(126, 217, 87, 0.1), transparent 42%);
    animation: none;
}

.cta::after {
    top: auto;
    right: -120px;
    bottom: -180px;
    left: auto;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(126, 217, 87, 0.22);
    background: rgba(126, 217, 87, 0.08);
    animation: float 9s ease-in-out infinite;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.1rem);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(126, 217, 87, 0.2) 0%, transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.cta-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.48rem 0.95rem;
    border: 1px solid rgba(126, 217, 87, 0.28);
    border-radius: 999px;
    color: #d9f5cf;
    background: rgba(126, 217, 87, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta h2 {
    max-width: 780px;
    margin: 0 auto 1rem;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.cta p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-secondary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.cta-note {
    margin: 1.2rem auto 0 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 0.92rem !important;
}

@media (max-width: 968px) {
    .hero-title,
    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .home-signal {
        margin-top: 0;
        padding-top: 58px;
    }

    .home-signal-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .home-signal {
        padding-bottom: 58px;
    }

    .home-signal-card {
        min-height: 0;
    }

    .cta-actions,
    .cta-actions .btn {
        width: 100%;
    }

    .cta-content {
        border-radius: 24px;
    }
}

/* Home Layout Balance Fix */
.hero {
    min-height: auto;
    padding: 150px 0 105px;
    background:
        radial-gradient(circle at 12% 20%, rgba(126, 217, 87, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 84% 72%, rgba(74, 156, 45, 0.11) 0%, transparent 34%),
        linear-gradient(135deg, #fbfdf9 0%, #ffffff 48%, #edf6ea 100%);
}

.hero::after {
    opacity: 0.35;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 64px, rgba(74, 156, 45, 0.018) 64px, rgba(74, 156, 45, 0.018) 128px);
}

.hero-content {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(2.5rem, 6vw, 5rem);
}

.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-stats,
.hero-image {
    opacity: 1;
    animation: none;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(2.9rem, 4.45vw, 4.1rem);
    line-height: 1.12;
}

.hero-subtitle {
    max-width: 650px;
    margin-bottom: 1.7rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-image {
    height: 420px;
    overflow: visible;
}

.hero-circle {
    width: 330px;
    height: 330px;
    opacity: 0.12;
}

.floating-card {
    min-width: 230px;
    padding: 1.15rem 1.25rem;
    border-color: rgba(220, 233, 214, 0.78);
    box-shadow: 0 14px 36px rgba(20, 32, 23, 0.1);
}

.card-1 {
    top: 12%;
    left: 4%;
}

.card-2 {
    top: 42%;
    right: 0;
}

.card-3 {
    bottom: 12%;
    left: 15%;
}

.home-signal {
    margin-top: 0;
    padding: 76px 0;
    background: #f7faf6;
}

.home-signal-grid,
.services-grid,
.testimonials-grid {
    align-items: stretch;
}

.home-signal-card {
    min-height: 190px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    min-height: 340px;
    height: 100%;
}

.portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-item {
    height: 100%;
}

.portfolio-image {
    height: 220px;
}

.portfolio-info {
    min-height: 86px;
    align-content: flex-start;
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    height: 100%;
}

.process-timeline {
    max-width: 860px;
}

@media (max-width: 1024px) {
    .hero {
        padding: 130px 0 88px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: initial;
        max-width: 620px;
        margin: 0 auto;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 104px 0 68px;
    }

    .hero-title {
        font-size: clamp(2.15rem, 9vw, 3rem);
    }

    .hero-image {
        height: 330px;
    }

    .floating-card {
        min-width: 205px;
        padding: 1rem;
    }

    .home-signal {
        padding: 58px 0;
    }
}

@media (max-width: 640px) {
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 285px;
    }

    .hero-circle {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        min-width: 175px;
        gap: 0.65rem;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 104px 0 60px;
        text-align: center;
    }

    .hero::after {
        opacity: 0.18;
    }

    .hero-content {
        display: block;
        width: 100%;
    }

    .hero-eyebrow {
        max-width: min(100%, 320px);
        margin-right: auto;
        margin-left: auto;
        justify-content: center;
        white-space: normal;
        line-height: 1.45;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .hero-title {
        max-width: min(100%, 320px);
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(1.8rem, 8.5vw, 2.25rem);
        line-height: 1.14;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        max-width: min(100%, 320px);
        margin-right: auto;
        margin-left: auto;
        font-size: 1rem;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        width: 100%;
        max-width: 280px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-image {
        display: none;
    }

    .home-signal-card,
    .service-card,
    .portfolio-item,
    .testimonial-card,
    .feature-item,
    .tech-stack {
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
    }

    .mobile-break {
        display: block;
    }
}

@media (max-width: 420px) {
    .hero-title {
        max-width: 300px;
        font-size: 1.72rem;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-subtitle {
        max-width: 300px;
        font-size: 0.95rem;
    }

    .hero-buttons,
    .hero-stats {
        max-width: 280px;
    }

    .home-signal-card,
    .service-card,
    .portfolio-item,
    .testimonial-card,
    .feature-item,
    .tech-stack {
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
    }
}

/* Premium Homepage Refresh */
.services,
.about,
.portfolio,
.process,
.testimonials {
    position: relative;
    isolation: isolate;
    padding-block: clamp(4.75rem, 8vw, 6.5rem);
}

.services {
    background:
        radial-gradient(circle at 88% 12%, rgba(126, 217, 87, 0.08) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.about {
    background:
        radial-gradient(circle at 12% 18%, rgba(126, 217, 87, 0.11) 0%, transparent 32%),
        linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.portfolio {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 217, 87, 0.12) 0%, transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5faf2 100%);
}

.portfolio::before,
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(20, 32, 23, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 32, 23, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
    pointer-events: none;
}

.portfolio .container,
.process .container,
.testimonials .container {
    position: relative;
    z-index: 1;
}

.portfolio-header {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
}

.portfolio-eyebrow,
.testimonials-eyebrow,
.process-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-eyebrow {
    border: 1px solid rgba(74, 156, 45, 0.2);
    background: rgba(126, 217, 87, 0.1);
    color: #3c8f25;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
    max-width: 1120px;
    margin: clamp(1.75rem, 3vw, 2.4rem) auto 0;
}

.portfolio-item {
    display: grid;
    grid-template-rows: 235px 1fr;
    height: auto;
    overflow: hidden;
    border: 1px solid #dce9d6;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 55px rgba(20, 32, 23, 0.075);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 156, 45, 0.34);
    box-shadow: 0 30px 70px rgba(20, 32, 23, 0.13);
}

.portfolio-image {
    position: relative;
    min-height: 235px;
    height: auto;
    background:
        radial-gradient(circle at 74% 22%, rgba(126, 217, 87, 0.46), transparent 30%),
        linear-gradient(145deg, #162318 0%, #2f6a2d 58%, #79cf56 100%);
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(255, 255, 255, 0.06) 36px, rgba(255, 255, 255, 0.06) 72px),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.18), transparent 34%);
    pointer-events: none;
}

.portfolio-card-meta {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
}

.portfolio-card-meta span,
.portfolio-card-meta strong {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.portfolio-card-meta span {
    font-weight: 900;
}

.portfolio-card-meta strong {
    max-width: 68%;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.portfolio-icon-home {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    opacity: 1;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease;
}

.portfolio-item:hover .portfolio-icon-home {
    opacity: 1;
    transform: scale(1.08) rotate(-4deg);
}

.portfolio-icon-home svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.1rem;
    min-height: 245px;
    padding: 1.25rem;
}

.portfolio-info h3 {
    margin: 0 0 0.55rem;
    color: #142017;
    font-size: 1.18rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.portfolio-info p {
    margin: 0;
    color: #566357;
    font-size: 0.92rem;
    line-height: 1.65;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 0.42rem 0.78rem;
    border: 1px solid rgba(74, 156, 45, 0.16);
    border-radius: 999px;
    background: rgba(126, 217, 87, 0.1);
    color: #347d21;
    font-size: 0.78rem;
    font-weight: 800;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #1d5f21;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.25s ease, transform 0.25s ease;
}

.portfolio-link:hover {
    color: #4a9c2d;
    transform: translateX(4px);
}

.portfolio-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.process {
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 14%, rgba(126, 217, 87, 0.1) 0%, transparent 30%),
        linear-gradient(180deg, #f5faf2 0%, #ffffff 100%);
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(74, 156, 45, 0.035) 38px, rgba(74, 156, 45, 0.035) 76px);
    pointer-events: none;
}

.process-shell {
    display: grid;
    grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.35fr);
    gap: 1.4rem;
    align-items: start;
    margin-top: clamp(1.75rem, 3vw, 2.4rem);
}

.process-panel,
.testimonials-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(1.6rem, 3vw, 2.5rem);
    border: 1px solid rgba(126, 217, 87, 0.22);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.28) 0%, transparent 34%),
        linear-gradient(145deg, #132016 0%, #244d25 58%, #4a9c2d 100%);
    box-shadow: 0 30px 80px rgba(20, 32, 23, 0.18);
}

.process-panel {
    position: sticky;
    top: 96px;
    min-height: 560px;
}

.process-panel::before,
.testimonials-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(255, 255, 255, 0.055) 36px, rgba(255, 255, 255, 0.055) 72px);
    pointer-events: none;
}

.process-panel > *,
.testimonials-copy > * {
    position: relative;
    z-index: 1;
}

.process-kicker,
.testimonials-eyebrow {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #e8ffdf;
}

.process-panel .section-title,
.testimonials-copy .section-title {
    color: #fff;
    margin-bottom: 1rem;
    text-align: left;
}

.process-panel p,
.testimonials-copy p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.75;
}

.process-proof-grid,
.trust-metrics {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.process-proof-grid div,
.trust-metrics div {
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.process-proof-grid strong,
.trust-metrics strong {
    display: block;
    color: #e8ffdf;
    font-size: 1.25rem;
    line-height: 1.1;
}

.process-proof-grid span,
.trust-metrics span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 700;
}

.process-track {
    display: grid;
    gap: 1rem;
}

.process-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin: 0;
    padding: 1rem;
    border: 1px solid #dce9d6;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(20, 32, 23, 0.075);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 156, 45, 0.3);
    box-shadow: 0 24px 60px rgba(20, 32, 23, 0.12);
}

.process-number {
    min-width: 58px;
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.42), transparent 34%),
        linear-gradient(145deg, #1d351f, #4a9c2d);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(74, 156, 45, 0.22);
}

.process-card .process-content {
    padding: 0.15rem 0.25rem 0.2rem 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.process-card .process-content:hover {
    transform: none;
    box-shadow: none;
}

.process-label {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: #4a9c2d;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-content h3 {
    margin: 0 0 0.55rem;
    color: #142017;
    font-size: 1.28rem;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.process-content p {
    color: #566357;
    line-height: 1.7;
}

.process-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.process-deliverables span {
    padding: 0.36rem 0.68rem;
    border: 1px solid rgba(74, 156, 45, 0.16);
    border-radius: 999px;
    background: rgba(126, 217, 87, 0.1);
    color: #347d21;
    font-size: 0.75rem;
    font-weight: 800;
}

.testimonials {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(126, 217, 87, 0.1) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.testimonials,
.testimonials * {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.testimonials-shell {
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: clamp(1.75rem, 3vw, 2.4rem);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid #dce9d6;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 70px rgba(20, 32, 23, 0.1);
}

.testimonial-slider-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0.35rem 0.95rem;
}

.testimonial-slider-top > span {
    color: #3c8f25;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-controls {
    display: flex;
    gap: 0.45rem;
}

.testimonial-control {
    width: 42px;
    height: 42px;
    border: 1px solid #d5e7cd;
    border-radius: 999px;
    background: #fff;
    color: #1d5f21;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.testimonial-control:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 156, 45, 0.35);
    background: #f3faef;
}

.testimonial-track {
    position: relative;
    min-height: 370px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.45rem;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: clamp(1.4rem, 2.5vw, 2.2rem);
    border: 1px solid #dce9d6;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.18), transparent 36%),
        #ffffff;
    box-shadow: 0 18px 44px rgba(20, 32, 23, 0.075);
    opacity: 0;
    transform: translateX(32px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-card.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.testimonial-stars {
    margin: 0;
    color: #4a9c2d;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
}

.testimonial-text {
    position: relative;
    margin: 0;
    color: #142017;
    font-size: clamp(1.18rem, 2vw, 1.58rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -2.6rem;
    left: -0.15rem;
    color: rgba(126, 217, 87, 0.16);
    font-size: 5rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    margin-top: auto;
    padding: 0.75rem 0.95rem;
    border: 1px solid #dce9d6;
    border-radius: 999px;
    background: rgba(247, 251, 245, 0.92);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.42), transparent 34%),
        linear-gradient(145deg, #1d351f, #4a9c2d);
    color: white;
}

.author-info h4 {
    margin: 0 0 0.2rem;
    color: #142017;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: #566357;
    font-size: 0.84rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    padding-top: 1rem;
}

.testimonial-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #c9dec1;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.testimonial-dots button.is-active {
    width: 28px;
    background: #4a9c2d;
}

.tech-stack {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(126, 217, 87, 0.48) 0%, transparent 38%),
        radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.28) 0%, transparent 34%),
        linear-gradient(145deg, #79cf56 0%, #4f9f34 46%, #255f29 100%);
    box-shadow: 0 24px 58px rgba(38, 94, 41, 0.18);
}

.tech-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.08) 35px, rgba(255, 255, 255, 0.08) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(20, 55, 23, 0.055) 35px, rgba(20, 55, 23, 0.055) 70px);
    animation: homeTechPatternSlide 20s linear infinite;
    pointer-events: none;
}

.tech-stack::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    pointer-events: none;
}

.tech-item {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(126, 217, 87, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: #17241a;
    box-shadow: 0 12px 28px rgba(8, 18, 10, 0.16);
    backdrop-filter: blur(10px);
}

.tech-item:hover {
    border-color: rgba(126, 217, 87, 0.5);
    box-shadow: 0 18px 36px rgba(8, 18, 10, 0.22);
}

@keyframes homeTechPatternSlide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(70px, 70px);
    }
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .process-panel {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .process-proof-grid,
    .trust-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        grid-template-rows: 230px 1fr;
    }

    .portfolio-info {
        min-height: 0;
    }

    .process-proof-grid,
    .trust-metrics {
        grid-template-columns: 1fr;
    }

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

    .process-card .process-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 0.85rem;
    }

    .testimonial-slider-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-track {
        min-height: 430px;
    }

    .testimonial-author {
        align-items: flex-start;
        width: 100%;
        border-radius: 20px;
    }
}
