@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --site-padding: 2rem;
}
@media (max-width: 768px) {
    :root {
        --site-padding: 1.2rem;
    }
}

*{
    border-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Manrope', sans-serif;
    background-color: #000000;
    color: #ffffff;
    padding-top: 80px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform: translateY(0);
}

header.nav-hidden {
    transform: translateY(-100%);
}

header.nav-visible {
    transform: translateY(0);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
ul{
    display: flex;
}
li{
    list-style: none;
    text-decoration: none;
    color: #9ca3af;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
li a{
    text-decoration: none;
    color: #9ca3af;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}
li a:hover{
    color: #FFEACD;
}
.get-in-touch{
    border: 1px solid #FFEACD;
    background-color: transparent;
    color: #FFEACD;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.get-in-touch a{
    font-weight: 600;
    color: #FFEACD;
    display: flex;
    align-items: center;
    gap: 8px;
}
.get-in-touch svg {
    transition: transform 0.3s ease;
}
.get-in-touch:hover svg {
    transform: translateX(4px);
}
.get-in-touch:hover{
    background-color: #FFEACD;
    color: #000000;
}
.get-in-touch:hover a{
    color: #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 3rem 2rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 120px rgba(255, 234, 205, 0.9);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 234, 205, 0.1) 0%, transparent 10%);
    pointer-events: none;
}

.hero button {
    background-color: #FFEACD;
    color: #000000;
    border: 1px solid #FFEACD;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero button:hover {
    background-color: #f0d8b8;
    color: #000000;
    transform: translateY(-2px);
}

.hero button.secondary {
    border: none;
    background-color: transparent;
    color: white;
}

.hero button.secondary:hover {
    background-color: transparent;
    color: #FFEACD;
    border-color: #FFEACD;
}

.hero button svg {
    transition: transform 0.3s ease;
}

.hero button:hover svg {
    transform: translateX(4px);
}

.hero-profile {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFEACD;
    box-shadow: 0 8px 32px rgba(255, 234, 205, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 234, 205, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
}

.trusted-by {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-by-title {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.trusted-by-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    padding: 1rem 0;
}

.trusted-by-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.trusted-by-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.trusted-by-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

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

/* Pause animation on hover */
.trusted-by-carousel:hover .trusted-by-track {
    animation-play-state: paused;
}

.case-studies {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
}

.case-studies-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.case-studies-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.case-studies-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2.5rem;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    padding-bottom: 2.5rem;
    position: relative;
}

.case-study-card-image {
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    background: none;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-study-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    background: #111111;
    border: 1px solid #222222;
    padding: 1rem;
    box-sizing: border-box;
}

.case-study-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.5rem 0 0;
}

.case-study-card-content h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}
.case-study-card-content p{
    color: #b8b8b8;
}
.case-study-badge {
    border: 1px solid #ffeacd;
    color: #ffeacd;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.3em 1.2em;
    margin-left: 1em;
    letter-spacing: 0.01em;
    display: inline-block;
}

.case-study-card-content p {
    color: #b8b8b8;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    text-align: left;
}

.case-study-card-button {
    background: none;
    text-decoration: underline;
    color: white;
    border: none;
    border-radius: 30px;

    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .case-studies {
        padding: 0 1rem;
    }
    .case-study-card-image img {
        height: 200px;
    }
    .case-study-card-content {
        padding: 1.5rem 1rem 0 1rem;
    }
}

.case-study {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 0;
}

.case-study-image {
    flex: 1;
    height: auto;
    min-height: 300px;
    align-self: stretch;
    background: #F8F8F8 !important;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    color: #FFEACD;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding: 2rem !important;
}
.case-study-image img {
    margin-left: 2rem;
    margin-right: 2rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.case-study-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.case-study-title {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-study-date {
    font-size: 0.7rem !important;
    color: #fff !important;
    margin-bottom: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 0;
    align-self: flex-start !important;
    text-align: left !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content;
    display: block;
}

.case-study-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.case-study-button {
    background-color: #FFEACD;
    color: #181818;
    border: 1.5px solid #FFEACD;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px 0 rgba(255,234,205,0.08);
    margin-bottom: 1.5rem;
    width: auto;
    min-width: 0;
    align-self: flex-start;
}

.case-study-button:hover {
    background-color: #fff;
    color: #181818;
    border-color: #FFEACD;
    transform: translateY(-2px) scale(1.04);
 
}

.case-study-button svg {
    transition: transform 0.3s ease;
}

.case-study-button:hover svg {
    transform: translateX(4px);
}

.case-study-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FFEACD 0%, #181818 100%);
    opacity: 0.3;
    margin: 2.5rem 0 2rem 0;
    border: none;
}

.testimonial-card {
    background: #181818;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 600px;
}
.testimonial-card .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.testimonial-card .testimonial-content {
    flex: 1;
}
.testimonial-card .testimonial-quote {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.testimonial-card .testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #FFEACD;
}
.testimonial-card .testimonial-role {
    font-size: 0.9rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .case-study {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    .case-study-image {
        width: 100%;
        height: 150px;
        justify-content: center;
        align-items: center;
    }
    .case-study-image img {
        margin-left: auto;
        margin-right: auto;
    }
    .case-study-content {
        text-align: left !important;
    }
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonial-card .testimonial-avatar {
        margin: 0 0 1rem 0;
    }
}

/* Let's Chat Section */
.lets-chat {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #000000;
}

.lets-chat-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lets-chat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.lets-chat-subheader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.lets-chat-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.lets-chat-title + .lets-chat-title {
    margin-top: 0.1em;
    margin-bottom: 2.5rem;
}

.lets-chat-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.lets-chat-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.lets-chat-button {
    background-color: #FFEACD;
    color: #000000;
    border: 1px solid #FFEACD;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lets-chat-button:hover {
    background-color: #f0d8b8;
    color: #000000;
    transform: translateY(-2px);
}

.lets-chat-button.secondary {
    border: 1px solid #FFEACD;
    background-color: transparent;
    color: #FFEACD;
}

.lets-chat-button.secondary:hover {
    background-color: #FFEACD;
    color: #000000;
}

.lets-chat-button svg {
    transition: transform 0.3s ease;
}

.lets-chat-button:hover svg {
    transform: translateX(4px);
}

.calendly-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
}

.calendly-embed iframe {
    border-radius: 12px;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: #000000;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.services-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.service-card {
    background-color: #111111;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFEACD 0%, #f0d8b8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-card h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.18;
}

.service-card p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: #000000;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.testimonials-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.testimonials-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.testimonial-card-new {
    background-color: #111111;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.testimonial-card-new:hover::before {
    opacity: 1;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    border-color: #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-new {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar-new {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

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

.testimonial-role {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .lets-chat {
        padding: 4rem var(--site-padding);
    }
    
    .lets-chat-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lets-chat-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services {
        padding: 4rem var(--site-padding);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials {
        padding: 4rem var(--site-padding);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card-new {
        padding: 2rem 1.5rem;
    }
    .pricing-content {
        padding: 0 var(--site-padding);
    }
}

/* Process Section Styles */
.process {
    background: #000;
    padding: 6rem 2rem;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #fff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.18;
    padding-bottom: 0.3em;
}

.process-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #FFEACD 0%, rgba(255, 234, 205, 0.3) 100%);
    transform: translateX(-50%);
}

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

.process-step:nth-child(odd) {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.process-step:nth-child(even) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFEACD 0%, #f0d8b8 100%);
    color: #000;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 234, 205, 0.3);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.process-step-content {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222222;
    text-align: left;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.process-step-content h3 {
    color: #FFEACD;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step-content p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFEACD;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border: 1px solid #FFEACD;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.process-cta-link:hover {
    background: #FFEACD;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 234, 205, 0.3);
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 0;
    }
    
    .process-content {
        padding: 0 var(--site-padding);
    }
    
    .process-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .process-step {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .process-step-number {
        align-self: flex-start;
        margin-left: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step-content {
        width: 100%;
        padding: 1.5rem;
        margin-left: 0;
    }
    
    .process-title {
        font-size: clamp(2rem, 10vw, 2.7rem) !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }
}

.pulsing-dot {
    width: 1.2em;
    height: 1.2em;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 2rem;
}

.pulsing-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hero,
.case-studies,
.lets-chat,
.services,
.testimonials,
.pricing {
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    .hero,
    .case-studies,
    .lets-chat,
    .services,
    .testimonials {
        padding: 4rem var(--site-padding);
    }
    
    .pricing {
        padding: 4rem var(--site-padding);
    }
    
    .process {
        padding: 4rem var(--site-padding);
    }
}

.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #fff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    transition: color 0.2s, text-decoration 0.2s;
    position: relative;
}

.footer-link:hover {
    color: #FFEACD;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-social-icon {
    color: #fff;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 0.3rem;
}

.footer-social-icon:hover {
    color: #10b981;
    background: rgba(16,185,129,0.08);
    transform: scale(1.15);
}

.footer-copyright {
    color: #9ca3af;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    margin-top: 1.5rem;
    text-align: center;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-brand, .footer-social {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 1.5rem;
    }
    .footer-links {
        gap: 1rem;
    }
    .site-footer {
        padding: 2rem 1rem 1rem 1rem;
    }
}

/* Burger menu styles */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.mobile-nav a {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: #FFEACD;
}
.close-mobile-nav {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1002;
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }
    .burger {
        display: flex;
    }
    .get-in-touch {
        display: none !important;
    }
    .mobile-nav .get-in-touch {
        display: block !important;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    body {
        font-size: 1rem;
    }
    h1, .hero h1, .lets-chat-title, .services-title, .testimonials-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        line-height: 1.1;
    }
    h2, .services-title, .testimonials-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    h3, .service-card h3, .case-study-card-content h3 {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    p, .hero p, .lets-chat-text, .services-subtitle, .testimonials-subtitle {
        font-size: clamp(0.98rem, 3vw, 1.08rem);
    }
    .site-footer, .hero, .case-studies, .lets-chat, .services, .testimonials {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    .footer-content {
        padding-left: 0;
        padding-right: 0;
    }
    .lets-chat-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.2em;
        margin: 0;
        padding: 0;
    }
    .lets-chat-title,
    .hero h1,
    .services-title,
    .testimonials-title,
    .case-study-title {
        font-size: clamp(2rem, 10vw, 2.7rem) !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }
    .case-study-title {
        font-size: clamp(1rem, 6vw, 1.4rem) !important;
        line-height: 1.12 !important;
        font-weight: 700 !important;
    }
}

.burger.hide {
    display: none !important;
}

header,
.hero,
.case-studies,
.lets-chat,
.services,
.testimonials,
.pricing,
.site-footer {
    padding-left: var(--site-padding);
    padding-right: var(--site-padding);
}

.site-footer {
    padding-bottom: 2rem;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding-bottom: 1rem;
        padding-top: 2rem;
    }
}

.case-study,
.case-study-content,
.case-study-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Main title scaling for all major titles */
h1, .hero h1, .lets-chat-title, .services-title, .testimonials-title, .pricing-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.case-study-title {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .lets-chat-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.2em;
        margin: 0;
        padding: 0;
    }
    .lets-chat-title,
    .hero h1,
    .services-title,
    .testimonials-title,
    .pricing-title {
        font-size: clamp(2rem, 10vw, 2.7rem) !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
    }
    .case-study-title {
        font-size: clamp(1rem, 6vw, 1.4rem) !important;
        line-height: 1.12 !important;
        font-weight: 700 !important;
    }
}

.pricing {
    background: #000;
    padding: 6rem 2rem;
}
.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.pricing-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #fff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.18;
    padding-bottom: 0.3em;
    overflow: visible;
}
.pricing-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
.pricing-card {
    background-color: #111111;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 500px;
    gap: 3rem;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.pricing-gradient-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at right center, rgba(255, 234, 205, 0.15) 0%, rgba(255, 234, 205, 0.08) 30%, rgba(255, 234, 205, 0.04) 60%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFEACD' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    transition: all 0.3s ease;
    z-index: 1;
}

.pricing-card:hover .pricing-gradient-bg {
    background: 
        radial-gradient(circle at right center, rgba(255, 234, 205, 0.25) 0%, rgba(255, 234, 205, 0.12) 40%, rgba(255, 234, 205, 0.06) 70%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFEACD' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pricing-content-left {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pricing-content-right {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}



.pricing-cta-button {
    background: #000000;
    color: #FFEACD;
    border: 2px solid #FFEACD;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.pricing-cta-button.mobile-only {
    display: none;
}

.pricing-cta-button:hover {
    background: #FFEACD;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 234, 205, 0.4);
}

.pricing-cta-button svg {
    transition: transform 0.3s ease;
}

.pricing-cta-button:hover svg {
    transform: translateX(4px);
}

.pricing-card ul.pricing-features {
    flex: 1 1 auto;
    margin-bottom: 2rem;
}
.pricing-features {
    color: #9ca3af;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    padding-left: 0rem;
    line-height: 1.7;
    display: block;
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
}
.pricing-features li {
    display: block;
    margin-bottom: 0.5em;
    padding-left: 0;
    text-indent: 0;
}
.pricing-btn {
    background-color: #FFEACD;
    color: #181818;
    border: 1px solid #FFEACD;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin: 0 0 0.2rem 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    box-shadow: 0 2px 12px 0 rgba(255,234,205,0.08);
}
.pricing-btn:hover {
    background-color: #f0d8b8;
    color: #181818;
    transform: translateY(-2px);
}

.pricing-btn.accent-btn {
    border: 1px solid #FFEACD;
    background-color: transparent;
    color: #FFEACD;
    box-shadow: none;
}
.pricing-btn.accent-btn:hover {
    background-color: #FFEACD;
    color: #000000;
    transform: translateY(-2px);
}
.pricing-btn svg {
    transition: transform 0.3s ease;
}
.pricing-btn:hover svg {
    transform: translateX(4px);
}
.pricing-title {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: normal;
    line-height: 1.2;
    text-align: left;
    width: 100%;
}
.pricing-plan-starter {
    color: #FFEACD;
}
.pricing-price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.pricing-guarantee {
    color: #FFEACD;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.4;
    width: 100%;
}
.pricing-btn {
    background: #ffe0a3;
    color: #181818;
    transform: translateY(-2px) scale(1.04);
}
.pricing-card {
    min-height: 600px;
    padding: 2.7rem 2.2rem;
    gap: 1.2rem;
}
.pricing-features {
    margin-bottom: 2.2rem;
}

.pricing-alternative-text {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-top: 1rem;
    font-weight: 400;
    text-align: left;
    width: 100%;
}

.pricing-link {
    color: #FFEACD;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-link:hover {
    color: #f0d8b8;
    text-decoration: underline;
}

.service-bullets {
    list-style: disc outside;
    color: #9ca3af;
    font-size: 0.98rem;
    margin: 0.7em 0 0.2em 1.2em;
    padding: 0;
    line-height: 1.5;
}
.service-bullets li {
    margin-bottom: 0.2em;
}

@media (max-width: 768px) {
    .pricing {
        padding: 4rem var(--site-padding);
    }
    .pricing-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        gap: 2rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    .pricing-content-left {
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    .pricing-content-right {
        order: -1;
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }
    .pricing-gradient-bg {
        background: 
            radial-gradient(circle at center, rgba(255, 234, 205, 0.15) 0%, rgba(255, 234, 205, 0.08) 30%, rgba(255, 234, 205, 0.04) 60%, transparent 100%),
            url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFEACD' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .pricing-cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .pricing-cta-button.mobile-only {
        display: flex;
        margin: 1.5rem 0;
    }
    
    .pricing-content-right .pricing-cta-button {
        display: none;
    }
    .pricing-guarantee {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .pricing-features {
        max-width: 100%;
        font-size: 0.95rem;
        text-align: left;
    }
    .pricing-grid {
        gap: 1.5rem;
        justify-items: center;
        align-items: center;
    }
}

/* Resources Page Styles */
.resources-hero {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 234, 205, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 234, 205, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.resources-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 234, 205, 0.05), transparent);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.resources-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.resources-hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.resources-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.resources-hero button {
    background-color: #FFEACD;
    color: #000000;
    border: 1px solid #FFEACD;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resources-hero button:hover {
    background-color: #f0d8b8;
    color: #000000;
    transform: translateY(-2px);
}

.resources-hero button.secondary {
    border: none;
    background-color: transparent;
    color: white;
}

.resources-hero button.secondary:hover {
    background-color: transparent;
    color: #FFEACD;
    border-color: #FFEACD;
}

.resources-hero button svg {
    transition: transform 0.3s ease;
}

.resources-hero button:hover svg {
    transform: translateX(4px);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%231a1a1a" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 20px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.resources-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 234, 205, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 234, 205, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 234, 205, 0.01) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.resources-grid > * {
    position: relative;
    z-index: 1;
}

.resource-card {
    background-color: #111111;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 234, 205, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 234, 205, 0.02) 0%, transparent 50%);
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
}



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

.resource-card::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background: rgba(255, 234, 205, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 234, 205, 0.01) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 234, 205, 0.01) 50%, transparent 60%);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.resource-card .bg-pattern::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 234, 205, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 6s ease-in-out infinite;
}

.resource-card .bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 234, 205, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

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

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

.resource-card:hover::after {
    opacity: 1;
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.resource-card {
    --original-bg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFEACD;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23FFEACD;stop-opacity:0.05" /></linearGradient></defs><rect width="400" height="300" fill="url(%23grad1)"/><circle cx="50" cy="50" r="3" fill="%23FFEACD" opacity="0.3"/><circle cx="350" cy="80" r="2" fill="%23FFEACD" opacity="0.2"/><circle cx="80" cy="250" r="4" fill="%23FFEACD" opacity="0.15"/><path d="M 100 100 L 150 150 L 200 100" stroke="%23FFEACD" stroke-width="1" fill="none" opacity="0.2"/><path d="M 250 200 L 300 250 L 350 200" stroke="%23FFEACD" stroke-width="1" fill="none" opacity="0.2"/></svg>');
}

.resource-card.featured {
    grid-column: span 8;
    grid-row: span 3;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-color: #FFEACD;
    min-height: 400px;
}

.resource-card.featured-sidebar {
    grid-column: span 4;
    grid-row: span 3;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-color: #FFEACD;
    min-height: 400px;
}

.resource-card.large {
    grid-column: span 6;
    grid-row: span 3;
    min-height: 350px;
}

.resource-card.medium {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 250px;
}

.resource-card.small {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 200px;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource-card.featured .resource-title,
.resource-card.featured-sidebar .resource-title {
    font-size: 1.75rem;
}

.resource-card.large .resource-title {
    font-size: 1.5rem;
}

.resource-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-card.featured .resource-description,
.resource-card.featured-sidebar .resource-description {
    font-size: 1.1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFEACD;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

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

.resource-link svg {
    transition: transform 0.3s ease;
}

.resource-link:hover svg {
    transform: translateX(4px);
}

.resource-badge {
    display: inline-block;
    background: rgba(255, 234, 205, 0.1);
    color: #FFEACD;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .resource-card.featured {
        grid-column: span 8;
    }
    .resource-card.featured-sidebar {
        grid-column: span 8;
    }
    .resource-card.large {
        grid-column: span 4;
    }
    .resource-card.medium {
        grid-column: span 4;
    }
    .resource-card.small {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem var(--site-padding);
    }
    .resource-card.featured,
    .resource-card.featured-sidebar,
    .resource-card.large,
    .resource-card.medium,
    .resource-card.small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .resources-hero {
        padding: 3rem var(--site-padding) 1rem var(--site-padding);
    }
}

/* Resources link hover effect */
li a[href="#resources"] {
    position: relative;
}

li a[href="#resources"]::after {
    content: "coming soon";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.6;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

/* Guide Page Styles */
.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    min-height: 80vh;
    background-color: #000000;
}

.guide-header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222222;
}

.guide-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.guide-breadcrumb a {
    color: #FFEACD;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.guide-breadcrumb a:hover {
    color: #ffffff;
}

.guide-breadcrumb span {
    color: #666666;
}

.guide-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.guide-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.guide-meta {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.guide-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.guide-content {
    line-height: 1.6;
    font-size: 1rem;
}

.guide-section {
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #222222;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.18;
}

.guide-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #ffffff;
}

.guide-section p {
    margin-bottom: 1rem;
    color: #9ca3af;
    line-height: 2.0;
    font-size: 1rem;
}

.guide-section ul, .guide-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

.guide-section strong {
    color: #FFEACD;
    font-weight: 600;
}

.guide-tip {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-left: 3px solid #FFEACD;
    padding-left: 1.5rem;
}

.guide-warning {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-left: 3px solid #ef4444;
    padding-left: 1.5rem;
}

.guide-code {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    overflow-x: auto;
    border-left: 3px solid #333333;
    padding-left: 1.5rem;
}

.guide-code h4 {
    color: #FFEACD;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guide-code pre {
    margin: 0;
    color: #9ca3af;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.guide-code code {
    color: #9ca3af;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.guide-example {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-left: 3px solid #333333;
    padding-left: 1.5rem;
}

.guide-example h4 {
    color: #FFEACD;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guide-example pre {
    margin: 0;
    color: #9ca3af;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.guide-cta {
    padding: 2.5rem 0;
    margin: 3rem 0;
    text-align: center;
}

.guide-cta h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.18;
}

.guide-cta p {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guide-cta-button {
    border: 1px solid #FFEACD;
    background-color: transparent;
    color: #FFEACD;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.guide-cta-button:hover {
    background-color: #FFEACD;
    color: #000000;
}

.guide-cta-button svg {
    transition: transform 0.3s ease;
}

.guide-cta-button:hover svg {
    transform: translateX(4px);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

/* Mobile responsiveness for guides */
@media (max-width: 768px) {
    .guide-container {
        padding: 3rem var(--site-padding);
    }
    
    .guide-section {
        padding: 2rem 1.5rem;
    }
    
    .guide-code, .guide-example {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .guide-cta {
        padding: 2rem 1.5rem;
    }
}

/* Case Study Page Styles */
.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    min-height: 80vh;
    background-color: #000000;
}

.case-study-header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222222;
}

.case-study-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.case-study-breadcrumb a {
    color: #FFEACD;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.case-study-breadcrumb a:hover {
    color: #ffffff;
}

.case-study-breadcrumb span {
    color: #666666;
}

.case-study-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.case-study-hero-image {
    flex: 1;
    height: 400px;
    background: #F8F8F8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.case-study-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: #111111;
    border: 1px solid #222222;
    padding: 2rem;
    box-sizing: border-box;
}

.case-study-hero-content {
    flex: 1;
    text-align: left;
}

.case-study-hero-content .case-study-badge {
    border: 1px solid #ffeacd;
    color: #ffeacd;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.3em 1.2em;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    display: inline-block;
}

.case-study-hero-content .case-study-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.case-study-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-study-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-study-meta-item {
    font-size: 1rem;
    color: #d1d5db;
}

.case-study-meta-item strong {
    color: #FFEACD;
    font-weight: 600;
}

.case-study-content {
    line-height: 1.6;
    font-size: 1rem;
}

.case-study-section {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #222222;
}

.case-study-section:last-child {
    border-bottom: none;
}

.case-study-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.18;
}

.case-study-section p {
    margin-bottom: 1rem;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tech-item {
    background-color: #111111;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #222222;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    border-color: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.case-study-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.case-study-features li {
    margin-bottom: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.case-study-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFEACD;
    font-weight: bold;
}

.challenges-content, .results-content {
    margin-top: 1.5rem;
}

.challenge-item, .result-item {
    background-color: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222222;
    margin-bottom: 1.5rem;
}

.challenge-item h4, .result-item h4 {
    color: #FFEACD;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.challenge-item p, .result-item p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.challenge-item strong {
    color: #ffffff;
    font-weight: 600;
}

.case-study-cta {
    background-color: #111111;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #222222;
    margin-top: 3rem;
}

.case-study-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.18;
}

.case-study-cta p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-cta-button {
    background-color: #FFEACD;
    color: #000000;
    border: 1px solid #FFEACD;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.case-study-cta-button:hover {
    background-color: #f0d8b8;
    color: #000000;
    transform: translateY(-2px);
}

.case-study-cta-button svg {
    transition: transform 0.3s ease;
}

.case-study-cta-button:hover svg {
    transform: translateX(4px);
}

/* Mobile responsiveness for case study page */
@media (max-width: 768px) {
    .case-study-container {
        padding: 3rem var(--site-padding);
    }
    
    .case-study-hero {
        flex-direction: column;
        gap: 2rem;
    }
    
    .case-study-hero-image {
        height: 250px;
    }
    
    .case-study-section {
        padding: 2rem 0;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .challenge-item, .result-item {
        padding: 1.5rem;
    }
    
    .case-study-cta {
        padding: 2rem 1.5rem;
    }
    
    .case-study-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Slideshow Styles */
.image-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: #111111;
    border: 1px solid #222222;
    padding: 2rem;
    box-sizing: border-box;
}

.slideshow-prev, .slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-prev:hover, .slideshow-next:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev {
    left: 1rem;
}

.slideshow-next {
    right: 1rem;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-dot.active {
    background: #FFEACD;
    transform: scale(1.2);
}

.slideshow-dot:hover {
    background: #999999;
}

/* Mobile slideshow adjustments */
@media (max-width: 768px) {
    .slideshow-prev, .slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    
    .slideshow-prev {
        left: 0.5rem;
    }
    
    .slideshow-next {
        right: 0.5rem;
    }
    
    .slideshow-dot {
        width: 10px;
        height: 10px;
    }
}

/* Demo Video Styles */
.demo-video-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: #111111;
    border: 1px solid #222222;
}

.demo-video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000000;
}

/* Mobile demo video adjustments */
@media (max-width: 768px) {
    .demo-video-container {
        margin-top: 1rem;
    }
}