/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0c152e;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    margin-top: 0;
}

/* === HEADER === */
/* === HEADER === */
.site-header {
    border-bottom: 1px solid #0c152e;
    background-color: #0c152e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.brand-logo {
    display: block;
    height: auto;
}

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0c152e;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 9999;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.mobile-nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 100vh;
}

.mobile-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 0.5rem;
}

.mobile-nav-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.75rem;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: rgba(52, 211, 153, 0.1);
    color: #a7f3d0;
}

.mobile-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
}

.mobile-nav-desc {
    font-size: 12px;
    color: #94a3b8;
}

.mobile-cta-button {
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background-color: #34d399;
    color: #020617;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(52, 211, 153, 0.3);
    display: block;
}

/* Hide desktop nav and CTA on mobile */
.main-nav,
.cta-button {
    display: none;
}

/* === DESKTOP STYLES === */
@media (min-width: 640px) {
    /* Hide mobile elements */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Show desktop elements */
    .main-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        display: inline-flex;
    }
}

/* Desktop Navigation */
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-link:hover {
    color: #a7f3d0;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    transition: transform 0.2s;
    color: #94a3b8;
}

.nav-dropdown-toggle:hover .dropdown-arrow {
    color: #a7f3d0;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0.75rem;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-dropdown-item:hover {
    background-color: rgba(52, 211, 153, 0.1);
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
}

.dropdown-item-desc {
    font-size: 11px;
    color: #94a3b8;
}

/* CTA Button */
.cta-button {
    padding: 0.85rem 1rem;
    background-color: #34d399;
    color: #020617;
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(52, 211, 153, 0.3);
    transition: background-color 0.2s;
    border: none;
}

.cta-button:hover {
    background-color: #6ee7b7;
}

@media (min-width: 1024px) {
    .header-container {
        padding: 10px 2rem;
    }
}

/* === FOOTER === */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
     padding: 3rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 0 2rem;
}

/* Left Column - Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* Middle and Right Columns */
.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #34d399;
    transform: translateX(4px);
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    border-bottom: 1px solid #0c152e;
    background: #0c152e;
    overflow: hidden;
}

/* Decorative Glow */
.hero-glow {
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 256px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}


/* === LEFT COLUMN: CONTENT === */
.hero-content {
    flex: 1;
    animation: fadeInUp 0.6s ease-out;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a7f3d0;
}

.badge-dot {
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 50%;
    background-color: #34d399;
}

/* Headline */
.hero-headline {
    margin-top: 1rem;
    max-width: 48rem;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #f8fafc;
}

.hero-subheadline {
    display: block;
    color: #cbd5e1;
}

/* Description */
.hero-description {
    margin-top: 1rem;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Features Grid */
.hero-features {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
    color: #e2e8f0;
}


.feature-icon {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #34d399;
}

/* CTAs */
.hero-ctas {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta-primary {
    padding: 0.5rem 1.5rem;
    background-color: #34d399;
    color: #020617;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.3);
    transition: background-color 0.2s;
}

.hero-cta-primary:hover {
    background-color: #6ee7b7;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a7f3d0;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-cta-secondary:hover {
    color: #6ee7b7;
}

.cta-arrow {
    width: 1rem;
    height: 1rem;
}

.hero-card-wrapper {
    position: relative;
    width: 100%;
}

.youtube-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.youtube-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.youtube-player .play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.64 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z"/><path fill="%23fff" d="M45 24L27 14v20"/></svg>') no-repeat;
    cursor: pointer;
    transition: transform 0.2s;
}

.youtube-player:hover .play {
    transform: scale(1.1);
}
.cards-container {
    display: grid;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .cards-container {
    grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 16px;
    padding: 16px;
}

.card:hover{
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.card-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-description {
    font-size: 14px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Disclaimer */
.hero-disclaimer {
    margin-top: 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
}

/* === RIGHT COLUMN: CARD === */
.hero-card-wrapper {
    flex: 1;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-card {
    background-color: #0c152e;
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(52, 211, 153, 0.2);
    overflow: hidden;
}
.hero-card-wrapper h4 {
    text-align: center;
    padding-top: 10px;
    font-size: 18px;
}

/* Card Header */
.card-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #1e293b;
}

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

.card-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
}

.card-badge {
    padding: 0.125rem 0.5rem;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6ee7b7;
}

/* Card Body */
.card-body {
    padding: 1rem;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.card-paragraph {
    margin-bottom: 0.75rem;
}

.card-paragraph:last-of-type {
    margin-bottom: 0;
}

.card-list {
    margin: 0.5rem 0 0.75rem 1.25rem;
    list-style: none;
}

.card-list li {
    margin-bottom: 0.375rem;
    position: relative;
    padding-left: 0;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: -1.25rem;
    color: #34d399;
}

.card-list strong {
    font-weight: 600;
    color: #f8fafc;
}

.card-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: #64748b;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
    .hero-headline {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
}


/* === SEO + GEO SECTION === */
.seo-geo-section {
    border-top: 1px solid #0f172a;
    background-color: #0c152e;
}

.seo-geo-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    max-width: 1200px;
}

/* Cards Grid */
.seo-geo-cards-grid {
    margin-top: 1.75rem;
    display: grid;
    gap: 1.25rem;
}

/* Individual Card */
.seo-geo-card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    
}

.seo-geo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.1);
}

/* Card Header */
.seo-geo-card-header {
    padding: 1rem 1rem 0.5rem;
}

.seo-geo-icon {
    width: 1rem;
    height: 1rem;
    color: #6ee7b7;
    margin-bottom: 0.5rem;
}

.seo-geo-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.4;
}

/* Card Body */
.seo-geo-card-body {
    padding: 0 1rem 1rem;
}

.seo-geo-card-body p {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
    margin: 0;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
    .seo-geo-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .seo-geo-container {
        padding: 2rem 2rem 4rem;
    }
}



/* Get a Growth Plan Section - Scoped Styles */

.growsilk-plan-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0c152e;
    color: #ffffff;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.growsilk-plan-two-column {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

/* Left Column */
.growsilk-plan-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.growsilk-plan-main-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 640px) {
    .growsilk-plan-main-title {
        font-size: 2.25rem;
    }
    .growsilk-plan-section {
        padding: 0 2rem 2rem;
    }
}

.growsilk-plan-subtitle {
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

.growsilk-plan-features-list {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.growsilk-plan-feature-item {
    display: flex;
    align-items: start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0c152e;
}

.growsilk-plan-check-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.growsilk-plan-check-icon {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.growsilk-plan-feature-content {
    flex: 1;
}

.growsilk-plan-feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.growsilk-plan-feature-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    display: flex;
    gap: 5px;
}

/* Right Column - Wizard Card */
.growsilk-plan-right-column {
    display: flex;
}

.growsilk-plan-wizard-card {
    width: 100%;
    padding: 1.75rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(52, 211, 153, 0.4);
    background: #0c152e;
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
}
.growsilk-plan-wizard-card:hover {
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}
.growsilk-pillar-content .info-button {
    padding: 4px 10px;
}
@media (min-width: 640px) {
    .growsilk-plan-wizard-card {
        padding: 2rem;
    }
}

.growsilk-plan-wizard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.growsilk-plan-wizard-meta {
    flex: 1;
}

.growsilk-plan-wizard-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.5rem 0;
}

.growsilk-plan-wizard-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.growsilk-plan-wizard-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.growsilk-plan-wizard-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.growsilk-plan-progress-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.growsilk-plan-progress-dot {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    transition: all 0.2s;
}

.growsilk-plan-progress-dot-completed {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.growsilk-plan-progress-dot-active {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
}

.growsilk-plan-progress-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

.growsilk-plan-wizard-divider {
    margin-top: 1.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Question Section */
.growsilk-plan-wizard-question {
    margin-top: 1.25rem;
}

.growsilk-plan-question-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.growsilk-plan-question-helper {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem 0;
}

/* Options Grid */
.growsilk-plan-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .growsilk-plan-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.growsilk-plan-option-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.growsilk-plan-option-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.growsilk-plan-option-card-selected {
    border-color: rgba(255, 255, 255, 0.25);
}

.growsilk-plan-radio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    flex-shrink: 0;
}

.growsilk-plan-radio-button-selected {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.8);
}

.growsilk-plan-radio-inner {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
}

.growsilk-plan-radio-inner-selected {
    background: #000000;
}

.growsilk-plan-option-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.growsilk-plan-option-card-selected .growsilk-plan-option-label {
    color: rgba(255, 255, 255, 1);
}

/* Footer */
.growsilk-plan-wizard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.growsilk-plan-back-button {
    padding: 0.625rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.growsilk-plan-back-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.growsilk-plan-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.growsilk-plan-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    max-width: 16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .growsilk-plan-main-title {
        font-size: 1.75rem;
    }

    .growsilk-plan-subtitle {
        font-size: 0.9375rem;
    }

    .growsilk-plan-wizard-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .growsilk-plan-tags-row {
        justify-content: flex-start;
    }
}
.growsilk-plan-completion-screen {
    text-align: center;
    padding: 1rem 0;
}

.growsilk-plan-completion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: rgba(56, 189, 248, 0.9);
}

