/* Reset and base styles */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, nav, header, section, footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - STAYS WHITE for logo visibility */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
    max-width: 350px;
}

.section-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF4500;
}

/* Hero Section - ORANGE (High Impact Start) */
.hero {
    background: linear-gradient(135deg, #FF4500, #FF6B35);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFE5D9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FF4500;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

/* Stats Section - WHITE (Breathing Room) */
.stats {
    background: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #FF4500;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FF4500;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.5;
}

/* Insight Section - ORANGE (Key Message) */
.insight-section {
    background: #FF4500;
    padding: 6rem 0;
    position: relative;
}

.insight-content {
    background: rgba(255,255,255,0.98);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.insight-section h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.insight-section p {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Fixed Checklist with Grid Layout and Animations */
.success-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.checklist-item.show {
    opacity: 1;
    transform: translateY(0);
}

.checkbox {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #FF4500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.15);
}

.checkbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.25);
}

.checkbox-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    word-break: break-word;
}

.checkmark {
    font-size: 1.25rem;
    color: #FF4500;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checklist-item.animate .checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive - 2x3 grid */
@media (max-width: 768px) {
    .success-checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 300px;
        padding: 0 1rem;
    }
    
    .checklist-item {
        max-width: 100px;
        margin: 0 auto;
    }
    
    .checkbox {
        width: 45px;
        height: 45px;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .checkmark {
        font-size: 1.1rem;
    }
}

/* Very Small Mobile - still 2 columns but smaller */
@media (max-width: 480px) {
    .success-checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 250px;
    }
    
    .checklist-item {
        max-width: 85px;
        margin: 0 auto;
    }
    
    .checkbox {
        width: 40px;
        height: 40px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .checkmark {
        font-size: 1rem;
    }
}

/* Methodology Section - WHITE (Content Focus) - UPDATED */
.methodology {
    padding: 6rem 0;
    background: white;
}

.methodology h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #FF4500;
    font-weight: 700;
}

.methodology-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.method-diagram {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 3rem 0;
    border: 1px solid #e9ecef;
}

/* Phase cards - REDESIGNED */
.phase {
    border: 1px solid #e9ecef;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    background: white;
    position: relative;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

.phase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #FF4500;
}

.phase:last-child {
    margin-bottom: 0;
}

.phase-header {
    display: contents;
}

.phase-content-wrapper {
    display: flex;
    flex-direction: column;
}

.phase-details {
    padding-left: 0;
    margin-top: 1.5rem;
    margin-right: 0;
    margin-left: 0;
}

.phase-number-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phase-number {
    background: #FF4500;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(255,69,0,0.3);
    flex-shrink: 0;
}

.phase-content {
    display: flex;
    flex-direction: column;
    margin-right: 0;
}

.phase-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.phase-description {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.phase-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.phase:hover .phase-icon {
    opacity: 1;
    transform: scale(1.05);
}

.phase-details {
    padding-left: 0;
    margin-top: 1.5rem;
    margin-right: 0;
    margin-left: 0;
    grid-column: 2;
}

.phase-details p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.phase-steps {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step {
    background: rgba(255,69,0,0.1);
    color: #FF4500;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,69,0,0.2);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.step:hover {
    background: rgba(255,69,0,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,69,0,0.2);
}

/* Methodology Disclaimer Styles */
.methodology-disclaimer {
    background: #f8f9fa;
    border-left: 4px solid #FF4500;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.methodology-disclaimer p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
}

.methodology-disclaimer a {
    color: #FF4500;
    text-decoration: underline;
    font-weight: 600;
}

.methodology-disclaimer a:hover {
    color: #E63E00;
    text-decoration: none;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: normal;
    max-width: 320px;
    min-width: 280px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tooltip::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Services Page Specific Styles */
.services-intro {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid #e9ecef;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h1,
.intro-content h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-detail {
    padding: 6rem 0;
    background: #f8f9fa;
}

.service-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.service-icon-large {
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.service-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-content p:last-child {
    margin-bottom: 0;
}

.services-cta {
    padding: 6rem 0;
    background: white;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.6rem;
    color: #FF4500;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background: #FF4500;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,69,0,0.3);
}

.cta-button-secondary:hover {
    background: #E63E00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,69,0,0.4);
}

/* Services Section - WHITE (Professional) */
.services {
    padding: 6rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #FF4500;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #FF4500;
    background: white;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.3;
}

.service-description {
    color: #5a6c7d;
    margin-bottom: 2rem;
    flex: 1;
    line-height: 1.6;
    font-size: 1.05rem;
}

.service-btn {
    background: #FF4500;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255,69,0,0.2);
}

.service-btn:hover {
    background: #E63E00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,69,0,0.3);
}

/* Lead Magnets Section - ORANGE (Call to Action) */
.lead-magnets {
    padding: 6rem 0;
    background: #FF4500;
}

.lead-magnets h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lead-magnets .terms-notice {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4rem;
}

.lead-magnets .terms-notice a {
    color: white;
    text-decoration: underline;
}

.magnets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.magnet-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.magnet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.98);
}

.magnet-icon {
    margin-bottom: 1.5rem;
}

.magnet-icon img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.magnet-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.3;
}

.magnet-description {
    color: #5a6c7d;
    margin-bottom: 2rem;
    flex: 1;
    line-height: 1.5;
}

.download-btn {
    background: #FF4500;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255,69,0,0.3);
}

.download-btn:hover {
    background: #E63E00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,69,0,0.4);
}

/* Book Section - WHITE (Content/Credibility) */
.book-section {
    padding: 6rem 0;
    background: white;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.book-cover {
    text-align: center;
}

.book-cover img {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.book-cover img:hover {
    transform: translateY(-5px);
}

.book-info h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.book-info p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF4500;
    margin: 2.5rem 0;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
    margin-top: 1rem;
    font-style: normal;
}

/* About Section - ORANGE (Final CTA) */
.about {
    padding: 6rem 0;
    background: #FF4500;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about .section-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
}

.about h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.early-adopter {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.early-adopter h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.early-adopter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-form input {
    padding: 1rem;
    border: none;
    border-radius: 50px;
    min-width: 280px;
    font-size: 1rem;
}

.contact-form button {
    background: white;
    color: #FF4500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* FAQ Section - WHITE (Information) */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: #e9ecef;
    color: #FF4500;
}

.faq-answer {
    padding: 2rem;
    background: white;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Footer - DARK (Professional Close) */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

footer .section-logo {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #FF4500;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p,
    .hero-subline {
        font-size: 1.2rem;
    }
    
    .book-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-form {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form input {
        min-width: 250px;
    }
    
    .logo img {
        height: 25px;
        max-width: 200px;
    }
    
    .nav-links {
        display: none;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .magnets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .methodology {
        padding: 4rem 0;
    }
    
    .methodology h2 {
        font-size: 2.2rem;
    }
    
    .methodology-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .method-diagram {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .phase {
        padding: 2rem;
        margin-bottom: 2rem;
        display: block;
    }
    
    .phase-header {
        display: block;
    }
    
    .phase-content-wrapper {
        display: block;
    }
    
    .phase-number-section {
        margin: 0 auto 1.5rem;
        text-align: center;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .phase-icon {
        width: 60px;
        height: 60px;
    }
    
    .phase-content {
        margin-right: 0;
        text-align: center;
    }
    
    .phase-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .phase-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .phase-details {
        padding-left: 0;
        margin-right: 0;
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    .phase-steps {
        justify-content: center;
        gap: 1rem;
    }
    
    .step {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Mobile tooltip handling */
    .tooltip {
        cursor: default;
    }
    
    .tooltip::after {
        max-width: 250px;
        min-width: 200px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .tooltip.active::after,
    .tooltip.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile responsive for methodology disclaimer */
    .methodology-disclaimer {
        padding: 1rem 1.5rem;
        margin-top: 2rem;
        font-size: 0.9rem;
    }
    
    .insight-content {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .services-intro {
        padding: 3rem 0;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .service-detail {
        padding: 4rem 0;
    }
    
    .service-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-header h3 {
        font-size: 1.6rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .method-diagram {
        padding: 1.5rem 1rem;
    }
    
    .phase {
        padding: 1.5rem;
    }
    
    .phase-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .phase-icon {
        width: 50px;
        height: 50px;
    }
    
    .phase-title {
        font-size: 1.3rem;
    }
    
    .step {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .phase-details {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    /* Very small mobile tooltip adjustments */
    .tooltip::after {
        max-width: 220px;
        min-width: 180px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Desktop Icon Sizing - Larger icons for desktop only */
@media (min-width: 1025px) {
    .phase-icon {
        width: 100px;
        height: 100px;
    }
    
    .phase-content {
        margin-right: 0;
    }
    
    .phase-details {
        margin-right: 0;
    }
}

@media (min-width: 1400px) {
    .phase-icon {
        width: 120px;
        height: 120px;
    }
    
    .phase-content {
        margin-right: 0;
    }
    
    .phase-details {
        margin-right: 0;
    }
}