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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo span:first-child {
    color: #dc2626;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #111827;
}

.nav-links .btn-nav {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 0.6rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.nav-links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

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

/* Hero Section */
.hero {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero h1 span {
    color: #dc2626;
}

.hero p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: #111827;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    border-color: #9ca3af;
}

.hero-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-image-wrapper {
    inset: 0;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 1.5rem;
    transform: rotate(-3deg);
}

.laptop-mockup {
    position: relative;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.laptop-mockup img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.stats .stat-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.stats .stat-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(220, 38, 38, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(220, 38, 38, 0.15));
}

.stats .stat-label {
    color: #4b5563;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.stats .about-text {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.stats .about-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats .about-text p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #111827 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 10;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.services .service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.services .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(220, 38, 38, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.services .service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: transform 0.4s ease;
}

.services .service-card:hover .service-icon {
    transform: scale(1.1) translateZ(10px);
}

.services .service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.services .service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.services .service-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #111827 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 10;
}

.portfolio .portfolio-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.portfolio .portfolio-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.portfolio .portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(220, 38, 38, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.portfolio .portfolio-mockup {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.portfolio .portfolio-item:hover .portfolio-mockup {
    transform: translateZ(20px) scale(1.02);
}

.portfolio .portfolio-mockup .laptop-mockup {
    aspect-ratio: unset;
    height: auto;
    border-radius: 1rem;
}

.portfolio .portfolio-mockup .laptop-mockup img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    border-radius: 1rem;
}

.portfolio .portfolio-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #111827;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.portfolio .portfolio-item .category {
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.portfolio .portfolio-item p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.portfolio-cta {
    margin-top: 3.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-portfolio-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 9999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-portfolio-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(220, 38, 38, 0.35);
}

.btn-portfolio-more svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-portfolio-more:hover svg {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: #f9fafb;
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto;
}

.process-timeline {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
    padding-left: 0.5rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    bottom: 1.75rem;
    left: 2.25rem;
    width: 2px;
    background: linear-gradient(180deg, #dc2626 0%, #fca5a5 50%, #dc2626 100%);
    border-radius: 2px;
}

.process-step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1.25rem;
    align-items: start;
    position: relative;
    padding-bottom: 2rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step__marker {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.process-step__number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #dc2626;
}

.process-step__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #ffffff;
    border: 2px solid #fee2e2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.12);
    transition: all 0.3s ease;
}

.process-step__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.process-step__card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover .process-step__icon {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.05);
}

.process-step:hover .process-step__icon svg {
    color: #ffffff;
}

.process-step:hover .process-step__card {
    border-color: #fee2e2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.process-step__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step__card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .process-timeline {
        max-width: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-left: 0;
    }

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

    .process-step {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .process-step__marker {
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .process-step__number {
        order: 2;
        margin-left: auto;
        font-size: 0.8125rem;
    }
}

@media (min-width: 1024px) {
    .process {
        padding: 5rem 0;
    }

    .process-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
        align-items: start;
    }

    .process-timeline::before {
        display: block;
        top: 3.25rem;
        bottom: auto;
        left: 8%;
        right: 8%;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, #fee2e2 0%, #dc2626 20%, #dc2626 80%, #fee2e2 100%);
    }

    .process-step {
        text-align: center;
    }

    .process-step__marker {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.25rem;
    }

    .process-step__number {
        order: 0;
        margin-left: 0;
    }

    .process-step__card {
        min-height: 9.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.testimonials-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.testimonials-rating__text {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    color: #f59e0b;
}

.testimonial-stars svg {
    width: 1.125rem;
    height: 1.125rem;
}

.testimonial-stars--small svg {
    width: 0.875rem;
    height: 0.875rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #fee2e2;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.testimonial-card--featured {
    border-color: #fecaca;
    background: #fffbfb;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
}

.testimonial-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    width: 2rem;
    height: 2rem;
    color: #fee2e2;
    flex-shrink: 0;
}

.testimonial-text {
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.testimonial-text p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 0 0;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    background: transparent;
    color: inherit;
}

.testimonial-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar--accent {
    background: #dc2626;
    color: #ffffff;
}

.testimonial-author__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.testimonial-name {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #111827;
}

.testimonial-role {
    color: #6b7280;
    font-size: 0.8125rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        align-items: center;
    }

    .testimonial-card--featured {
        transform: scale(1.04);
        z-index: 1;
    }

    .testimonial-card--featured:hover {
        transform: scale(1.04) translateY(-4px);
    }
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 5rem 0;
    }

    .testimonials-header {
        margin-bottom: 3.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #f9fafb;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto;
}

.faq-container {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    border-color: #fecaca;
}

.accordion-item.active {
    border-color: #fecaca;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #fffbfb;
}

.accordion-item.active .accordion-header {
    background: #fffbfb;
}

.accordion-header__content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.accordion-step {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #dc2626;
    padding-top: 0.2rem;
}

.accordion-question {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}

.accordion-icon-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.accordion-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon-wrap {
    background: #dc2626;
}

.accordion-item.active .accordion-icon {
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-content__inner {
    overflow: hidden;
}

.accordion-content__inner p {
    color: #6b7280;
    line-height: 1.75;
    padding: 0 1.5rem 1.5rem 3.5rem;
}

.faq-cta {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta p {
    color: #6b7280;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .faq {
        padding: 5rem 0;
    }

    .faq-header {
        margin-bottom: 3.5rem;
    }

    .accordion-question {
        font-size: 1.0625rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: #ffffff;
}

.cta-container {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-white {
    background: white;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f9fafb;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-white svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-white:hover svg {
    transform: translateX(4px);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -15%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #111827 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 10;
}

.contact .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact .contact-form,
.contact .contact-info {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.contact .contact-form:hover,
.contact .contact-info:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 25px 50px rgba(220, 38, 38, 0.06),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

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

.contact .form-group {
    display: flex;
    flex-direction: column;
}

.contact .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.contact .form-group input,
.contact .form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(209, 213, 219, 0.8);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.contact .form-group input:focus,
.contact .form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #dc2626;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.contact .contact-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact .contact-info p {
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact .contact-info p strong {
    color: #111827;
}

.contact .contact-map {
    width: 100%;
    height: 16rem;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    margin-top: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.contact .contact-map:hover {
    transform: scale(1.02);
}

.contact .contact-map iframe {
    border-radius: 0 !important;
}

/* Footer */
.site-footer {
    background: linear-gradient(160deg, #0f172a 0%, #111827 50%, #1a0a0a 100%);
    color: #9ca3af;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-section h3 {
    color: #f9fafb;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-section:first-child h3 {
    font-size: 1.75rem;
    text-transform: none;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 28rem;
}

.footer-brand-tagline {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.45rem 1.1rem;
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-section ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section ul li a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: #dc2626;
}

.footer-section ul li a:hover {
    color: #f9fafb;
    padding-left: 4px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f3f4f6;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #9ca3af !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #f87171 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.4);
    padding: 1.75rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-bottom-inner strong {
    color: #e5e7eb;
    font-weight: 700;
}

.footer-bottom-sep {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1;
}

/* Hero Text Only Variant */
.hero-text-only {
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-text-only .hero-bg-left {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text-only .hero-bg-right {
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text-only .container {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-text-only .hero-badge {
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.hero-text-only h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #111827;
    letter-spacing: -0.02em;
}

.hero-text-only p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-only .cta-buttons {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-text-only .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.3);
}

.hero-text-only .btn-secondary {
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: #e5e7eb;
}

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

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

}