.growsilk-plan-completion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
}

.growsilk-plan-completion-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2rem 0;
}

.growsilk-plan-contact-form {
    text-align: left;
    max-width: 100%;
}

.growsilk-plan-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .growsilk-plan-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.growsilk-plan-form-field {
    margin-bottom: 0.75rem;
}

.growsilk-plan-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.375rem 0;
}

.growsilk-plan-form-input,
.growsilk-plan-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.2s;
}

.growsilk-plan-form-input::placeholder,
.growsilk-plan-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.growsilk-plan-form-input:focus,
.growsilk-plan-form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.growsilk-plan-form-textarea {
    min-height: 7rem;
    resize: vertical;
}

.growsilk-plan-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 0.5rem;
    border-radius: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 10px 30px -12px rgba(255, 255, 255, 0.35);
}

.growsilk-plan-submit-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 12px 35px -12px rgba(255, 255, 255, 0.45);
}

.growsilk-plan-submit-button:active {
    transform: translateY(0);
}

.growsilk-plan-form-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin: 1rem 0 0 0;
}



/* === FAQ SECTION === */
.faq-section {
    border-top: 1px solid #0f172a;
    background-color: #0c152e;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 2rem;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 1.75rem;
    display: grid;
    gap: 1.25rem;
    align-items: start; /* FIX: Prevents stretching */
}

/* FAQ Item */
.faq-item {
    background-color: #0c152e;
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
    align-self: start; /* FIX: Keeps item from stretching */
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.1);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: none;
    border: none;
    color: #f8fafc;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    color: #6ee7b7;
}

.faq-question:focus {
    outline: 2px solid #6ee7b7;
    outline-offset: -2px;
}

.faq-question-text {
    flex: 1;
    line-height: 1.4;
}

/* FAQ Icon */
.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #6ee7b7;
    transition: transform 0.3s ease;
}

/* Active state - Icon rotation and border highlight */
.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-question.active {
    color: #6ee7b7;
}

/* Optional: Add border highlight when active */
.faq-item:has(.faq-question.active) {
    border-color: rgba(52, 211, 153, 0.3);
}

/* FAQ Answer - Closed by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 1rem 0;
}

.faq-answer-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
    margin: 0 0 1rem 0;
}

/* Active state - Open */
.faq-answer.active {
    max-height: 500px;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
    .faq-accordion {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-container {
        padding: 3rem 2rem;
    }
    .phase-2 .faq-container {
        padding: 0 2rem 2rem;
    }

}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}


