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

body {
    font-family: Arial, sans-serif;
    color: #333; /* not sure what this does */
 
}

.main-container {
    border-radius: 20px;        /* adjust radius as needed */
    margin: 0 20px 20px;              /* adds some space around the container */
    padding: 20px;             /* adds inner spacing */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* optional: adds subtle shadow */
    background-color: #f0f0f0;
    background-image: radial-gradient(circle, #c1b7b7 1px, transparent 1px);
    background-size: 20px 20px; /* Adjust spacing of dots */
    /* border-radius: 30px; */
}


/* Make nav float at the bottom */
nav {
    position: fixed;
    bottom: 20px; /* Adjust as needed for spacing from the bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    gap: 20px; /* Space between logo and menu items */
    z-index: 1000; /* Add this to ensure nav stays on top */
}

h1{
    font-size:1.4em;
}

headertitle{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.headerTitle {
    font-size: 1.5rem;
    margin-right: 20px;
    color: #fff;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease; /* Changed from transform to all */
}

.nav-logo:hover {
    transform: scale(1.1);
    background-color: #FFD700; /* Gold/yellow color */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Optional: adds a subtle yellow glow */
}

.nav-logo-img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-left: 10px; /* Add some space after the logo */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;  /* Add padding for the background */
    border-radius: 20px;  /* Rounded corners like in the image */
    transition: all 0.2s ease;  /* Smooth transition */
}

nav ul li a:hover {
    background-color: #FFD700;  /* Gold/yellow background */
    color: #000;  /* Black text on yellow background */
    text-decoration: none;  /* Remove the underline */
}

nav ul li a.active {
    background-color: #FFD700;  /* Gold/yellow background */
    color: #000;  /* Black text on yellow background */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #fff;
}

.cta-button {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    position: relative;
    overflow: hidden;
    transition-delay: 0.1s; /* Add a delay to the hover action */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Default subtle shadow */
    position: relative; /* Needed for ripple positioning */
    min-height: 48px;
    z-index: 1;
    text-decoration: none; /* Remove underline for links */
    display: inline-block; /* Make links behave like buttons */
    text-align: center; /* Center text */
}



.cta-button:hover {
    background-color: #333; /* Change background color on hover*/
    transform: scale(1.1); /* Slightly enlarge the button */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Add a larger shadow on hover */
}

/* Add shine effect on hover */
.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2); /* Light ripple color */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
    z-index: -1; /* Ensures ripple is behind the text */
}

.cta-button:hover::after {
    left: 100%;
    /* transition: all 0.4s ease; /* Smooth shine animation */
    transition-delay: 0.1s; /* Delay shine effect to match button hover */
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px; /* Ripple expands beyond the button */
        height: 300px;
        opacity: 0; /* Fade out the ripple */
    }
}


/* Center and style the hero section */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative; /* Needed for positioning the pseudo-elements */
    /* border-radius: 30px; */
    /* background-color: #fff; */
    margin: 20px;
    /* background-color: #f7f7f7; */
}

/* Decorative shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%; /* Makes the shape circular */
    background-color: rgba(255, 215, 0, 0.2); /* Light gold color for a subtle look */
    z-index: 1; /* Position behind the main content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Added shadow for sharper appearance */
}

.hero::before {
    width: 160px;
    height: 160px;
    top: 20%;
    left: 5%;
    animation: float 6s infinite ease-in-out;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    background-color: rgba(218, 165, 32, 0.2); /* Changed to a darker gold/brown shade */
    animation: float 6s infinite ease-in-out reverse;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.hero h2 {
    font-size: clamp(3rem, 8vw, 6rem);  /* Responsive font size */
    margin-bottom: 1rem;
    max-width: 90%;  /* Increased from 60% for mobile */
}



/* Gold */
.gold {
    color: gold;
    font-weight: bold;
    position: relative;
    display: inline-block;
    overflow: hidden;
    animation: bounce 2s infinite ease-in-out;
}

.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start from the left */
    width: 100%;
    height: 100%;
    /* background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent); */
    background: linear-gradient(120deg, transparent, rgba(240, 240, 240, 0.4), transparent); /*this is the rgb value for the background f0f0f0*/

    
    animation: shine 2s infinite;
}

/* Shine effect moving left to right */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}



/* Bounce effect for up and down movement */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Start and end at the original position */
    }
    50% {
        transform: translateY(-5px); /* Move up by 5px */
    }
}



.hero p {
    font-size: clamp(1.5rem, 4vw, 2.5rem);  /* Responsive font size */
    color: #555;
    margin-bottom: 2rem;
}



/* Footer styling */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #999;
    background-color:white;
}

