/* ===================================
   RESET & BASE STYLES
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%);
    color: #3d2f24;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===================================
   NAVIGATION
   =================================== */

/* Main Site Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem 1.5rem 2rem;
    background: #faf8f3;
    border-bottom: 1px solid #e8dfd5;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3d2f24;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b5d52;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3d2f24;
}

/* Landing Page Navigation (Minimal) */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #faf8f3;
    border-bottom: 1px solid #e8dfd5;
}

.cta-nav {
    padding: 0.75rem 1.5rem;
    background: #3d2f24;
    color: #faf8f3;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #2a1f17;
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION (Index.html)
   =================================== */

.hero {
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
    padding: 5rem 4rem;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;  /* 50/50 split */
    gap: 4rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.hero-text h1 {
    font-weight: 700;
    color: #3d2f24;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-main {
    font-size: 3.5rem;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;  /* Prevents wrapping within this span */
    background: linear-gradient(90deg, #3d2f24 0%, #817165 100%);
    background-size: 100% 100%;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    background: linear-gradient(90deg, #3d2f24 0%, #817165 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    padding-left: 3rem;  /* Adds space from left edge */
}

.hero-text p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #3d2f24;  /* Dark brown border */
    box-shadow: 0 12px 40px rgba(61, 47, 36, 0.25);  /* Stronger shadow */
}


/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 4rem;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3d2f24;
    font-weight: 700;
}

.about p {
    font-size: 1.15rem;
    color: #6b5d52;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* What I Do Section */
.what-i-do {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 4rem;
}

.what-i-do h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(61, 47, 36, 0.15);
}

.what-i-do-content {
    background: #f5f0e8;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
    box-shadow: 0 2px 8px rgba(61, 47, 36, 0.06);
}

.what-i-do-content p {
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.what-i-do-content p:last-child {
    margin-bottom: 0;
}

.what-i-do-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.what-i-do-content li {
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.what-i-do-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3d2f24;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.what-i-do-content strong {
    color: #3d2f24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .what-i-do {
        padding: 0 2rem;
        margin: 4rem auto;
    }
    
    .what-i-do h2 {
        font-size: 2rem;
    }
    
    .what-i-do-content {
        padding: 2rem;
    }
}

/* How I Work Section */
.how-i-work {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 4rem;
}

.how-i-work h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(61, 47, 36, 0.15);
}

.how-i-work-content {
    background: #f5f0e8;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
    box-shadow: 0 2px 8px rgba(61, 47, 36, 0.06);
}

.how-i-work-content p {
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.how-i-work-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .how-i-work {
        padding: 0 2rem;
        margin: 4rem auto;
    }
    
    .how-i-work h2 {
        font-size: 2rem;
    }
    
    .how-i-work-content {
        padding: 2rem;
    }
}

/* Two Column Section */
.two-column-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column {
    background: #f5f0e8;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
    box-shadow: 0 2px 8px rgba(61, 47, 36, 0.06);
}

.column h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(61, 47, 36, 0.1);
}

.column h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3d2f24 0%, #817165 100%);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.column p {
    font-size: 1.1rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.column p:last-child {
    margin-bottom: 0;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        margin: 4rem auto;
    }
    
    .column {
        padding: 2rem;
    }
    
    .column h2 {
        font-size: 1.5rem;
    }
    
}

/* ===================================
   CONTENT PAGES (Services, Resources)
   =================================== */

.content-page {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #3d2f24;
    font-weight: 700;
}

.service, .resource {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service:hover, .resource:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 47, 36, 0.08);
}

.service h2, .resource h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #3d2f24;
    font-weight: 700;
}

.service p, .resource p {
    font-size: 1.1rem;
    color: #6b5d52;
    line-height: 1.7;
}

/* Accordion service card */
.service.accordion {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    margin-bottom: 0;
}

.accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #3d2f24;
    transition: transform 0.3s ease;
}

/* Expanded state */
.service.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

/* Content area (hidden by default) */
.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service.accordion.active .service-content {
    max-height: 800px;
    margin-top: 1.5rem;
}

/* Bullet points */
.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    font-size: 1.1rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3d2f24;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.service-content li strong {
    color: #3d2f24;
    font-weight: 600;
}