/* Top Bar */
.top-bar {
    border-bottom: 1px solid #0c152e;
    background-color: #0c152e;
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.breadcrumb-item {
    color: #64748b;
}

.breadcrumb-item.active {
    color: #6ee7b7;
}

.breadcrumb-separator {
    color: #334155;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #34d399;
    color: #020617;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(52, 211, 153, 0.3);
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #6ee7b7;
}

.btn-small {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
}

.cta-desktop {
    display: none;
}

@media (min-width: 640px) {
    .cta-desktop {
        display: inline-flex;
    }
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a7f3d0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: #6ee7b7;
}

.btn-link i {
    width: 1rem;
    height: 1rem;
}


/* Chips */
.geo-section .chips-container {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Mini Stats */
.mini-stats {
    margin-top: 40px;
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) {
    .mini-stats {
    grid-template-columns: repeat(3, 1fr);
    }
}

.mini-stat {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    padding: 16px;
}

.mini-stat-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mini-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.mini-stat-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.mini-stat-text {
    min-width: 0;
}

.mini-stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.mini-stat-value {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Disclaimer */
.disclaimer {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* Card */
.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

@media (min-width: 1024px) {
    .hero-card {
    margin-top: 8px;
    }
}

.card-glow {
    position: absolute;
    inset: -96px;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(80px);
}

.card-glow-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 224px;
    height: 224px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.card-content {
    position: relative;
}

.card-header-text {
    flex: 1;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.card-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Checklist */
.checklist {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.check-icon {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    color: rgba(52, 211, 153, 0.8);
    flex-shrink: 0;
}

/* Divider */
.divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Built For Section */
.built-for-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.built-for-grid {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.built-for-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.built-for-item svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

/* Buttons */
.button-group {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .button-group {
    flex-direction: row;
    align-items: center;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.button-primary {
    background: white;
    color: #070B18;
}

.button-primary:hover {
    opacity: 0.9;
}

.button-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.button svg {
    width: 16px;
    height: 16px;
}

/* Card Button */
.card-button {
    margin-top: 20px;
}

.card-button .button {
    width: 100%;
}




/* Phase 2 Benefits Grid */
.phase2-benefits-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}

@media (min-width: 640px) {
    .phase2-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefit-icon {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
    color: #34d399;
    flex-shrink: 0;
}

/* Phase 2 Hero Actions */
.phase2-hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

/* Phase 2 Hero Disclaimer */
.phase2-hero-disclaimer {
    margin-top: 1rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #64748b;
}

/* Phase 2 Hero Image */
.phase2-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: rgba(15, 23, 42, 0.3);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}

.phase2-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Phase 2 Fit Section */
.phase2-fit-section {
    border-bottom: 1px solid #0f172a;
    border-top: 1px solid #0f172a;
}


/* Section Styles */
.section-intro {
    margin-bottom: 1.75rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #f8fafc;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
}


/* Grid Layouts */
.three-col-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .three-col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Info Cards */
.info-card {
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    background-color: #0c152e;
    overflow: hidden;
}

.card-header-alt {
    padding: 0.75rem 1rem;
}

.card-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #94a3b8;
}

.label-icon {
    width: 1rem;
    height: 1rem;
}

.label-icon-primary {
    color: #6ee7b7;
}

.card-content {
    padding: 2rem;
}

.card-text {
    font-size: 0.875rem;
    color: #e2e8f0;
    line-height: 1.6;
}


/* Phase 2 Create Section */
.phase2-create-section {
    border-bottom: 1px solid #0f172a;
}


/* Card Title Alternative */
.card-title-alt {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
}

/* Phase 2 Feature List */
.phase2-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.phase2-feature-list li {
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.phase2-feature-list li:last-child {
    margin-bottom: 0;
}

/* Card Note */
.card-note {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Phase 2 Deliverables Grid */
.phase2-deliverables-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .phase2-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phase 2 Deliverable List */
.phase2-deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.phase2-deliverable-list li {
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.phase2-deliverable-list li:last-child {
    margin-bottom: 0;
}

.deliverable-label {
    font-weight: 600;
    color: #f8fafc;
}


/* Phase 2 System Section */
.phase2-system-section {
    border-bottom: 1px solid #0f172a;
}


/* Phase 2 System Grid */
.phase2-system-grid {
    margin-top: 1.75rem;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .phase2-system-grid {
        grid-template-columns: 1.3fr 1fr;
    }
}

/* Phase 2 System List */
.phase2-system-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.phase2-system-list li {
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.phase2-system-list li:last-child {
    margin-bottom: 0;
}

/* Phase 2 Sprint Card */
.phase2-sprint-card {
    border-color: rgba(16, 185, 129, 0.4);
    background-color: #0c152e;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
}

/* Phase 2 Sprint Label */
.phase2-sprint-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6ee7b7;
}

/* Phase 2 Sprint Text */
.phase2-sprint-text {
    font-size: 0.75rem;
}

/* Phase 2 Sprint List */
.phase2-sprint-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #e2e8f0;
}

.phase2-sprint-list li {
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.phase2-sprint-list li:last-child {
    margin-bottom: 0;
}


/* Phase 2 CTA Section */
.phase2-cta-section {
    border-top: 1px solid #0f172a;
}


/* Phase 2 CTA Grid */
.phase2-cta-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .phase2-cta-grid {
        grid-template-columns: 1.1fr 1.1fr;
    }
}

/* Phase 2 CTA Content */
.phase2-cta-content {
    max-width: 36rem;
}

.phase2-cta-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}


/* Hero Section */
.phase3-hero {
  position: relative;
  border-bottom: 1px solid #0c152e;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 256px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  padding: 2rem;
}

.hero-content {
  flex: 1;
  animation: fadeInUp 0.45s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a7f3d0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
}

.hero-headline {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #f8fafc;
}

.hero-description {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}

.hero-checklist {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  font-size: 14px;
  color: #e2e8f0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-icon {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  color: #34d399;
  flex-shrink: 0;
}

.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #34d399;
  color: #020617;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #6ee7b7;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: 500;
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-link:hover {
  color: #6ee7b7;
}

.btn-link svg {
  width: 16px;
  height: 16px;
}

.hero-disclaimer {
  margin-top: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #64748b;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.5s ease-out 0.08s both;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2rem 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .hero-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-container {
    padding: 2rem 1rem 3rem;
  }

  .hero-headline {
    font-size: 1.25rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .btn-link {
    width: 100%;
    justify-content: center;
  }
}

/* Fit Section */
.phase3-fit-section {
  border-bottom: 1px solid #0f172a;
}

.fit-container {
  margin: 0 auto;
}

.fit-header {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.fit-heading {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f8fafc;
  margin: 0;
}

.fit-description {
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.fit-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.fit-card {
  background: #0c152e;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
}

.fit-card-header {
  padding: 1rem 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fit-icon {
  width: 16px;
  height: 16px;
  color: #6ee7b7;
  flex-shrink: 0;
}

.fit-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
}

.fit-card-content {
  padding: 0 1.25rem 1.25rem;
}

.fit-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
}

/* Tablet */
@media (min-width: 768px) {
  .fit-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fit-heading {
    font-size: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {

  .fit-heading {
    font-size: 1.5rem;
  }

  .fit-description {
    font-size: 15px;
  }
}

/* Mobile refinements */
@media (max-width: 640px) {
  .fit-heading {
    font-size: 1.125rem;
  }

  .fit-card-header {
    padding: 0.875rem 1rem 0.625rem;
  }

  .fit-card-content {
    padding: 0 1rem 1rem;
  }

  .fit-card-content p {
    font-size: 13px;
  }
}


/* What We Work On Section */
.phase3-what-section {
  background: #0c152e;
  border-bottom: 1px solid #0f172a;
  padding: 3rem 2rem;
}

.what-container {
  margin: 0 auto;
}

.what-header {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.what-heading {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f8fafc;
  margin: 0;
}

.what-description {
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.what-cards-main {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.what-cards-bottom {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.what-card {
  background: #0c152e;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
}

.what-card-header {
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #1e293b;
}

.what-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
  margin: 0;
}

.what-card-content {
  padding: 1rem 1.25rem;
}

.what-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.what-list li {
  font-size: 12px;
  line-height: 1.5;
  color: #e2e8f0;
  padding-left: 1rem;
  position: relative;
}

.what-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: bold;
}

.what-highlight {
  font-weight: 600;
  color: #f8fafc;
}

.what-note {
  margin-top: 0.75rem;
  font-size: 11px;
  line-height: 1.5;
  color: #64748b;
}

/* Tablet */
@media (min-width: 768px) {
  .what-cards-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .what-cards-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-heading {
    font-size: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .phase3-what-section {
    padding: 3rem 5rem;
  }

  .what-description {
    font-size: 15px;
  }

  .what-list li {
    font-size: 13px;
  }
}

/* Mobile refinements */
@media (max-width: 640px) {
  .phase3-what-section {
    padding: 3rem 1rem;
  }

  .what-heading {
    font-size: 1.125rem;
  }

  .what-card-header {
    padding: 0.875rem 1rem 0.625rem;
  }

  .what-card-content {
    padding: 0.875rem 1rem;
  }

  .what-list li {
    font-size: 12px;
  }
}


/* How Phase 3 Fits Section */
.phase3-system-section {
  background: #0c152e;
  border-bottom: 1px solid #0f172a;
  padding: 3rem 2rem;
}

.system-container {
  margin: 0 auto;
}

.system-header {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.system-heading {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f8fafc;
  margin: 0;
}

.system-description {
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.system-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.system-card {
  background: #0c152e;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
}

.system-card-featured {
  background: #0c152e;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.system-card-header {
  padding: 1rem 1.25rem 0.75rem;
}

.system-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
  margin: 0;
}

.system-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6ee7b7;
  margin: 0;
}

.system-card-content {
  padding: 0 1.25rem 1.25rem;
}

.system-intro {
  margin: 0 0 0.75rem 0;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
}

.system-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.system-list li {
  font-size: 12px;
  line-height: 1.5;
  color: #e2e8f0;
  padding-left: 1rem;
  position: relative;
}

.system-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: bold;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .system-cards {
    grid-template-columns: 1.3fr 1fr;
  }

  .system-heading {
    font-size: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .phase3-system-section {
    padding: 3rem 5rem;
  }

  .system-description {
    font-size: 15px;
  }

  .system-intro {
    font-size: 14px;
  }

  .system-list li {
    font-size: 12px;
  }
}

/* Mobile refinements */
@media (max-width: 640px) {
  .phase3-system-section {
    padding: 3rem 1rem;
  }

  .system-heading {
    font-size: 1.125rem;
  }

  .system-card-header {
    padding: 0.875rem 1rem 0.625rem;
  }

  .system-card-content {
    padding: 0 1rem 1rem;
  }
}


/* CTA Section */
.phase3-cta-section {
  border-top: 1px solid #0f172a;
  padding: 3.5rem 1rem;
}

.cta-container {
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.phase3-cta-section .cta-content {
  max-width: 36rem;
}

.cta-heading {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f8fafc;
  margin: 0;
}

.cta-description {
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.cta-disclaimer {
  margin-top: 0.5rem;
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}

.cta-form-wrapper {
  background: #0c152e;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 1.25rem;
}

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

.form-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.required {
  color: #6ee7b7;
}

.optional {
  color: #94a3b8;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #0c152e;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  color: #f1f5f9;
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #34d399;
  box-shadow: 0 0 0 1px #34d399;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  margin-top: 0.25rem;
}

.form-button {
  width: 100%;
  background: #34d399;
  color: #020617;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
  transition: all 0.2s;
}

.form-button:hover {
  background: #6ee7b7;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(16, 185, 129, 0.4);
}

.form-button:active {
  transform: translateY(0);
}

.form-note {
  margin-top: 0.75rem;
  font-size: 11px;
  line-height: 1.5;
  color: #64748b;
}

.form-note:first-of-type {
  margin-top: 1rem;
}

/* Tablet */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .phase3-cta-section {
    padding: 3rem 5rem;
  }

  .cta-container {
    grid-template-columns: 1.1fr 1.1fr;
    align-items: start;
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 15px;
  }
}

/* Mobile refinements */
@media (max-width: 640px) {
  .phase3-cta-section {
    padding: 3rem 1rem;
  }

  .cta-heading {
    font-size: 1.125rem;
  }

  .cta-form-wrapper {
    padding: 1rem;
  }
}
.growsilk-pillars-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0c152e;
    color: #ffffff;
    padding: 0 20px 30px;
}

.growsilk-pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.growsilk-pillars-header {
    margin-bottom: 3rem;
}

.growsilk-pillars-main-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.growsilk-pillars-main-subtitle {
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding-bottom: 2rem;
    text-align: center;
}

.growsilk-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.growsilk-pillar-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .growsilk-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
     .growsilk-pillar-two-column {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
        align-items: center;
    }
    .growsilk-pillars-main-title {
        font-size: 40px;
    }
}

.growsilk-pillar-card {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem;
    border-radius: 1.75rem;
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
}
.growsilk-pillar-card:hover{
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
} 

.growsilk-pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
}


.growsilk-pillar-content {
    position: relative;
    z-index: 1;
}

.growsilk-pillar-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 10px;
}

.growsilk-pillar-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.growsilk-pillar-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.growsilk-pillar-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.growsilk-pillar-title-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.growsilk-pillar-title-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.25rem 0 0 0;
}

.growsilk-pillar-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.growsilk-pillar-features-list {
    list-style: none;
    padding: 0;
}

.growsilk-pillar-left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.growsilk-pillar-features-list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.growsilk-pillar-features-list li:last-child {
    margin-bottom: 0;
}

.growsilk-pillar-check-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: #34d399;
}

.growsilk-pillar-cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.5);
    font-family: inherit;
    margin-top: 8px;
    width: 33%;
}

.growsilk-pillar-cta-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.growsilk-pillar-arrow-icon {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 640px) {
    .growsilk-pillars-main-title {
        font-size: 1.5rem;
    }

    .growsilk-pillars-main-subtitle {
        font-size: 0.875rem;
    }
}

/* How It Works Section - Scoped Styles */

.growsilk-how-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0c152e;
    color: #ffffff;
    padding: 30px 2rem;
}

.growsilk-how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: 
}

.growsilk-how-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .growsilk-how-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Left Column */
.growsilk-how-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.growsilk-how-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    width: fit-content;
}

.growsilk-how-kicker-icon {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.growsilk-how-main-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .growsilk-how-main-title {
        font-size: 2.25rem;
    }
}

.growsilk-how-subtitle {
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 36rem;
}

.growsilk-how-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.growsilk-how-step-card {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.growsilk-how-step-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.growsilk-how-step-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Right Column */
.growsilk-how-right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growsilk-how-outcome-card {
    display: flex;
    align-items: start;
    gap: 0.875rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
}

.growsilk-how-outcome-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.growsilk-how-outcome-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.growsilk-how-outcome-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.growsilk-how-outcome-content {
    flex: 1;
}

.growsilk-how-outcome-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.growsilk-how-outcome-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 640px) {
    .growsilk-how-main-title {
        font-size: 1.75rem;
    }

    .growsilk-how-subtitle {
        font-size: 0.9375rem;
    }

    .growsilk-how-container {
        padding: 1.5rem 1rem;
    }
}

.info-wrapper {
    margin: 0 auto;
    max-width: 1200px;
}
.info-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;

}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .info-section {
        margin: 0 2rem;
    }
    .info-content {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    }
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.info-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 768px;
}

.info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.info-button:hover {
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Advisory-led Section - Scoped Styles */

.growsilk-advisory-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0c152e;
    color: #ffffff;
    padding: 30px 20px;
}

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

.growsilk-advisory-header {
    margin-bottom: 2.5rem;
}

.growsilk-advisory-main-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .growsilk-advisory-main-title {
        font-size: 2.25rem;
    }
}

.growsilk-advisory-subtitle {
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 64rem;
}

/* Cards Grid */
.growsilk-advisory-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .growsilk-advisory-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .growsilk-advisory-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Card */
.growsilk-advisory-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    transition: all 0.3s ease;
}

