:root {
    --bg-color: #ffffff;
    --text-primary: #121212;
    --text-secondary: #7e7e7e;
    --logo-color: #555555;
    --badge-bg: #b0b0b0;
    --accent-primary: rgb(76, 65, 123);
    --accent-soft: rgba(76, 65, 123, 0.08);
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Design System Tokens */
    --container-max-width: 1200px;
    --content-max-width: 800px;
    --display-1: 64px;
    --display-2: 48px; /* Homogenized value for section titles */
    --display-3: 24px;
    --display-1-mobile: 36px;
    --display-2-mobile: 32px;
    --weight-bold: 700;
    --weight-medium: 600;
    --heading-line-height: 1.15;
    --heading-letter-spacing: -0.02em;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    color: var(--text-primary);
}

::selection {
    background-color: var(--accent-soft);
    color: var(--accent-primary);
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 8px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a.active {
    color: #000;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.get-started-btn {
    background-color: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid var(--accent-primary);
}

.get-started-btn:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 80px;
    background-color: #fff;
    text-align: center;
}

.hero-centered {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    color: #000;
}

.accent-text {
    color: var(--accent-primary);
}

.hero-subtitle {
    font-size: 26px; /* Increased from 20px */
    line-height: 1.5;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.hero-awards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.award-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    animation: icon-illuminate 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes icon-illuminate {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(0,0,0,0));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
        transform: scale(1.05);
    }
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.award-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmer 10s linear infinite;
}

/* Delay for the second award to create a sequential flow */
.hero-awards .award-item:last-child::after {
    animation-delay: 2.5s;
}

@keyframes shimmer {
    0% { left: -150%; }
    25% { left: 150%; } /* Sweep duration is 1/4 of the total time (2.5s) */
    100% { left: 150%; }
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.award-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

.hero-actions-centered {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-entrepreneur-link {
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-link {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    margin-left: 8px;
    border-bottom: 1px solid #ccc;
    transition: all 0.2s ease;
}

.hero-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Elegant Tooltip */
.tooltip-trigger {
    position: relative;
    display: inline-block;
}

.tooltip-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--text-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 100;
}

.tooltip-trigger::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: var(--text-primary) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.tooltip-trigger:hover::after,
.tooltip-trigger:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.btn-black {
    background-color: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--accent-primary);
    display: inline-block;
}

.btn-black:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid var(--accent-primary);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-awards {
        flex-direction: column;
        gap: 30px;
    }
    .award-divider {
        display: none;
    }
    .hero-actions-centered {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
}

.partners-section {
    padding: 120px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.main-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 54px;
    color: var(--accent-primary);
}

.support-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none; /* In image it's not all caps, just very soft */
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Carousel and Fading */
.logo-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* For the animation, we'll use carousel-container instead if we follow the new structure */
.carousel-container {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.logo-strip {
    display: flex;
    align-items: center;
    gap: 80px; /* Adjusted gap for real logos */
    padding: 0;
    width: max-content;
    animation: scroll 60s linear infinite; /* Slower for more logos */
}

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Consistent height for logos */
    opacity: 0.7; /* Subdued look by default */
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 100%;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.fade-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 10;
    pointer-events: none;
}

.fade-overlay.left {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 15%, rgba(255, 255, 255, 0) 100%);
}

.fade-overlay.right {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 15%, rgba(255, 255, 255, 0) 100%);
}


.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--logo-color);
    transition: opacity 0.3s ease;
}