/* Landing page outro section */
.page-outro {
    padding: 5rem 2rem 7rem; /* extra bottom padding so it sits above fixed nav */
    text-align: center;
    min-height: 70vh; /* make the outro almost page filling on laptops */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.outro-cta-button {
    background-color: #000;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.outro-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.outro-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.outro-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.outro-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0;
}

.outro-title .tm {
    font-size: 1.2rem;
    vertical-align: super;
}

.outro-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.outro-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.outro-row a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.outro-row a:hover {
    color: #000;
}

@media screen and (max-width: 768px) {
    .page-outro {
        padding: 4rem 1.5rem 7rem;
        min-height: 60vh;
    }

    .outro-logo {
        width: 56px;
        height: 56px;
    }

    .outro-row {
        gap: 1.5rem;
    }
}

/* Banner styling */
.banner-container {
    width: 80%;
    margin: 20px auto;
    background-color: #000;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border-color: #333;
    border-style: solid;
    position: relative;
    z-index: 1; /* Lower z-index than nav */
}

.banner-slide {
    display: flex;
    align-items: center;
    animation: slide 20s linear infinite;
    white-space: nowrap;
}

.banner-slide img {
    height: 40px;
    margin: 0 20px;
}

.banner-slide img:hover {
    /* filter: grayscale(0%); /* Removes grayscale on hover for focus effect */
}

.banner-text {
    color: #fff; /* White text */
    font-size: 1rem; /* Adjust text size as needed */
    text-transform: uppercase; /* Optional: Capitalize text */
    margin: 0 10px; /* Space between text items */
    font-weight: bold;
}

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

.dot {
    width: 5px;
    height: 5px;
    background-color: green;
    border-radius: 50%;
    margin: 0 20px;
    flex-shrink: 0;
}

.logo {
    border-radius: 50%; /* Makes the logo round */
    height: 40px; /* Adjust size as needed */
    width: auto;
    margin-left: 10px;
}

headerTitle {
    display: flex;
    align-items: center;
}

.as-seen-on {
    text-align: center;
    margin: 2rem 0 1rem;
    color: #333;
    font-weight: 500;
}

/* Add media queries for smaller screens */
@media screen and (max-width: 768px) {
    .banner-container {
        width: 95%;  /* Wider on mobile */
        border-radius: 25px;  /* Smaller radius on mobile */
    }

    nav ul {
        gap: 10px;  /* Reduced gap */
    }

    /* Decorative shapes */
.hero::before,
.hero::after {
    display:none;
}
}

/* Case Studies Section */
.case-studies {
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    margin: 8rem 20px 2rem; /* Increased top margin from 2rem to 4rem */
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.case-studies h3 {
    font-size: 1.5rem;  /* Slightly smaller than h2 */
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.case-study-title{
    font-size: 1.5rem;  /* Slightly smaller than h2 */
    margin-bottom: 3rem;
    font-weight: 400;
    text-align:left!important;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.case-study-image.has-video .service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.case-study-image.has-video.video-active .service-video {
    opacity: 1;
}

.case-study-image.has-video.video-active .service-thumb {
    opacity: 0;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.case-study-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.2s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 768px) {
    .case-studies {
        padding: 2rem 1rem;
    }

    .case-studies h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Modify the animation class */
.case-study.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Update the delays */
.case-study:nth-child(1) {
    transition-delay: 0.2s;
}

.case-study:nth-child(2) {
    transition-delay: 0.4s;
}

.case-study:nth-child(3) {
    transition-delay: 0.6s;
}

/* How it Works Section */
.how-it-works {
    padding: 6rem 2rem;
    text-align: center;
    margin: 2rem 20px;
}

.how-it-works h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #333;
}

.how-it-works h3 {
    font-size: 1.5rem;  /* Slightly smaller than h2 */
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.how-it-works .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.step-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.step-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Animated background circles */
.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4);
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0.1;
    z-index: 1;
}

/* Icon hover effects */
.step-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-icon:hover img {
    transform: scale(1.1) rotate(-5deg);
}

/* Pulse animation for continuous engagement */
.step-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    opacity: 0;
    animation: pulse 3s ease-in-out infinite;
}

/* Different colors for each step */
.step:nth-child(1) .step-icon::before {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.step:nth-child(1) .step-icon::after {
    border-color: #00d4ff;
}

.step:nth-child(2) .step-icon::before {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
}

.step:nth-child(2) .step-icon::after {
    border-color: #ff6b6b;
}

.step:nth-child(3) .step-icon::before {
    background: linear-gradient(45deg, #4ecdc4, #26d0ce);
}

.step:nth-child(3) .step-icon::after {
    border-color: #4ecdc4;
}

/* Entrance animations */
.step {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.step:nth-child(1) {
    transition-delay: 0.2s;
}

.step:nth-child(2) {
    transition-delay: 0.4s;
}

.step:nth-child(3) {
    transition-delay: 0.6s;
}

/* Keyframe animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.step-icon img {
    animation: float 3s ease-in-out infinite;
}

/* Different timing for each icon to create organic feel */
.step:nth-child(1) .step-icon img {
    animation-delay: 0s;
}

.step:nth-child(2) .step-icon img {
    animation-delay: 1s;
}

.step:nth-child(3) .step-icon img {
    animation-delay: 2s;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 300px;
    color: #333;
}

@media screen and (max-width: 768px) {
    .how-it-works h2 {
        font-size: 2.5rem;
    }

    .how-it-works .subtitle {
        font-size: 1.1rem;
    }

    .steps-container {
        gap: 2rem;
    }
}

/* Stuff We Know Section */
.stuff-we-know {
    padding: 6rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    margin: 2rem 20px;
}

.stuff-we-know h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.stuff-we-know h2 .emphasized {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: normal;
}

.stuff-we-know h3 {
    font-size: 1.5rem;  /* Slightly smaller than h2 */
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.stuff-we-know .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover,
.pill.active-pill {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Pill Colors */
.pill.pink {
    background: #E879F9;
}

.pill.blue {
    background: #60A5FA;
}

.pill.green {
    background: #34D399;
}

.pill.yellow {
    background: #FBBF24;
}

.pill.orange {
    background: #FB7185;
}

.pill.purple {
    background: #A855F7;
}

.pill.teal {
    background: #2DD4BF;
}

.pill.red {
    background: #EF4444;
}

.pill.blue-light {
    background: #7DD3FC;
}

.pill.green-light {
    background: #6EE7B7;
}

.pill.purple-light {
    background: #C084FC;
}

.pill.black {
    background: #1F2937;
}

@media screen and (max-width: 768px) {
    .stuff-we-know {
        padding: 4rem 1rem;
    }

    .stuff-we-know h2 {
        font-size: 2.5rem;
    }

    .tech-pills {
        gap: 0.75rem;
    }

    .pill {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Reviews Section */
.reviews-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}

.review-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.review-platform {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review {
        max-width: 100%;
        min-width: unset;
    }
}

/* Examples Section */
.examples {
    padding: 4rem 0;
    text-align: center;
}

.examples h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.examples-grid {
    display: flex;
    gap: 1rem;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.example-hero {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.example-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

.example-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.example-hero:hover img {
    transform: scale(1.05);
    filter: grayscale(0.1) brightness(0.9) contrast(1.1);
}

.example-secondary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-small {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.example-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

.example-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.example-small:hover img {
    transform: scale(1.05);
    filter: grayscale(0.1) brightness(0.9) contrast(1.1);
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    z-index: 2;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.example-hero .example-overlay {
    padding: 2.5rem;
}

.example-small .example-overlay {
    padding: 1.5rem;
}

.example-hero:hover .example-overlay,
.example-small:hover .example-overlay {
    transform: translateY(0);
    opacity: 1;
}

.example-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.example-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.example-overlay p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .examples-grid {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .example-hero,
    .example-secondary {
        flex: none;
        width: 100%;
    }
    
    .example-hero {
        height: 250px;
        border-radius: 10px;
    }
    
    .example-secondary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .example-small {
        height: 200px;
        width: 100%;
    }
    
    .example-hero img,
    .example-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .example-hero .example-overlay {
        padding: 1.5rem;
    }
    
    .example-small .example-overlay {
        padding: 1rem;
    }
    
    .example-overlay h3 {
        font-size: 1.2rem;
    }
    
    .example-overlay h4 {
        font-size: 1rem;
    }
    
    .example-overlay p {
        font-size: 0.85rem;
    }
    
    .example-overlay {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
}



/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    margin: 2rem 20px;
    background: #fff;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h2 {
    font-size: 3rem;
    line-height: 1.1;
}

.pricing-header .subtitle {
    margin-top: 0.5rem;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 1.4rem;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.price-card {
    background: #0a0a0a;
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.price-card::after {
    content: '🐯';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
}

.price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.badge {
    background: #1f2937;
    color: #e5e7eb;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.25rem 0 1.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
}

.per {
    color: #9ca3af;
}

.includes {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1rem;
    margin: 1rem 0 1.5rem;
    flex-grow: 1;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.includes:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.08);
}

.includes-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.includes-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
}

.includes-list li {
    color: #e5e7eb;
}

.includes-list li::before {
    content: '✓';
    color: #34D399;
    margin-right: 0.5rem;
}

.cta-button.full {
    width: 100%;
    border-radius: 10px;
    margin-top: auto;
}

@media screen and (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    nav {
        bottom: 10px;
        padding: 6px 12px;
        border-radius: 20px;
        gap: 8px;
        max-width: 90%;
    }
    
    .nav-logo {
        padding: 3px;
    }
    
    .nav-logo-img {
        height: 20px;
        width: 20px;
    }
    
    nav ul {
        gap: 4px;
        margin-left: 4px;
    }
    
    nav ul li a {
        font-size: 0.75rem;
        padding: 6px 10px;
        white-space: nowrap;
    }
}