.growsilk-advisory-card:hover {
    background: #0c152e;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.growsilk-advisory-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
    border-radius: 0.625rem;
    background: rgba(56, 189, 248, 0.1);
    color: #6ee7b7;
}

.growsilk-advisory-icon {
    width: 1.375rem;
    height: 1.375rem;
}

.growsilk-advisory-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.growsilk-advisory-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.3;
}

.growsilk-advisory-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 640px) {
    .growsilk-advisory-main-title {
        font-size: 1.75rem;
    }

    .growsilk-advisory-subtitle {
        font-size: 0.9375rem;
    }

    .growsilk-advisory-card {
        padding: 1.5rem 1.25rem;
    }
}

.services-section {
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
    background-color: #0c152e;
    padding: 30px 2rem;
}

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

.services-header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #f8fafc;
    line-height: 1.2;
}

.services-description {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #cbd5e1;
}

.services-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.service-card {
    background-color: #0c152e;
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.1);
}

.service-card-header {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.service-card-content {
    flex: 1;
}

.service-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.4;
    margin: 0;
}

.service-card-pillar {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6ee7b7;
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: rgba(52, 211, 153, 0.1);
    color: #6ee7b7;
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card-body {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #cbd5e1;
}

/* Responsive */
@media (min-width: 640px) {
    .services-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 30px 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-section {
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
    background-color: #0c152e;
    padding: 3.5rem 1rem;
}

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

.about-grid {
    display: grid;
    gap: 2.5rem;
}

.about-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #f8fafc;
    line-height: 1.2;
}

.about-description {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #cbd5e1;
}

.about-highlight {
    font-weight: 600;
    color: #a7f3d0;
}

.info-cards-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.info-card {
    border-radius: 0.5rem;
    border: 1px solid #1e293b;
    background-color: #0c152e;
    padding: 1rem;
}

.info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #94a3b8;
}

.info-card-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.snapshot-card {
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    background-color: #0c152e;
    overflow: hidden;
    padding: 1rem;
}

.snapshot-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #1e293b;
}

.snapshot-title {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
}

.snapshot-subtitle {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #94a3b8;
}

.snapshot-body {
    padding: 0.75rem 1rem 1rem;
}

.snapshot-metrics {
    display: grid;
    gap: 0.75rem;
}

.snapshot-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #1e293b;
    background-color: rgba(2, 6, 23, 0.6);
    font-size: 14px;
}

.metric-label {
    color: #94a3b8;
}

.metric-value {
    font-weight: 600;
    color: #6ee7b7;
}

.metric-badge {
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background-color: rgba(52, 211, 153, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #6ee7b7;
}

/* Responsive */
@media (min-width: 640px) {
    .about-title {
        font-size: 1.5rem;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 3.5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}
.geo-section {
    padding: 30px 2rem;
}

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

.geo-grid {
    display: grid;
    gap: 1.5rem;
}

.geo-badge {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6ee7b7;
}

.geo-title {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #f8fafc;
    line-height: 1.3;
}

.geo-description {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #cbd5e1;
}

.geo-highlight {
    font-weight: 600;
    color: #a7f3d0;
}

.geo-example {
    border-radius: 0.75rem;
    border: 1px solid rgba(52, 211, 153, 0.3);
    background-color: #0c152e;
    padding: 1rem;
}

.example-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #6ee7b7;
    margin-bottom: 0.25rem;
}

.example-text {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.example-answer {
    margin-top: 0.75rem;
}

.answer-text {
    font-size: 14px;
    line-height: 1.625;
    color: #e2e8f0;
}

.client-highlight {
    font-weight: 600;
    color: #6ee7b7;
}

.example-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(30, 41, 59, 0.4);
}

.footer-title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.footer-list {
    margin: 0.25rem 0 0 0;
    padding: 0;
    list-style: none;
}

.footer-list li {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.footer-list li::before {
    content: "• ";
    color: #6ee7b7;
    font-weight: bold;
    margin-right: 0.25rem;
}

/* Responsive */
@media (min-width: 640px) {
    .geo-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .geo-grid {
        grid-template-columns: 1.2fr 1.1fr;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .geo-section {
        padding: 4rem 2rem 4rem;
    }

    .geo-title {
        font-size: 1.5rem;
    }
}



.challenges-section {
    margin-top: 1rem;
}

.challenges-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.challenge-card {
    border: 1px solid #1e293b;
    background-color: #0c152e;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}

.challenge-card:hover {
    background-color: rgba(15, 23, 42, 0.85);
}

.how-we-work-section {
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}


.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #f8fafc;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.description {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #cbd5e1;
}

.framework-highlight {
    font-weight: 600;
    color: #6ee7b7;
}

.cards-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.card-recommended {
    border: 1px solid rgba(16, 185, 129, 0.5);
    background-color: #0c152e;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.card-header {
    padding: 1rem 1rem 0.75rem;
}

.badge {
    font-size: 0.688rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6ee7b7;
}

.card-title {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.25;
}

.phase-label {
    margin-top: 0.25rem;
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6ee7b7;
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1rem 1rem;
}


.features-list {
    margin-top: 1rem;
    list-style: none;
}

.feature-item {
    margin-bottom: 0.375rem;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}
.feature-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
}
.feature-item-header span {
    font-weight: 800;
}

.bullet {
    margin-top: 0.25rem;
    height: 0.25rem;
    width: 0.25rem;
    border-radius: 9999px;
    background-color: #34d399;
    flex-shrink: 0;
}

.note {
    margin-top: 0.25rem;
    font-size: 0.688rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-note {
    margin-top: 1.5rem;
    font-size: 0.688rem;
    color: #94a3b8;
    line-height: 1.5;
}

.hero-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  cursor: pointer;
  overflow: hidden;
}

.hero-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.offers-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header {
    margin-bottom: 32px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-title {
    font-size: 36px;
    }
}

.section-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 810px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-subtitle {
    font-size: 16px;
    }
}

.cards-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}