.logo-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-name-bold {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Logo Icons Styling */
.logo-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-logo {
    position: relative;
}

.circle-logo .outer {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.circle-logo .inner {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
}

.plus-badge {
    background-color: var(--badge-bg);
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1;
    margin-left: -5px;
}

.zk-logo svg, .rhinestone-logo svg {
    width: 26px;
    height: 26px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .main-title {
        font-size: 32px;
    }
    .logo-strip {
        gap: 40px;
    }
    .fade-overlay {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 26px;
    }
    .logo-strip {
        flex-wrap: wrap;
        gap: 20px;
    }
    .fade-overlay {
        display: none;
    }
}

/* Situations Section Styles */
.situations-section {
    padding: 120px 24px;
    background-color: #fff;
}

.situations-main-title {
    font-size: 36px; /* Matched with partnership title */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 80px;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.situation-card {
    display: flex;
    flex-direction: column;
}

.situation-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f5f5f5;
}

.situation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Maintain the monochrome aesthetic */
    transition: filter 0.4s ease;
}

.situation-card:hover .situation-image img {
    filter: grayscale(0%); /* Subtle premium interaction */
}

.situation-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.situation-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.situation-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.situation-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.situation-btn.black {
    background-color: #1a1a1a;
    color: #fff;
}

.situation-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.situation-link:hover {
    border-color: #000;
}

@media (max-width: 1100px) {
    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .situations-grid {
        grid-template-columns: 1fr;
    }
    .situations-main-title {
        font-size: 28px;
    }
}

/* Partnership Section Styles */
.partnership-section {
    padding: 120px 24px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.partnership-main-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 80px;
    max-width: var(--container-max-width);
    text-align: center; /* Centered as requested */
    margin-left: auto;
    margin-right: auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.collab-card {
    display: flex;
    gap: 32px; /* Slightly more gap for elegance */
    align-items: center; /* Vertically centered like the reference image */
}

.collab-visual {
    flex: 0 0 240px;
    aspect-ratio: 4 / 2.5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.collab-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.collab-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(0,0,0,0.4);
    padding: 8px 16px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.collab-overlay .divider {
    opacity: 0.5;
    font-weight: 300;
}

.collab-content {
    flex: 1;
    text-align: left; /* Enforce left alignment for all content inside */
}

.collab-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-align: left;
}

.collab-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: left;
}

.collab-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    background-color: transparent; /* Initially blends with background */
    transition: background-color 0.2s ease;
}

.collab-link:hover {
    background-color: #f2f2f2; /* Tenuous lead gray / plomo tenue */
}

@media (max-width: 1100px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .collab-visual {
        flex: 0 0 200px;
    }
}

@media (max-width: 600px) {
    .collab-card {
        flex-direction: column;
    }
    .collab-visual {
        width: 100%;
        flex: none;
    }
    .partnership-main-title {
        font-size: 26px;
    }
}
/* Decision Section Styles */
.decision-section {
    padding: 100px 24px;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.testimonial-box {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: left;
}

.section-badge {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 40px;
}

.testimonial-card {
    border-left: 4px solid var(--accent-primary);
    padding-left: 40px;
}

.testimonial-main {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-primary);
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 16px;
    color: #888;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 120px 24px;
    background-color: #fff;
    text-align: center;
}

.pricing-main-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--accent-primary);
}

.pricing-main-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-max-width);
    margin: 0 auto 100px;
}

.pricing-card {
    background-color: #f6f6f6;
    border: none;
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.plan-info {
    flex: 1;
}

.plan-badge {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.card-icon {
    opacity: 0.9;
}

.pricing-card.featured {
    border-color: #000;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.featured-label {
    position: absolute;
    top: -18px;
    left: 32px;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.plan-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.plan-price .period {
    font-size: 15px;
    color: #888;
}

.plan-context {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-promo {
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 32px;
    color: #000;
}

.plan-guarantee {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.4;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #000;
}

.plan-cta-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-primary);
    text-align: center;
}

.plan-cta-btn:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.pricing-footer {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.currency-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    font-size: 24px;
}

.trust-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .pricing-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 24px 140px;
    background-color: var(--accent-primary);
    color: #fff;
}

.faq-container {
    display: flex;
    max-width: var(--container-max-width);
    gap: 80px;
    text-align: left;
    margin: 0 auto;
}

.faq-sidebar {
    flex: 1;
}

.faq-main-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em;
    position: sticky;
    top: 100px;
    text-align: left;
    color: #fff;
}

.faq-list {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 14px 0; /* Tightened padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #ccc;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-inner p {
    margin-bottom: 32px; /* Full blank line effect */
}

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

.faq-quote {
    margin: 24px 0 8px;
    padding: 16px 24px;
    border-left: 3px solid #666;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: #ccc;
    border-radius: 0 8px 8px 0;
}

.faq-item.active .faq-inner {
    opacity: 1;
}

.faq-inner {
    padding: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.85); /* Light grayish white */
    line-height: 1.6;
    font-size: 16px;
    max-width: var(--content-max-width);
}

/* Detail Section Styles (Why Choose Me) */
.detail-section {
    padding: 160px 40px;
    background-color: #fff;
}

.detail-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
}

.detail-heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    color: #000;
}

.detail-heading .muted-text {
    color: #999;
}

.detail-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: var(--content-max-width);
    margin-top: 20px;
}

@media (max-width: 900px) {
    .detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .detail-heading {
        font-size: 32px;
    }
}