/* Keep hover effect */
.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 47, 36, 0.08);
}

/* ===================================
   LANDING PAGE CONTENT
   =================================== */

.landing-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.landing-content h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #3d2f24;
    font-weight: 700;
    line-height: 1.2;
}

.problem, .solution {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
}

.problem h2, .solution h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #3d2f24;
    font-weight: 700;
}

.problem p, .solution p {
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE
   =================================== */
/* Contact Page Grid Layout */
.contact-page-grid {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3d2f24;
    font-weight: 700;
}

.contact-left p {
    font-size: 1.2rem;
    color: #6b5d52;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-content-box {
    background: #f5f0e8;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8dfd5;
    box-shadow: 0 2px 8px rgba(61, 47, 36, 0.06);
}

.contact-right {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12.5rem;
    margin-left: 10rem;
}

.contact-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #3d2f24;
    box-shadow: 0 12px 40px rgba(61, 47, 36, 0.25);
    display: block;
}
/* ===================================
   CTA BUTTONS
   =================================== */

.cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3d2f24;
    color: #faf8f3;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta:hover {
    background: #2a1f17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 47, 36, 0.2);
}

.cta-section {
    text-align: center;
    margin: 5rem 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-main {
        font-size: 3rem;
    }
    
    .hero-sub {
        font-size: 1.75rem;
    }
}


@media (max-width: 768px) {
    .hero-main {
        font-size: 2.25rem;
    }
    
    .hero-sub {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 1.85rem;
    }
    
    .hero-sub {
        font-size: 1.25rem;
    }
}

/* CTA Section Final */
.cta-section-final {
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
    padding: 6rem 4rem 3rem 4rem;
    margin-top: 6rem;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: inline-block;
    background: linear-gradient(90deg, #3d2f24 0%, #b9a291 100%);
    background-size: 1200px 100%;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: #6b5d52;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-calendly {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(61, 47, 36, 0.1);
}

/* Calendly widget */
.calendly-inline-widget {
    width: 100%;
    min-height: 630px;
    height: 650px;
    border: none;
    background: linear-gradient(
        90deg,
        #f5f0e8 0%,
        #faf8f3 50%,
        #f5f0e8 100%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-right {
        order: -1;
        padding-top: 0;
    }
    
    .contact-left h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page-grid {
        padding: 0 2rem;
        margin: 3rem auto;
    }
    
    .contact-left h1 {
        font-size: 2rem;
    }
    
    .contact-content-box {
        padding: 1.5rem;
    }
}


/* AI Eval Landing Page Hero - Split Layout */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    justify-content: space-between;
    padding: 8rem 4rem 5rem 4rem; /* Increased top padding */
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
    overflow: hidden;
    gap: 4rem;
}

/* Left side - hero content */
.landing-hero-content {
    flex: 1.2;
    max-width: 700px;
    text-align: left;
    z-index: 2;
    padding-top: 2rem; /* Pushes content down slightly from very top */
    padding-left: 3rem;
}