.offer-card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s;
}

.offer-card:hover {
    transform: translateY(-4px);
}

.offer-card.featured {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
}

.card-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    display: inline;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}



.card-features {
    list-style: none;
    padding-top: 15px;
}

.card-features li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-buttons {
    display: grid;
}

.card-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.card-button:hover {
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}


.card-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-note {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
}


.score-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-title {
    font-size: 36px;
    }
}

.section-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
    .section-subtitle {
    font-size: 16px;
    }
}

.score-card {
    border: 1px solid rgba(52, 211, 153, 0.4);
    background: #0c152e;
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 24px;
    padding: 24px;
    margin-top: 24px;
}
.score-card:hover {
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}
.score-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .score-header {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    }
}

.score-info {
    flex: 1;
}

.score-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.score-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.score-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.header-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.questions-container {
    display: grid;
    gap: 16px;
}

.question-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.question-header {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
}

.help-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.question-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.options-grid {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.2s;
}

.option-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.option-label.selected {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.option-label input[type="radio"] {
    accent-color: white;
    cursor: pointer;
}

.result-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
}

.result-card.hidden {
    display: none;
}

.result-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.result-pillar {
    color: white;
    font-weight: 700;
}

.result-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .result-actions {
    flex-direction: row;
    }
}


.placeholder-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 16px;
}


/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.open {
    display: flex;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #070B16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
}

.modal-header-text {
    flex: 1;
}

.modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-top: 4px;
}

.modal-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-content {
    padding: 20px 24px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .form-row.two-cols {
    grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    color: white;
    font-family: inherit;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #070B16;
    color: white;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.what-happens-next {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
}

.what-happens-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.what-happens-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.what-happens-list li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.what-happens-note {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: white;
    color: #020617;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 16px;
    font-family: inherit;
}

.submit-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.offers-section button.card-button.primary a {
    color: #ffffff;
    text-decoration: none;
}



.geo-section {
    position: relative;
    overflow: hidden;
}


.section-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


/* Header */
.section-header {
    margin: 0 auto;
    text-align: center;
}

.section-badge {
   display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sparkles-icon {
    width: 16px;
    height: 16px;
}

.section-title {
    margin-top: 10px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .section-title {
    font-size: 40px;
    }
}

.section-title .subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.95);
}

.section-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    padding: 0 3rem;
    text-align: center;
    max-width: 810px;
    margin: 0 auto;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}


.momentum-section {
    padding: 1rem;
    height: 240px;
}
.momentum-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.momentum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.momentum-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.momentum-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.momentum-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.momentum-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .momentum-section {
    padding: 32px 24px;
    }

    .momentum-title {
    font-size: 26px;
    margin-bottom: 24px;
    }

    .momentum-text {
    font-size: 14px;
    }

    .momentum-list {
    gap: 20px;
    }
}

@media (max-width: 480px) {
    .momentum-section {
    padding: 24px 20px;
    border-radius: 16px;
    }

    .momentum-title {
    font-size: 24px;
    }

    .momentum-text {
    font-size: 14px;
    }

    .momentum-icon {
    width: 20px;
    height: 20px;
    }
}
@media (min-width: 1024px) {
    .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    }
}

.example-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-3px);
}

.card-glow {
    position: absolute;
    inset: -96px;
    pointer-events: none;
    opacity: 0;
    filter: blur(80px);
    transition: opacity 0.5s;
}

.example-card:hover .card-glow {
    opacity: 1;
}

.card-glow-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 208px;
    height: 208px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.card-header {
    position: relative;
    display: flex;
    gap: 12px;
}
.example-card .card-header {
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0 0.75rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid;
    flex-shrink: 0;
}

.card-icon.emerald {
    color: rgb(52, 211, 153);
    border-color: rgba(52, 211, 153, 0.2);
    background: rgba(16, 185, 129, 0.1);
}

.card-icon.cyan {
    color: rgb(103, 232, 249);
    border-color: rgba(103, 232, 249, 0.2);
    background: rgba(6, 182, 212, 0.1);
}

.card-icon.violet {
    color: rgb(196, 181, 253);
    border-color: rgba(196, 181, 253, 0.2);
    background: rgba(139, 92, 246, 0.1);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-label-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.card-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.accent-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.accent-badge.emerald {
    border-color: rgba(52, 211, 153, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: rgb(52, 211, 153);
}

.accent-badge.cyan {
    border-color: rgba(103, 232, 249, 0.2);
    background: rgba(6, 182, 212, 0.1);
    color: rgb(103, 232, 249);
}

.accent-badge.violet {
    border-color: rgba(196, 181, 253, 0.2);
    background: rgba(139, 92, 246, 0.1);
    color: rgb(196, 181, 253);
}

.ai-snippet {
    margin-top: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
}

.snippet-content {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.7;
}

.snippet-row {
    margin-bottom: 12px;
}

.snippet-row:last-child {
    margin-bottom: 0;
}

.snippet-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.snippet-text {
    color: white;
}

.snippet-text .emphasis {
    color: rgb(52, 211, 153);
}

.snippet-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

.card-bullets {
    margin-top: 16px;
}

.bullets-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.bullets-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.bullets-list li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 8px;
    width: 100%;
}

.card-footer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.card-button {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.card-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* CTA Section */
.cta-section {
    margin-top: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 20px;
    backdrop-filter: blur(10px);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    }
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.cta-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.geo-section .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    box-shadow: none;
}
.geo-section .cta-button a{
    color: #ffffff;
    text-decoration: none;
}

.geo-section .cta-button:hover {
    opacity: 0.9;
}


.outcomes-section {
    position: relative;
    max-width: 1250;
    margin: 0 auto;
    padding: 4rem 2rem;
}


.sparkles-icon {
    width: 16px;
    height: 16px;
}


/* Cards Grid */
.outcomes-grid {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outcomes-grid {
    grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.outcome-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}


.card-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.card-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.card-text {
    min-width: 0;
    flex: 1;
}


.deliverables-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Cards Grid */
.deliverables-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (min-width: 1024px) {
    .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    .local .deliverables-grid{
        grid-template-columns: repeat(4, 1fr);
    }
    .b2b .deliverables-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.deliverable-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    transition: transform 0.2s ease;
}

.deliverable-card:hover {
    transform: translateY(-2px);
}


.options-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.options-section  .section-subtitle{
    padding-bottom: 30px;
}
.options-section .options-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .options-section .options-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    .dtc-ecommerce.options-section .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.option-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.option-card .card-header{
    width: 100%;
}
.card-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
}

.card-category.emerald {
    color: rgba(52, 211, 153, 0.9);
}

.card-category.cyan {
    color: rgba(52, 211, 153, 0.9);
}

.card-main-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}
.option-card .card-description{
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .card-main-title {
    font-size: 22px;
    }
}