/* How Section Styles */
.how-section {
    padding: 120px 24px;
    background-color: #fff;
}

.how-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px; /* Reduced from 80px */
    align-items: flex-start; /* Anchor to top to prevent vertical recalculation jumps */
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.how-heading {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em; /* Homogenized */
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.how-subheading {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.how-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-item {
    border-top: 1px solid #eeeeee;
    padding: 0;
}

.how-item:last-of-type {
    border-bottom: 1px solid #eeeeee;
}

.how-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 14px 0; /* Tightened compressed state */
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.step-num {
    color: var(--accent-primary);
    margin-right: 8px;
}

.how-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.how-arrow::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    margin-top: -4px;
}

.how-item.active .how-arrow {
    transform: rotate(-180deg);
}

.how-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-item.active .how-answer {
    grid-template-rows: 1fr;
}

.how-inner {
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 40px; /* Pre-set padding to animate as part of the grid content */
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-item.active .how-inner {
    opacity: 1;
}

.how-inner p {
    padding-top: 0; /* Removed extra top padding since h3 handles spacing */
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px; /* Full blank line effect */
}

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

.how-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.how-sub-list {
    list-style-type: none;
    padding: 0 0 24px 24px;
    margin: 0;
}

.how-sub-list li {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.how-sub-list li::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--text-primary);
    font-weight: bold;
}

.how-sub-list li:last-child {
    margin-bottom: 0;
}

.how-footer-text {
    margin-top: 60px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    padding-left: 24px;
    border-left: 3px solid #000;
    max-width: 600px;
}

.how-image-column {
    position: sticky;
    top: 50px; /* Fixed anchor point */
    display: flex;
    justify-content: center;
}

.how-image-wrapper {
    width: 100%;
    margin-top: 24px; /* Reduced from 100px to tighten space with header lines */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.how-image-wrapper img {
    width: 100%;
    display: block;
}

/* For Whom Section Styles */
.for-whom-section {
    padding: 120px 24px;
    background-color: #fff;
    text-align: center;
}

.for-whom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.for-whom-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    margin-bottom: 24px;
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em;
}

.for-whom-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.for-whom-item {
    text-align: center;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: transparent;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.icon-wrapper i {
    font-size: 48px;
    line-height: 1;
}

.for-whom-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.for-whom-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.item-context {
    color: var(--text-secondary);
}

.item-stat {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 16px 0;
    margin-top: 24px; /* More space before the line */
    border-top: 1px solid #dcdcdc; /* Darker, more visible line */
    border-bottom: 1px solid #eee;
}

.item-outcome {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0 !important;
}

.for-whom-footer {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 1000px) {
    .how-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .how-heading {
        font-size: 32px;
    }
}

/* Urgency Section */
.urgency-section {
    padding: 120px 24px;
    background-color: #fafafa;
    text-align: center;
    border-top: 1px solid #eee;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    color: var(--accent-primary);
}

.urgency-content {
    margin-bottom: 48px;
}

.urgency-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.urgency-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.urgency-cta-box .primary-btn {
    background-color: #fff;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px; /* Integrated with the method button radius */
    text-decoration: none;
    transition: all 0.3s ease;
}

.urgency-cta-box .primary-btn:hover {
    background-color: #f2f2f2;
}

.cta-note {
    font-size: 14px;
    color: #888;
    max-width: 500px;
    line-height: 1.4;
}

/* Main Footer */
.main-footer {
    padding: 60px 24px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.org-link-box {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.2s ease;
}

.footer-link:hover {
    border-color: #000;
}

.footer-legal {
    margin: 20px 0;
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.8;
}

.legal-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.legal-divider {
    margin: 0 10px;
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 14px;
    color: #888;
}

@media (max-width: 1000px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    .faq-sidebar {
        text-align: center;
    }
    .faq-main-title {
        position: static;
        text-align: center;
        font-size: 32px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
    .pricing-main-title, .for-whom-title, .how-heading {
        font-size: 28px;
    }
    .how-inner p {
        font-size: 16px;
    }
    .plan-price .amount {
        font-size: 40px;
    }
    .testimonial-card {
        padding-left: 20px;
    }
    .testimonial-main {
        font-size: 22px;
    }
}

/* Premium Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
}

/* Staggered entry for lists */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Delay generation for children */
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }

/* Immediate Hero Reveal */
.reveal-hero {
    opacity: 0;
    animation: revealHero 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes revealHero {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