.landing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    
    /* Gradient text styles */
    background: linear-gradient(90deg, #3d2f24 0%, #817165 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.landing-hero-content p {
    font-size: 1.25rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #6b5d52;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landing-hero-content .hero-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: #6b5d52;
    margin-bottom: 1.5rem;
    line-height: 1.4;

        /* Add gradient text styles */
    background: linear-gradient(90deg, #3d2f24 0%, #817165 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emoji-no-gradient {
    -webkit-text-fill-color: initial;
    background: none;
    color: inherit;
}

.landing-hero-content .hero-description {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    color: #6b5d52;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Right side - code snippets container */
.code-snippets-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0 4rem;
}

.code-snippet-hero {
    width: 450px;
    max-width: 100%;
    opacity: .9;
    box-shadow: 0 10px 30px rgba(61, 47, 36, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.code-snippet-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 47, 36, 0.25);
}

/* Problems section */
.landing-problems {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

.landing-problems h2 {
    font-size: 2.5rem;
    color: #3d2f24;
    margin-bottom: 3rem;
}

.problems-grid {
    display: flex;
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.problem-card {
    background: #faf8f3;
    border: 2px solid #e8dfd5;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 380px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card p {
    color: #6b5d52;
    line-height: 1.6;
}

/* Final CTA section with floating logos */
.landing-cta {
    position: relative;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.landing-cta p {
    font-size: 1.5rem;
    color: #6b5d52;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Position brand logos around the CTA */
.landing-cta .brand-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.landing-cta .brand-logo {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    padding: 1rem;
    background: white;
    box-shadow: 0 4px 12px rgba(61, 47, 36, 0.1);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
}

/* Position each logo around the button */
.landing-cta .brand-logo:nth-child(1) {
    left: 15%;
    top: 30%;
    background: white;
    box-shadow: 0 4px 12px rgba(61, 47, 36, 0.1);
    padding: 0.5rem; /* Reduced from 1rem */
    width: 70px;
    height: 70px;
}

.landing-cta .brand-logo:nth-child(2) {
    left: 25%;
    top: 55%;
}

.landing-cta .brand-logo:nth-child(3) {
    right: 25%;
    top: 55%;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 80px;
    height: 80px;
}

.landing-cta .brand-logo:nth-child(4) {
    right: 15%;
    top: 30%;
    background: white; /* Add white background */
    box-shadow: 0 4px 12px rgba(61, 47, 36, 0.1); /* Add shadow */
    padding: 1rem; /* Add padding so logo doesn't touch edges */
    border-radius: 16px; /* Add rounded corners */
    width: 75px;
    height: 75px;
}

.landing-cta .brand-logo:hover {
    transform: translateY(-8px);
}

.landing-cta .brand-logo:nth-child(1):hover,
.landing-cta .brand-logo:nth-child(2):hover,
.landing-cta .brand-logo:nth-child(4):hover {
    box-shadow: 0 8px 20px rgba(61, 47, 36, 0.2);
}

/* Stagger animation */
.landing-cta .brand-logo:nth-child(1) { animation-delay: 0s; }
.landing-cta .brand-logo:nth-child(2) { animation-delay: 0.3s; }
.landing-cta .brand-logo:nth-child(3) { animation-delay: 0.6s; }
.landing-cta .brand-logo:nth-child(4) { animation-delay: 0.9s; }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-nav {
        padding: 1rem 2rem;
    }
    
    .landing-hero-content h1 {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: #6b5d52;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   COLD EMAIL LANDING PAGE STYLES
   =================================== */

/* Summary Section (NEW) */
.landing-summary {
    padding: 5rem 4rem;
    background: white;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.landing-summary h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3d2f24;
    margin-bottom: 1.5rem;
}

.landing-summary p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #6b5d52;
    max-width: 950px;
    margin: 0 auto;
}

/* Cold Email Hero Image (separate from AI Eval) */
.cold-email-hero-image {
    width: 100%;
    max-width: 700px;  /* Bigger than AI eval's 550px */
    opacity: 0.8;
    box-shadow: 0 10px 30px rgba(61, 47, 36, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cold-email-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 47, 36, 0.25);
    opacity: 1;
}

/* Responsive adjustments for summary */
@media (max-width: 768px) {
    .landing-summary {
        padding: 3rem 2rem;
    }

    .landing-summary h2 {
        font-size: 1.5rem;
    }

    .landing-summary p {
        font-size: 1rem;
    }
}

/* Floating Logos */
.landing-cta {
    position: relative; /* Important for absolute positioning */
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
    text-align: center;
}

.floating-logo {
    position: absolute;
    width: 60px;
    height: auto;
    transition: all 0.3s ease;
}

.floating-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
}

/* HubSpot - Top Left */
.logo-hubspot {
    left: 15%;
    top: 20%;
    animation: float 4s ease-in-out infinite;
}

/* Instantly - Bottom Left */
.logo-instantly {
    left: 20%;
    top: 60%;
    animation: float 5s ease-in-out infinite 0.5s;
}

/* Apollo - Top Right */
.logo-apollo {
    right: 15%;
    top: 20%;
    animation: float 4.5s ease-in-out infinite 1s;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Lemlist - Bottom Right */
.logo-lemlist {
    right: 20%;
    top: 60%;
    animation: float 5.5s ease-in-out infinite 1.5s;
}

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

/* Keep CTA content centered and above logos */
.landing-cta h2,
.landing-cta .cta {
    position: relative;
    z-index: 2;
}