/* Badge */
.option-card .badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.option-card .badge.emerald {
    border-color: rgba(52, 211, 153, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: rgb(52, 211, 153);
}

.option-card .badge.cyan {
    border-color: rgba(52, 211, 153, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: rgb(52, 211, 153);
}

/* Features List */
.option-card .features-list {
    display: grid;
    gap: 8px;
}

.option-card .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.check-icon.emerald {
    color: rgba(52, 211, 153, 0.8);
}

.check-icon.cyan {
     color: rgba(52, 211, 153, 0.8);
}

/* Card Actions */
.option-card .card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .option-card .card-actions {
    flex-direction: row;
    align-items: center;
    }
}





.process-wrapper .process-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Section Header */
.process-wrapper .section-header {
    margin-bottom: 40px;
}


/* Cards Grid */
.process-wrapper .process-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .process-wrapper .process-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.process-wrapper .process-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.process-wrapper .card-glow {
    position: absolute;
    inset: -96px;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(80px);
}

.process-wrapper .card-glow-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 224px;
    height: 224px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.process-wrapper .card-content {
    position: relative;
}

/* Card Header */
.process-wrapper .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.process-wrapper .card-header-left {
    flex: 1;
}

.process-wrapper .step-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.process-wrapper .step-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Badge */
.process-wrapper .phase-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Checklist */
.process-wrapper .checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.process-wrapper .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.process-wrapper .check-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: rgba(52, 211, 153, 0.8);
    flex-shrink: 0;
}

/* Disclaimer */
.process-wrapper .disclaimer {
    margin-top: 32px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}





.score-info-with-icon {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.pillar-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.score-text-content {
    flex: 1;
}

.score-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 220px;
}

@media (max-width: 768px) {
    .score-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .score-actions-stack {
        width: 100%;
        min-width: auto;
    }
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.action-button.primary {
    background: white;
    color: #0f172a;
}

.action-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.action-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.action-button .arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-score-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-weight: 600;
}

.result-label {
    color: white;
}

.result-percentage {
    color: white;
    font-size: 1rem;
}

.result-tier {
    color: rgba(255, 255, 255, 0.9);
}

.result-button.small {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
}

.result-text.secondary {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.disclaimer-text {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
}

.button-group .button.button-primary a {
    color: #000000;
    text-decoration: none;
}

.trust-system {
    padding-bottom: 2rem;
}
.trust-system .section-header{
    margin-bottom: 40px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.pillar-card {
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.pillar-card:hover{
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.pillar-icon svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.75);
}

.pillar-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.pillar-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.pillar-bullets {
    list-style: none;
    position: relative;
    z-index: 1;
}

.pillar-bullets li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pillar-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.pillar-bullets li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.card-content-header {
    display: flex;
    gap: 8px;
    align-items: center;
}
section.phase-two.deliverables-section {
    padding-top: 4rem;
}
.deliverables-section .process-wrapper {
    padding-top: 3rem;
}



@media (min-width: 1024px) {
    .phase-2.process-wrapper .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Bottom Grid (2 columns) */
 .bottom-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
      margin-top: 2rem;
    }

    @media (min-width: 1024px) {
        .bottom-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        #phase3-fit-section .bottom-grid {
            grid-template-columns: .8fr 1.2fr;
        }
    }

/* Special Cards */
 .special-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.special-card .card-glow {
    position: absolute;
    inset: -96px;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(80px);
}

.special-card .card-glow-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 224px;
    height: 224px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

 .special-card-content {
    position: relative;
}

.special-card-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

/* Bullet List */
.phase3-deliverables-wrapper .bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.phase3-deliverables-wrapper .bullet-list li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.phase3-deliverables-wrapper .bullet-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.phase3-deliverables-wrapper .special-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.phase3-deliverables-wrapper .disclaimer-text {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* Summary Items Grid */
.phase3-deliverables-wrapper .summary-items {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.phase3-deliverables-wrapper .summary-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.phase3-deliverables-wrapper {
    padding-top: 3rem;
}
.phase-2.faq-section {
    padding-top: 3rem;
}

.disclaimer a {
    color: rgba(255, 255, 255, 0.55);
}

.why-dtc-section .section-subtitle{
    padding-bottom: 20px;
}
.why-dtc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.why-dtc-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    transition: transform 0.2s ease;
}
.dtc-ecommerce .option-card .feature-item {
    background: none;
    border: none;
    padding: 0;
    align-items: flex-start;
}
.dtc-ecommerce.options-section {
    padding: 0 2rem 2rem;
}
.example-card .card-content {
    gap: 0;
}


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

/* Header */
.section-header {
    margin-bottom: 32px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(16, 185, 129, 0.9);
    margin-bottom: 16px;
}

/* Navigation Bar */
.carousel-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-tip {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.carousel-tip code {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Carousel */
.case-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    margin-bottom: 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.case-carousel::-webkit-scrollbar {
    display: none;
}

/* Case Card */
.case-card {
    min-width: 340px;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.case-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(16, 185, 129, 0.9);
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
}

.case-external-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.case-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 12px;
}

.case-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Bottom Cards Grid */
.bottom-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.info-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.info-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
    font-size: 28px;
    }

    .carousel-nav {
    flex-direction: column;
    align-items: end;
    }

    .case-card {
    min-width: 300px;
    max-width: 300px;
    }

    .bottom-cards {
    grid-template-columns: 1fr;
    }
}
.local-studies button.action-button.primary {
    margin-top: 1rem;
}
.bottom.deliverables-section{
    padding: 0 2rem;
}
.bottom-cards button.action-button.primary {
    margin-top: 1rem;
}
.bottom-cards .feature-item {
    font-size: 14px;
}

/* Be Found */
.be-found .hero-features {
    display: block;
}

.be-found .feature-item {
    display: flex;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
}

/* SYSTEM */
#system .card-icon {
    border: none;
}
#system .card-list li::before{
    content: '';
}
.card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 16px;
}
.card-list {
  margin-top: 24px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.card-description {
    font-size: 14px;
    line-height: 1.25;
    margin: 0;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* SYSTEM FLOW BOX */
.system-flow-box {
  margin-top: 48px;
  background-color: #f8fafc;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.flow-icon {
  flex-shrink: 0;
  color: #a855f7;
}

.flow-content {
  flex: 1;
}

.flow-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.flow-description {
  margin-top: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .system-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .card {
    padding: 24px;
  }

  .system-flow-box {
    padding: 24px;
  }
}

/* STEP ROW */
#audit-playbook {
    padding: 4rem 0 16px;
}
/* PLAYBOOK HEADER */
.playbook-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
}

.playbook-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.badge-icon {
  color: #64748b;
  flex-shrink: 0;
}

.playbook-header .badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.playbook-tagline {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 640px) {
  .playbook-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .playbook-tagline {
    font-size: 14px;
  }
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* STEP CONTENT (LEFT SIDE) */
.step-content {
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
  
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.step-label {
  flex: 1;
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.step-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* STEP IMAGE (RIGHT SIDE) */
.step-image {
  border-radius: 16px;
  overflow: hidden;
}

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

/* Responsive */
@media (max-width: 768px) {
  .audit-section {
    padding: 64px 0;
  }

  .audit-title {
    font-size: 32px;
  }

  .step-content {
    padding: 28px;
  }

  .step-title {
    font-size: 20px;
  }
}


/* RULES GRID */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

.rule-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.rule-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.rule-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #ffffff;
}

.rule-content {
  flex: 1;
  min-width: 0;
}

.rule-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.rule-description {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .content-rules-section {
    padding: 64px 0;
  }

  .rules-title {
    font-size: 36px;
  }

  .rule-card {
    padding: 24px;
  }

  .rule-icon {
    width: 40px;
    height: 40px;
  }
}

#proof-architecture {
    padding: 4rem 0 0;
}

#phase3-fit-section{
    padding-bottom: 2rem;
}

#phase3-fit-section .card-content {
    padding: 0 1rem;
}
#phase3-fit-section .info-card{
    padding: 10px 34px;
}
#phase3-fit-section .step-list {
    padding: 20px 0;
}
.before-after.special-card {
    padding: 0;
    border: none;
}
.aeo.info-button {
    justify-content: center;
    display: flex;
    color: rgb(52, 211, 153);
}

.surge-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}
.surge-section.frameworks.choosen{
    margin: 0 auto;

}
/* Pill / Eyebrow */
  .pill {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  /* Heading */
  .surge-section h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
  }

  /* Subtitle */
  .surge-section p.subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 870px;
    margin: 0 auto;
  }
  .intent-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 28px 26px;
    margin-top: 16px;
}
 
/* Header Row */
.card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}
 
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 6px;
    margin: 0 0 6px 0;
}
 
