/* Banner Background */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}



/* Hero styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero-container {
    max-width: 800px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-align: left;
}

.title-line {
    display: block;
    font-weight: 400;
    font-size: 60px;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    text-align: left;
}

.hero-cta {
    display: flex;
    justify-content: left;
}

.cta-button {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Main content styles */
main {
    padding: 10rem 2rem;
    color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
    max-width: 800px;
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    main {
        padding: 5rem 1rem;
    }
}

@media (max-width: 480px) {
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}

.services, .about, .cases, .features, .faq, .contact {
    margin: 0px 25px;
}

/* Services Section Styles */
.services {
    background: white;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-bottom: 80px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 60px;
}

.services-header {
    position: relative;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: black;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:hover {
    background: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.service-number {
    font-size: 70px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    margin: 0;
    min-width: 2rem;
    flex-shrink: 0;
    line-height: 1.2;
    padding-top: 0.1rem;
}

.service-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 4rem;
}

.service-name {
    font-size: 40px;
    font-weight: 400;
    color: black;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.3s ease;
}

.service-arrow {
    color: black;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.service-item:hover .service-arrow {
    transform: translate(2px, -2px);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: block;
    visibility: hidden;
}

.service-item.active .service-content {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.service-description {
    padding: 0 0 1.5rem 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.service-details {
    padding: 0 0 2.5rem 0;
}

.service-details p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.service-features {
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.service-features li {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-features li:hover {
    color: rgba(0, 0, 0, 0.9);
}

.service-features li:hover::before {
    transform: translateX(2px);
}

/* Animation for service items on scroll */
.service-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.animate:nth-child(1) { transition-delay: 0.1s; }
.service-item.animate:nth-child(2) { transition-delay: 0.2s; }
.service-item.animate:nth-child(3) { transition-delay: 0.3s; }
.service-item.animate:nth-child(4) { transition-delay: 0.4s; }

.service-item.animate .service-content {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.service-item.animate .service-arrow {
    transform: translate(2px, -2px);
    transition: transform 0.6s ease;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }
    
    .services-container {
        gap: 2rem;
    }
    
    .service-item {
        gap: 1.5rem;
    }
    
    .service-header {
        padding: 1.5rem 0;
    }
    
    .service-name {
        font-size: 1.25rem;
    }
    
    .service-description {
        padding: 0 0 1.5rem 0;
        font-size: 1rem;
    }
    
    .service-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 1rem;
    }
    
    .service-item {
        gap: 1rem;
    }
    
    .service-header {
        padding: 1rem 0;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-description {
        padding: 0 0 1rem 0;
        font-size: 0.95rem;
    }
    
    .service-number {
        font-size: 1.1rem;
        min-width: 1.5rem;
    }
}

/* About Us Section Styles */
.about {
    padding: 4rem 2rem;
    background: #f7f7f7;
    position: relative;
    z-index: 10;
    border-radius: 55px;
    overflow: hidden;
}

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

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    font-weight: 400;
}

.about-button {
    margin-top: 2rem;
}

/* From Uiverse.io by cssbuttons-io */ 
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.learn-more,
a.learn-more,
button.learn-more {
    position: relative;
    display: inline-block;
    width: 14rem;
    height: auto;
    text-decoration: none;
    cursor: pointer;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 3rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.learn-more:hover .circle {
    width: 100%;
}

.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
    color: #fff;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    height: 400px;
}

.card-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.card-dot:nth-child(2) {
    background: #ffbd2e;
}

.card-dot:nth-child(3) {
    background: #28ca42;
}

.card-content {
    padding: 2rem 1.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.5rem;
    display: block;
}

.code-line.indent {
    padding-left: 2rem;
}

.code-keyword {
    color: #ff79c6;
    font-weight: 600;
}

.code-variable {
    color: #8be9fd;
}

.code-operator {
    color: #f8f8f2;
}

.code-string {
    color: #f1fa8c;
}

.code-bracket {
    color: #f8f8f2;
}

.code-method {
    color: #50fa7b;
}

/* Responsive Design for About */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 2rem;
    }
    .title-line{
        font-size: 3.0rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .about-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card-content {
        font-size: 0.8rem;
        padding: 1.5rem 1rem;
    }
}

/* Contact CTA Section Styles */
.contact-cta {
    padding: 8rem 2rem;
    background: #fff;
    position: relative;
    z-index: 10;
}

.contact-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 100%;
}

.title-text {
    display: inline;
    white-space: nowrap;
    margin-right: 0.5em;
}

.title-text:last-child {
    margin-right: 0;
    margin-left: 0.5em;
}

.changing-word {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    position: relative;
    min-width: 500px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    white-space: nowrap;
    margin: 0 0.3em;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.changing-word::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.changing-word:hover::before {
    opacity: 0.2;
}

.changing-word::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.changing-word:hover::after {
    transform: scaleX(1);
}

.contact-cta-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 3rem 0;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    padding: 1rem 2rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.contact-icon {
    font-size: 1.2rem;
}

/* Portfolio Section Styles */
.portfolio {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
}

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

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.portfolio-title-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-title {
    font-size: 60px;
    font-weight: 400;
    color: black;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

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

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: #e9ecef;
}

.portfolio-all-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-all-link:hover {
    color: #666;
}

.portfolio-all-link span {
    font-size: 1rem;
}

.portfolio-slideshow {
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    overflow: hidden;
    width: 100%;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.portfolio-item {
    flex: 0 0 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .project-image {
    transform: scale(1.05);
}

.project-placeholder {
    text-align: center;
    color: #666;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.project-time {
    color: #999;
        font-size: 0.85rem;
    font-weight: 400;
}

.project-categories {
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
}

.project-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.project-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    transition: left 0.6s ease;
}

.project-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.portfolio-item:hover .project-arrow {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.portfolio-item:hover .project-arrow::before {
    left: 100%;
}

.portfolio-item:hover .project-arrow::after {
    width: 40px;
    height: 40px;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 8rem 2rem;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

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

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

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

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

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-2px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* Features Section Styles */
.features {
    padding: 4rem 2rem;
    background: #1a1a1a;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 55px;
}

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

.features-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-title {
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
}

.features-subtitle {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.features-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.features-icon svg {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin-top: 2rem;
}

.feature-card:nth-child(1),
.feature-card:nth-child(2) {
    grid-row: 1;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-row: 2;
}

.feature-card:nth-child(1) {
    grid-column: 2;
}

.feature-card:nth-child(2) {
    grid-column: 3;
}

.feature-card:nth-child(3) {
    grid-column: 1;
}

.feature-card:nth-child(4) {
    grid-column: 2;
}

.feature-card:nth-child(5) {
    grid-column: 3;
}

.feature-card {
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: #ff6b6b;
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        grid-row: 1;
    }
    
    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        grid-row: 2;
    }
    
    .feature-card:nth-child(5) {
        grid-row: 3;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 2rem;
    }
    
    .features-content {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .feature-card:nth-child(n) {
        grid-row: auto;
        grid-column: 1;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.25rem;
        margin-left: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
}

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

.process-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.process-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.tech-orbit:hover .tech-logos {
    animation-play-state: paused;
}

.tech-orbit:hover .tech-logo {
    animation-play-state: paused;
}

.tech-orbit:hover .orbit-line {
    animation-play-state: paused;
}

.central-user {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.user-icon {
    font-size: 2rem;
    color: #4a4a4a;
}

.tech-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tech-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: counter-orbit 20s linear infinite;
}

@keyframes counter-orbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.logo-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.tech-logo svg {
    width: 24px;
    height: 24px;
}

/* Position tech logos in perfect 8-point circle */
.tech-logo.react { 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}
.tech-logo.node { 
    top: 25%; 
    right: 0; 
    transform: translateY(-50%); 
}
.tech-logo.wordpress { 
    top: 50%; 
    right: 0; 
    transform: translateY(-50%); 
}
.tech-logo.mysql { 
    bottom: 25%; 
    right: 0; 
    transform: translateY(50%); 
}
.tech-logo.aws { 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}
.tech-logo.laravel { 
    bottom: 25%; 
    left: 0; 
    transform: translateY(50%); 
}
.tech-logo.figma { 
    top: 50%; 
    left: 0; 
    transform: translateY(-50%); 
}
.tech-logo.docker { 
    top: 25%; 
    left: 0; 
    transform: translateY(-50%); 
}

.orbit-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border: 2px dashed #ddd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rotate-dash 10s linear infinite;
}

@keyframes rotate-dash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 20;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 8rem 0;
    background: white;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

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

.faq-header {
    text-align: left;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 70px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    border-color: #1a1a1a;
    background: #fafafa;
}

.faq-question {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1a1a1a;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    width: 3px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: #1a1a1a;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(0deg) scale(1);
    font-size: 1.2rem;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg) scale(1.1);
    color: #1a1a1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
/* Contact Section Styles */
.contact {
    padding: 5rem 0;
    background: white;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.contact-bubble {
    position: absolute;
    top: 2rem;
    right: 0;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid white;
}

.contact-form-section {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

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

.form-row {
    display: flex;
    gap: 2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-group {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
    flex: 1;
}

.message-group .form-input {
    flex: 1;
    min-width: 300px;
}

.form-label {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus {
    border-bottom-color: #333;
}

.form-input::placeholder {
    color: transparent;
}

.message-input {
    resize: vertical;
    min-height: 100px;
    border-bottom: 2px solid #1a1a1a;
    padding: 0.5rem 0;
    font-family: inherit;
}

.submit-button {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submit-button:hover {
    background: #333;
    transform: scale(1.05);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.contact-alternative {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.alternative-text {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
}

.email-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-bubble {
        position: static;
        align-self: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-item,
    .testimonial-item {
        margin: 0 1rem;
    }

    .faq-title {
        font-size: 2rem;
    }
    
    .contact {
        padding: 4rem 1rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .message-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .message-group .form-input {
        min-width: auto;
    }
    
    .submit-button {
        align-self: flex-end;
    }
}

/* Cases Section Styles */
.cases {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.cases-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 1.5rem;
    padding: 0 25px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cases-title-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cases-title {
    font-size: 70px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.all-articles-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.all-articles-link:hover {
    color: #666;
}

/* Cases Showcase - Horizontal Scrollable Row */
.cases-showcase {
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 0 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.cases-showcase::-webkit-scrollbar {
    display: none;
}

.cases-showcase::-webkit-scrollbar-track {
    background: transparent;
}

.cases-showcase::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.cases-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.case-item {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.case-item:nth-child(1) { animation-delay: 0.1s; }
.case-item:nth-child(2) { animation-delay: 0.2s; }
.case-item:nth-child(3) { animation-delay: 0.3s; }
.case-item:nth-child(4) { animation-delay: 0.4s; }
.case-item:nth-child(5) { animation-delay: 0.5s; }
.case-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.case-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.case-item:hover .case-bg-image {
    transform: scale(1.1);
}

.case-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: background 0.6s ease;
}

.case-item:hover .case-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.case-content-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    padding-top: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.case-item:hover .case-content-overlay {
    transform: translateY(-5px);
}

.case-category-label {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-item:hover .case-category-label {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.case-title {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-top: 120px;
}

.case-item:hover .case-title {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.case-description {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 90%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-item:hover .case-description {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.case-meta {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    opacity: 0.95;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-item:hover .case-meta {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.case-time,
.case-category {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    transition: background 0.6s ease, transform 0.6s ease;
}

.case-item:hover .case-time,
.case-item:hover .case-category {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(0);
}

.case-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    display: inline-block;
    align-self: flex-start;
    position: relative;
}

.case-item:hover .case-link {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* URL link that appears on hover */
.case-url-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    transform: translateY(10px);
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 6px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 10;
    letter-spacing: 0.02em;
}

.case-item:hover .case-url-link {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.case-url-link:hover {
    transform: translateY(-2px);
}

.case-url-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.case-url-link:hover::after {
    transform: translateX(3px);
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    position: relative;
}

.logo-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.logo-w {
    background: #00d4aa;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.logo-wp {
    background: #21759b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.separator {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}

.cybersecurity {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.hex-pattern {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, #00d4ff 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, #ff6b6b 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, #4ecdc4 2px, transparent 2px);
    background-size: 30px 30px, 25px 25px, 35px 35px;
    opacity: 0.8;
}

.geometric {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.geometric-shapes {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.cloudflare {
    background: #f8f9fa;
}

.wave-pattern {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 15px 15px;
    background-position: 0 0, 0 7.5px, 7.5px -7.5px, -7.5px 0px;
    opacity: 0.6;
}


/* Responsive Design for Cases */
@media (max-width: 1024px) {
    .case-item {
        width: 350px;
        height: 400px;
    }
    
    .cases-showcase {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cases {
        padding: 4rem 0;
    }
    
    .cases-header {
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }
    
    .cases-title {
        font-size: 2.5rem;
    }
    
    .cases-showcase {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .case-item {
        width: 320px;
        height: 380px;
    }
    
    .case-content-overlay {
        padding: 1.5rem;
        padding-top: 2.5rem;
    }
    
    .case-title {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        margin-bottom: 1rem;
        margin-top: 100px;
    }
    
    .case-description {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .case-meta {
        gap: 0.5rem;
        margin-bottom: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-time,
    .case-category {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
    
    .case-link {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cases-header {
        padding: 0 1rem;
    }
    
    .cases-title {
        font-size: 2rem;
    }
    
    .cases-showcase {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .case-item {
        width: 280px;
        height: 350px;
    }
    
    .case-content-overlay {
        padding: 1.25rem;
        padding-top: 2rem;
    }
    
    .case-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        margin-top: 90px;
    }
    
    .case-description {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .case-link {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Blog Section Styles - Similar to Cases */
.blog {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.blog-title-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog-title {
    font-size: 70px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.blog-showcase {
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 0 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.blog-showcase::-webkit-scrollbar {
    height: 8px;
}

.blog-showcase::-webkit-scrollbar-track {
    background: transparent;
}

.blog-showcase::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.blog-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.blog-item {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.blog-item:nth-child(1) { animation-delay: 0.1s; }
.blog-item:nth-child(2) { animation-delay: 0.2s; }
.blog-item:nth-child(3) { animation-delay: 0.3s; }
.blog-item:nth-child(4) { animation-delay: 0.4s; }

.blog-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-item:hover .blog-bg-image {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: background 0.6s ease;
}

.blog-item:hover .blog-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.blog-content-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    padding-top: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-item:hover .blog-content-overlay {
    transform: translateY(-5px);
}

.blog-category-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.blog-title-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.6s ease;
    margin-top: 70px;
}

.blog-item:hover .blog-title-text {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.blog-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 90%;
}

.blog-meta {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    opacity: 0.95;
    transition: opacity 0.6s ease;
}

.blog-item:hover .blog-meta {
    opacity: 1;
}

.blog-time,
.blog-date {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    transition: background 0.6s ease, transform 0.6s ease;
}

.blog-item:hover .blog-time,
.blog-item:hover .blog-date {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0.9;
    display: inline-block;
    align-self: flex-start;
}

.blog-item:hover .blog-link {
    transform: translateX(5px);
    opacity: 1;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-title {
        font-size: 40px;
    }
    
    .blog-item {
        width: 300px;
        height: 400px;
    }
    
    .blog-title-text {
        font-size: 1.25rem;
        margin-top: 50px;
    }
    
    .blog-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .blog-link {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Digital Impact Section Styles */
.digital-impact {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
}

.digital-impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.digital-impact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.digital-impact-header > * {
    flex: 0 0 auto;
}

.digital-impact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    text-transform: lowercase;
}

.digital-impact-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 400;
    max-width: 500px;
}

.digital-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.impact-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.impact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.impact-card-title {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin: 0 0 1rem 0;
    text-transform: lowercase;
    text-align: left;
}

.impact-metric {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin: 1rem 0;
    text-align: center;
}

.impact-separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 1rem 0;
}

.impact-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 400;
    text-align: center;
    margin-top: 0.5rem;
}

.impact-card.image-card {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.impact-card.image-card .image-placeholder {
    background: #e9ecef;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 4px;
    padding: 2rem;
}

.image-placeholder svg {
    color: #6c757d;
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

.impact-card.empty-card {
    background: white;
}

/* Client Stories Section Styles */
.client-stories {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
}

.client-stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.client-stories-header {
    margin-bottom: 4rem;
}

.client-stories-title {
    font-size: 70px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.client-stories-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 400;
}

/* Infinite Scroll Testimonials */
.testimonials-infinite-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 30s linear infinite;
    will-change: transform;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.client-testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    width: 400px;
    min-width: 400px;
}

.client-testimonial-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.client-testimonial-content {
    margin-bottom: 2rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    font-size: 1.2rem;
    color: #000;
    line-height: 1;
}

.client-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 400;
    position: relative;
}

.client-testimonial-text.truncated {
    max-height: 4.8em; /* ~3 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.client-testimonial-text.expanded {
    max-height: none;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    display: inline-block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
}

.read-more-btn:hover {
    color: #000;
    text-decoration: underline;
}

.read-more-btn::after {
    content: ' ▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.client-testimonial-text.expanded + .read-more-btn::after {
    transform: rotate(180deg);
}

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

.author-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar-placeholder::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #adb5bd;
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.company-logo {
    margin-left: auto;
}

.company-logo svg text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Responsive Design for Digital Impact and Client Stories */
@media (max-width: 1024px) {
    .digital-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .client-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .digital-impact,
    .client-stories {
        padding: 4rem 0rem;
        margin: 0px 25px;
    }
    
    .digital-impact-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .digital-impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-metric {
        font-size: 3rem;
    }
    
    .client-testimonial-item {
        width: 320px;
        min-width: 320px;
        padding: 1.5rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .digital-impact-title,
    .client-stories-title {
        font-size: 2rem;
    }
    
    .impact-metric {
        font-size: 2.5rem;
    }
    
    .client-stories .testimonial-text {
        font-size: 1rem;
    }
    
    .client-testimonial-item {
        width: 280px;
        min-width: 280px;
        padding: 1.25rem;
    }
    
    .testimonials-track {
        gap: 1rem;
        animation-duration: 20s;
    }
    
    .testimonials-infinite-scroll {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
}

/* Case Modal Styles - Modern & Minimalistic */
.case-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    pointer-events: none;
}

.case-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.case-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.case-modal-container {
    position: relative;
    z-index: 10000;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.case-modal.active .case-modal-container {
    transform: translateY(0) scale(1);
}

.case-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.case-modal-close:hover {
    background: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.case-modal-content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.case-modal-content::-webkit-scrollbar {
    width: 6px;
}

.case-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.case-modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.case-modal-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #fafafa;
}

.case-modal-image .modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-modal-body {
    padding: 3.5rem 3rem;
    color: #1a1a1a;
}

.modal-category-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-case-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 1.25rem 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-case-description {
    font-size: 1.125rem;
    color: #555;
    margin: 0 0 2.5rem 0;
    line-height: 1.65;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-case-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-case-time,
.modal-case-category {
    font-size: 0.7rem;
    font-weight: 500;
    color: #777;
    padding: 0.35rem 0.85rem;
    background: #f8f8f8;
    border-radius: 16px;
    letter-spacing: 0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-case-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-case-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 3rem 0 1.25rem 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.modal-case-content h3:first-child {
    margin-top: 0;
}

.modal-case-content p {
    margin: 0 0 1.5rem 0;
    color: #4a4a4a;
    font-weight: 400;
}

.modal-case-content ul {
    margin: 0 0 2rem 0;
    padding-left: 0;
    list-style: none;
}

.modal-case-content li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

.modal-case-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #999;
    font-weight: 300;
}

.modal-case-content li strong {
    color: #000;
    font-weight: 600;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .case-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .case-modal-image {
        height: 200px;
    }
    
    .case-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-category-label {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }
    
    .modal-case-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .modal-case-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-case-meta {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .modal-case-content {
        font-size: 0.95rem;
    }
    
    .modal-case-content h3 {
        font-size: 1.25rem;
        margin: 2rem 0 0.75rem 0;
    }
    
    .case-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }
}