.card-header-row > div:first-child > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}
 
/* Amber Pill Badge */
.pill-amber {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 12px;
    color: #fbbf24;
    white-space: nowrap;
    flex-shrink: 0;
}
 
.pill-amber svg {
    width: 13px;
    height: 13px;
    stroke: #fbbf24;
}
 
/* ================================================
   TWO COLUMN GRID
   ================================================ */
 
.intent-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
 
.intent-column {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 24px;
}
 
/* Column Header */
.intent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
 
.intent-header svg {
    width: 20px;
    height: 20px;
    color: #34d399;
    flex-shrink: 0;
    stroke-width: 2;
}
 
.intent-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
}
 
/* Column Subheading */
.intent-subheading {
    font-size: 12px;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    margin: 0 0 12px 0;
}
 
/* Column Description */
.intent-description {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.65;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
}
 
/* ================================================
   CHECKLIST (CHAT COLUMN)
   ================================================ */
 
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 12px;
    line-height: 1.5;
}
 
.checklist li:last-child {
    margin-bottom: 0;
}
 
.check-icon {
    width: 18px;
    height: 18px;
    color: #34d399;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2.5;
}
 
/* ================================================
   VOICE GRID (VOICE COLUMN)
   ================================================ */
 
.voice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
}
 
.voice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
}
 
.voice-card h4 {
    font-size: 12.5px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
    margin: 0 0 4px 0;
}
 
.voice-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}
 
/* Voice Note */
.voice-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(52, 211, 153, 0.3);
    padding: 10px 12px;
    border-radius: 8px;
    margin: 0;
}
 
/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
 
@media (max-width: 1024px) {
    .intent-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
 
    .card-header-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }
 
    .pill-amber {
        align-self: flex-start;
    }
}
 
@media (max-width: 768px) {
    .intent-card {
        padding: 20px 16px;
        margin-top: 12px;
    }
 
    .card-header-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }
 
    .intent-card .card-title {
        font-size: 1.125rem;
    }
 
    .card-header-row > div:first-child > p {
        font-size: 12px;
    }
 
    .intent-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }
 
    .intent-column {
        padding: 18px;
        border-radius: 14px;
    }
 
    .intent-header svg {
        width: 18px;
        height: 18px;
    }
 
    .intent-header h3 {
        font-size: 15px;
    }
 
    .voice-grid {
        grid-template-columns: 1fr;
    }
}
 
@media (max-width: 480px) {
    .intent-card {
        padding: 16px 12px;
    }
 
    .intent-card .card-title {
        font-size: 1rem;
    }
 
    .intent-column {
        padding: 14px;
    }
 
    .intent-header h3 {
        font-size: 14px;
    }
 
    .intent-description,
    .checklist li {
        font-size: 13px;
    }
 
    .voice-card h4 {
        font-size: 12px;
    }
 
    .voice-card p {
        font-size: 11px;
    }
}
.surge-section.frameworks .btn-group {
    justify-content: normal;
}
.surge-section.frameworks.choosen .btn-group {
   margin-top: 20px;
}

  /* Cards grid */
  .surge-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  @media (max-width: 640px) {
    .surge-section .cards-grid { grid-template-columns: 1fr; }
    .surge-section.frameworks .cards-grid {
        grid-template-columns: repeat(1fr);
    }
  }

  .surge-section .card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    padding: 24px;
  }

  .surge-section .card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 15px;
  }

  .surge-section .card-title svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.85);
  }

  .surge-section .card p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  /* Buttons */
  .surge-section .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .surge-section.frameworks .btn-group {
    justify-content: normal;
}
  .surge-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
  }

  .surge-section .btn:hover { opacity: 0.85; }

  .surge-section .btn-primary {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .surge-section .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
  }

  .surge-section .btn svg {
    width: 16px;
    height: 16px;
  }

  .surge-section.frameworks .cards-grid {
    grid-template-columns: repeat(2, 1fr);
}
.surge-section.frameworks{
    padding: 2rem;
}
.checklist li {
    list-style: none;
}

.surge .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.surge .btn-primary {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.surge .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
}
.surge .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.who-we-work-section {
    padding: 40px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 100%);
    
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 32px;
    height: 32px;
    stroke: #34d399;
    stroke-width: 2;
}

.service-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .main-title {
        font-size: 36px;
    }

    .service-card {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .who-we-work-section {
        padding: 60px 16px;
    }

    .main-title {
        font-size: 28px;
    }

    .main-description {
        font-size: 16px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-image {
        height: 180px;
    }
}


.top-section {
    margin: 0 auto;
    text-align: center;
    max-width: 830px;
}

.why-growth-section {
    background-color: #0c152e;
}

.why-growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

/* Eyebrow Badge */
.why-growth-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Main Heading */
.why-growth-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin: 0 0 16px 0;
    max-width: 900px;
}

/* Subtitle */
.why-growth-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 48px 0;
    max-width: 750px;
}

/* Grid Container */
.why-growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* Individual Card */
.why-growth-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    font-size: 17px;
    line-height: 1.6;
    color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.why-growth-card:hover {
    border-color: #34d399;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-growth-section {
        padding: 40px 16px;
    }

    .why-growth-title {
        font-size: clamp(32px, 5vw, 48px);
    }

    .why-growth-subtitle {
        font-size: 16px;
    }

    .why-growth-grid {
        grid-template-columns: 1fr;
    }

    .why-growth-card {
        padding: 24px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-growth-section {
        padding: 30px 16px;
    }

    .why-growth-title {
        font-size: 28px;
    }

    .why-growth-badge {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .why-growth-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .why-growth-grid {
        gap: 16px;
    }
}  

.ai-era-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

/* Eyebrow Badge */
.ai-era-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Main Heading */
.ai-era-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin: 0 0 24px 0;
    max-width: 900px;
}

/* Subtitle */
.ai-era-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 48px 0;
    max-width: 900px;
}

/* Grid Container - 3 columns */
.ai-era-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual Feature Item */
.ai-era-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.ai-era-item:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.05);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-era-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-era-section {
        padding: 60px 16px;
    }

    .ai-era-title {
        font-size: 36px;
    }

    .ai-era-subtitle {
        font-size: 16px;
    }

    .ai-era-grid {
        grid-template-columns: 1fr;
    }

    .ai-era-item {
        padding: 20px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ai-era-section {
        padding: 40px 16px;
    }

    .ai-era-title {
        font-size: 28px;
    }

    .ai-era-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ai-era-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .ai-era-grid {
        gap: 16px;
    }
}

.growth-system-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Top Section */
.top-section {
    margin-bottom: 60px;
    text-align: center;
}

/* Eyebrow Badge */
.growth-system-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Main Heading */
.growth-system-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Subtitle */
.growth-system-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Container - 4 columns */
.growth-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Individual Stage Card */

.growth-stage-card:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

/* Icon Container */
.stage-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    flex-shrink: 0;
    background: #1e293b;
}

.stage-icon svg {
    width: 24px;
    height: 24px;
}

/* Card Title */
.stage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

/* Card Description */
.stage-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* CTA Button Section */
.growth-system-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.see-growth-system-btn {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-growth-system-btn:hover {
    border-color: #64748b;
    background: #f1f5f9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .growth-system-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .growth-system-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .growth-system-section {
        padding: 20px 16px;
    }

    .growth-system-container {
        padding: 0 16px;
    }

    .growth-system-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .growth-system-title {
        font-size: 32px;
    }

    .growth-system-subtitle {
        font-size: 15px;
    }

    .growth-stage-card {
        padding: 28px 24px;
    }

    .stage-title {
        font-size: 17px;
    }

    .stage-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .growth-system-section {
        padding: 40px 16px;
    }

    .growth-system-title {
        font-size: 28px;
    }

    .growth-system-badge {
        font-size: 11px;
    }

    .growth-system-subtitle {
        font-size: 14px;
    }

    .growth-stage-card {
        padding: 24px 20px;
    }

    .stage-title {
        font-size: 16px;
    }

    .stage-icon {
        width: 48px;
        height: 48px;
    }
}
/* Eyebrow Badge */
.proof-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Main Heading */
.proof-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin: 0 0 20px 0;
    max-width: 900px;
}

/* Subtitle */
.proof-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 60px 0;
    max-width: 900px;
}

/* Grid Container - 3 columns */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

/* Case Study Card */
.case-study-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* Case Study Label */
.case-study-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Case Study Description */
.case-study-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Button */
.proof-button {
    display: inline-block;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proof-button:hover {
    border-color: #34d399;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .proof-section {
        padding: 60px 16px;
    }

    .proof-title {
        font-size: 36px;
    }

    .proof-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-study-card {
        padding: 30px 24px;
    }

    .case-study-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .proof-section {
        padding: 40px 16px;
    }

    .proof-title {
        font-size: 28px;
    }

    .proof-badge {
        font-size: 12px;
    }

    .proof-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .case-study-card {
        padding: 24px 20px;
    }

    .case-study-label {
        font-size: 11px;
    }

    .case-study-description {
        font-size: 14px;
    }

    .proof-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.better-growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

/* Eyebrow Badge */
.better-growth-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Main Heading */
.better-growth-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin: 0 0 20px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Subtitle */
.better-growth-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Container - 3 columns */
.better-growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Benefit Item */
.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .better-growth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .better-growth-section {
        padding: 60px 16px;
        text-align: center;
    }

    .better-growth-title {
        font-size: 36px;
    }

    .better-growth-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .better-growth-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 24px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .better-growth-section {
        padding: 40px 16px;
    }

    .better-growth-title {
        font-size: 28px;
    }

    .better-growth-badge {
        font-size: 12px;
    }

    .better-growth-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .benefit-item {
        padding: 20px 16px;
        font-size: 14px;
    }
}
.top-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== HEADER SECTION ===== */
.problem .header-section {
    text-align: center;
    margin-bottom: 40px;
}

.problem .subtitle {
    color: #00d9a3;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.problem .problem .main-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.problem .description {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PROBLEMS GRID ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.problem-card {
    border: 1px solid rgba(0, 217, 163, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    border-color: rgba(0, 217, 163, 0.5);
    background: rgba(20, 28, 45, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.problem-card:hover .icon-wrapper {
    background: rgba(0, 217, 163, 0.2);
    border-color: rgba(0, 217, 163, 0.4);
}

/* Problem Number */
.problem-number {
    color: #00d9a3;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Problem Title */
.problem-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

/* Problem Description */
.problem-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    margin-top: 80px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: rgba(0, 217, 163, 0.4);
    border-radius: 2px;
    margin-bottom: 20px;
}

.solutions-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.solutions-subtitle {
    color: #9ca3af;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: rgba(20, 28, 45, 0.6);
    border: 1px solid rgba(0, 217, 163, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-card:hover {
    border-color: rgba(0, 217, 163, 0.5);
    background: rgba(20, 28, 45, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.solution-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 163, 0.1);
    border: 1px solid rgba(0, 217, 163, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
    background: rgba(0, 217, 163, 0.2);
    border-color: rgba(0, 217, 163, 0.4);
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

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

/* CTA Links */
.cta-link {
    color: #00d9a3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.cta-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .solutions-title {
        font-size: 1.2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card,
    .solution-card {
        padding: 24px;
        min-height: auto;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .solution-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.4rem;
    }

    .problem-title,
    .solution-card h3 {
        font-size: 1rem;
    }

    .problem-card,
    .solution-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .problem-description,
    .solution-card p {
        font-size: 0.85rem;
    }
}

/* ===== HEADER SECTION ===== */
.shift .header-section {
    text-align: center;
    margin-bottom: 60px;
}


/* ===== SHIFTS GRID ===== */
.shifts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.shift-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #34d399;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shift-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 217, 163, 0.1);
    border-left-color: #00a878;
}

/* Icon Wrapper */
.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.shift-item:hover .icon-circle {
    background: rgba(0, 217, 163, 0.2);
}

/* Content */
.shift-content {
    flex: 1;
}

.shift-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.shift-description {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .shifts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .shift-item {
        padding: 28px;
    }
}

@media (max-width: 768px) {
     .shift .main-title {
        font-size: 1.6rem;
    }
    .shifts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .shift-item {
        padding: 24px;
        gap: 20px;
    }

    .icon-circle {
        width: 30px;
        height: 4px;
        font-size: 1.5rem;
    }

    .shift-title {
        font-size: 1.05rem;
    }

    .description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .shift .main-title {
        font-size: 1.4rem;
    }

    .header-section {
        margin-bottom: 40px;
    }

    .shifts-grid {
        gap: 16px;
    }

    .shift-item {
        padding: 20px;
        gap: 16px;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }

    .shift-title {
        font-size: 0.95rem;
    }

    .shift-description {
        font-size: 0.85rem;
    }
}
/* ===== OUTCOMES TWO COLUMN ===== */
.outcomes-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.outcomes-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===== OUTCOME ITEM ===== */
.outcome-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.outcome-item:hover .check-circle {
    background: rgba(0, 217, 163, 0.2);
    border-color: #00d9a3;
    transform: scale(1.1);
}

/* Check Circle */
.check-circle {
    width: 30px;
    height: 30px;
    background: rgba(0, 217, 163, 0.1);
    border: 2px solid rgba(0, 217, 163, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d9a3;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Outcome Text */
.outcome-text {
    flex: 1;
    padding-top: 6px;
}

.outcome-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.outcome-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .outcomes-two-column {
        gap: 30px;
    }

    .outcomes-column {
        gap: 20px;
    }

    .outcome-item {
        gap: 16px;
    }

    .check-circle {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .outcome-title {
        font-size: 0.95rem;
    }

    .outcome-description {
        font-size: 0.85rem;
    }

    .summary-section {
        padding: 36px;
    }

    .summary-title {
        font-size: 1.2rem;
    }

    .summary-description {
        font-size: 0.95rem;
    }
    }

    @media (max-width: 480px) {

    .outcomes-two-column {
        gap: 24px;
    }

    .outcomes-column {
        gap: 16px;
    }

    .outcome-item {
        gap: 14px;
    }

    .check-circle {
        width: 30px;
        height: 30px;
        font-size: .8rem;
    }

    .outcome-title {
        font-size: 0.9rem;
    }

    .outcome-description {
        font-size: 0.8rem;
    }

    .summary-section {
        padding: 24px;
    }

    .summary-title {
        font-size: 1.1rem;
    }

    .summary-description {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .description {
        font-size: 0.9rem;
    }
    }

.growth-system-grid.how-we-work-grid {
    grid-template-columns: repeat(3, 1fr);
}
.growth-stage-card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.2s ease;
}


/* Positioning / Alternative Section */

.positioning-top {
    text-align: center;
    margin-bottom: 30px;
}

.positioning-top .growth-system-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.positioning-top .growth-system-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Grid - 2 Columns */
.positioning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Positioning Cards */
.positioning-card {
    border-radius: 1.5rem;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Card - Left */
.positioning-card-light {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.positioning-card-light:hover {
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Dark Card - Right */
.positioning-card-dark {
    border: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow: 0 10px 25px rgba(52, 211, 153, 0.15);
}

.positioning-card-dark:hover {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.25);
}

/* Card Titles */
.positioning-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.positioning-card-title-dark {
    color: #f8fafc;
}

/* List Container */
.positioning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* List Items */
.positioning-item {
    padding: 12px 16px;
    border-radius: 0.75rem;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.positioning-item:hover {
    background-color: #e2e8f0;
    color: #334155;
}

.positioning-item-dark {
    background-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(52, 211, 153, 0.1);
}

.positioning-item-dark:hover {
    background-color: rgba(52, 211, 153, 0.1);
    color: #f8fafc;
    border-color: rgba(52, 211, 153, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .positioning-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
 }

    @media (max-width: 768px) {

    .positioning-top .growth-system-title {
        font-size: 36px;
    }

    .positioning-card {
        padding: 32px 24px;
    }

    .positioning-card-title {
        font-size: 18px;
    }

    .positioning-item {
        font-size: 14px;
        padding: 10px 14px;
    }
}

    @media (max-width: 480px) {

    .positioning-top .growth-system-title {
        font-size: 28px;
    }

    .positioning-card {
        padding: 24px 20px;
    }

    .positioning-grid {
        gap: 20px;
    }
 }