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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.nav-logo .brand-text {
    white-space: nowrap;
}
.nav-logo .brand-text .tm {
    font-size: 0.55em;
    vertical-align: super;
    opacity: 0.7;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-login-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-login-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nav-login {
    color: #667eea !important;
    font-weight: 600 !important;
    border: 2px solid #667eea;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem !important;
    transition: background 0.2s, color 0.2s;
}

.nav-login:hover {
    background: #667eea;
    color: #fff !important;
}

.nav-legacy {
    color: #888 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.nav-legacy:hover {
    color: #667eea !important;
    border-color: #667eea;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1.2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: #fde68a;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-jar-wrapper {
    position: relative;
    width: 480px;
    margin-right: -40px;
}

.jar-label {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    opacity: 0.9;
}

.hero-jar-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}

.jar-tag {
    position: absolute;
    right: 70%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.jar-tag-text {
    text-align: right;
}

.jar-tag-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: block;
}

.jar-tag-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-style: italic;
    display: block;
}

.jar-tag-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.55);
    margin-left: 10px;
    position: relative;
    flex-shrink: 0;
}

.jar-tag-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 9px;
    height: 9px;
    border-top: 2px solid rgba(255,255,255,0.55);
    border-right: 2px solid rgba(255,255,255,0.55);
    transform: rotate(45deg);
}

.jar-tag-rocks {
    top: 32%;
}

.jar-tag-pebbles {
    top: 56%;
}

.jar-tag-sand {
    top: 72%;
    right: 76%;
}

.jar-philosophy {
    background: #f8f9fb;
    padding: 48px 0 56px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-block {
    padding: 28px 32px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.philosophy-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.philosophy-block h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.philosophy-problem h3 {
    color: #d97706;
}

.philosophy-solution h3 {
    color: #059669;
}

.philosophy-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.philosophy-consequence,
.philosophy-outcome {
    margin-top: 12px !important;
    font-weight: 600;
    font-style: italic;
}

.philosophy-consequence {
    color: #92400e;
}

.philosophy-outcome {
    color: #065f46;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: #f8f9fb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #667eea;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 640px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.jar-comparison {
    text-align: center;
}

.jar-comparison .jar-label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 12px;
    color: #555;
}

.jar-comparison .jar-label.wrong {
    color: #ef4444;
}

.jar-comparison .jar-label.right {
    color: #10b981;
}

.mini-jar-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.problem-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.problem-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.problem-quotes {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem-quote {
    background: #fff;
    border-left: 3px solid #667eea;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.steps-timeline {
    display: flex;
    gap: 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.step-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.step-item p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

.audience-section {
    padding: 100px 0;
}

.audience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.audience-card.reversed .audience-content {
    order: 2;
}

.audience-card.reversed .audience-icon-area {
    order: 1;
}

.audience-icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-emoji {
    font-size: 6rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.audience-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #667eea;
    margin-bottom: 8px;
}

.audience-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.audience-content .audience-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.audience-themes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-themes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

.theme-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 14px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
}

.author-info span {
    font-size: 0.8rem;
    color: #888;
}

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

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 2px solid #f0f0f0;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
}

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

.pricing-card.featured {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 16px 0 4px;
}

.pricing-card .price-sub {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 24px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '\2713';
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.btn-pricing.outline {
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-pricing.outline:hover {
    background: #f5f3ff;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq-question:hover {
    color: #667eea;
}

.faq-toggle {
    font-size: 1.4rem;
    color: #667eea;
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    font-size: 1.05rem;
    padding: 16px 40px;
}

footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.nav-active {
    color: #667eea !important;
    font-weight: 600 !important;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    padding-left: 24px;
    position: relative;
}

.hero-bullets li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #fde68a;
    font-weight: 700;
}

.chooser-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.chooser-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
}

.chooser-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chooser-hero-text {
    flex: 1.2;
}

.chooser-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.chooser-hero h1 .accent {
    color: #fde68a;
}

.chooser-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    line-height: 1.7;
}

.credibility {
    padding: 80px 0;
    background: #f8f9fa;
}

.credibility-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.credibility-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 12px;
}

.credibility-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.credibility-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.credibility-journey {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.journey-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.journey-year {
    font-size: 1rem;
    font-weight: 700;
    color: #667eea;
    min-width: 50px;
    padding-top: 2px;
}

.journey-content h4 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 6px;
}

.journey-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
}

.credibility-founder {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    align-self: start;
}

.credibility-founder h4 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
}

.credibility-founder p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.credibility-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.proof-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.proof-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.proof-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

.credibility-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

@media (max-width: 768px) {
    .credibility-story {
        grid-template-columns: 1fr;
    }
    .credibility-proof {
        grid-template-columns: 1fr 1fr;
    }
    .credibility-testimonials {
        grid-template-columns: 1fr;
    }
    .credibility-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .credibility-proof {
        grid-template-columns: 1fr;
    }
}

.chooser-paths {
    padding: 80px 0 60px;
}

.chooser-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

.chooser-subtitle h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.chooser-subtitle p {
    font-size: 1.1rem;
    color: #666;
}

.chooser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.chooser-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: block;
}

.chooser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.chooser-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.chooser-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.chooser-card > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.chooser-card-mechanism {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #5b21b6;
    margin-bottom: 20px;
}

.chooser-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.chooser-card-points li {
    font-size: 0.9rem;
    color: #444;
    padding-left: 20px;
    position: relative;
}

.chooser-card-points li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.chooser-card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chooser-card:hover .chooser-card-cta {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.chooser-trust {
    padding: 60px 0 80px;
    background: #f8f9fb;
}

.chooser-trust-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.trust-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.lp-section {
    position: relative;
}

.lp-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.lp-narrow h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.lp-story {
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

.lp-story p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.lp-silence {
    font-size: 1.6rem !important;
    font-weight: 800;
    color: #1a1a2e !important;
    text-align: center;
    padding: 16px 0;
}

.lp-emphasis {
    font-size: 1.4rem !important;
    font-weight: 800;
    color: #667eea !important;
    text-align: center;
    padding-top: 8px;
}

.lp-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.agitation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 40px auto;
}

.agitation-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.agitation-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.agitation-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.agitation-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.agitation-kicker {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-top: 32px;
    line-height: 1.7;
}

.mechanism-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 40px auto;
}

.mechanism-step {
    text-align: center;
    padding: 0 12px;
}

.mechanism-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.mechanism-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.mechanism-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.mechanism-kicker {
    font-size: 1.3rem;
    color: #1a1a2e;
    text-align: center;
    margin-top: 40px;
    line-height: 1.5;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 760px;
    margin: 40px auto 0;
}

.comparison-col {
    border-radius: 16px;
    padding: 36px 32px;
}

.comparison-old {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.comparison-new {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.comparison-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-old h4 {
    color: #dc2626;
}

.comparison-new h4 {
    color: #16a34a;
}

.comparison-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-col ul li {
    font-size: 0.95rem;
    color: #444;
    padding-left: 24px;
    position: relative;
}

.comparison-old ul li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.comparison-new ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.lp-identity {
    padding: 20px 0;
}

.identity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px auto;
    max-width: 420px;
    text-align: left;
}

.identity-list li {
    font-size: 1.1rem;
    color: #444;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.identity-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
}

.identity-kicker {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-top: 32px;
    line-height: 1.5;
}

.for-not-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 760px;
    margin: 40px auto 0;
}

.for-card {
    border-radius: 16px;
    padding: 36px 32px;
}

.for-yes {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.for-no {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.for-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.for-yes h4 {
    color: #16a34a;
}

.for-no h4 {
    color: #dc2626;
}

.for-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.for-card ul li {
    font-size: 0.95rem;
    color: #444;
    padding-left: 24px;
    position: relative;
}

.for-yes ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.for-no ul li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.proof-quotes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px auto;
    max-width: 520px;
}

.proof-quotes blockquote {
    background: #fff;
    border-left: 3px solid #667eea;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.proof-kicker {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-top: 24px;
}

.objection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.objection-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.objection-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-style: italic;
}

.objection-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.lp-imagine {
    padding: 20px 0;
}

.imagine-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px auto;
    max-width: 420px;
    text-align: left;
}

.imagine-step {
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #667eea;
}

.imagine-day {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #667eea;
    margin-bottom: 4px;
}

.imagine-step p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.imagine-close {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-top: 32px;
    line-height: 1.5;
}

.anti-hype {
    text-align: left;
    max-width: 480px;
    margin: 32px auto 0;
}

.anti-hype p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 16px;
}

.anti-hype-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.anti-hype-list li {
    font-size: 1rem;
    color: #444;
    padding-left: 24px;
    position: relative;
}

.anti-hype-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.anti-hype-kicker {
    font-size: 1.15rem !important;
    color: #667eea !important;
    font-weight: 600;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.commercial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.commercial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.commercial-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.commercial-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.commercial-kicker {
    font-size: 1.15rem;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-bullets {
        align-items: center;
    }

    .hero-jar-wrapper {
        width: 300px;
        margin: 0 auto;
        transform: translateX(15%);
    }

    .hero-visual {
        justify-content: center;
    }

    .jar-tag {
        right: 75%;
    }

    .jar-tag-sand {
        right: 80%;
    }

    .jar-tag-title {
        font-size: 0.75rem;
    }

    .jar-tag-desc {
        font-size: 0.65rem;
    }

    .jar-tag-line {
        width: 24px;
    }

    .chooser-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .philosophy-block {
        padding: 20px 24px;
    }

    .chooser-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .chooser-grid {
        grid-template-columns: 1fr;
    }

    .chooser-trust-inner {
        flex-wrap: wrap;
        gap: 32px;
    }

    .trust-item {
        flex: 0 0 calc(50% - 16px);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-visual {
        order: -1;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .steps-timeline::before {
        display: none;
    }

    .audience-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .audience-card.reversed .audience-content,
    .audience-card.reversed .audience-icon-area {
        order: unset;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .lp-narrow h2 {
        font-size: 1.8rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .for-not-grid {
        grid-template-columns: 1fr;
    }

    .objection-grid {
        grid-template-columns: 1fr;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .mechanism-steps {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .agitation-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid #eee;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-login-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-login-label {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-jar-wrapper {
        width: 260px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .audience-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .chooser-hero {
        padding: 120px 0 60px;
    }

    .chooser-hero h1 {
        font-size: 1.9rem;
    }

    .chooser-card {
        padding: 32px 24px;
    }

    .chooser-card h3 {
        font-size: 1.3rem;
    }

    .chooser-subtitle h2 {
        font-size: 1.8rem;
    }

    .lp-narrow h2 {
        font-size: 1.5rem;
    }

    .lp-silence {
        font-size: 1.3rem !important;
    }

    .lp-emphasis {
        font-size: 1.2rem !important;
    }

    .imagine-close {
        font-size: 1.1rem;
    }

    .mechanism-kicker {
        font-size: 1.1rem;
    }

    .identity-kicker {
        font-size: 1.1rem;
    }

    .comparison-col {
        padding: 28px 24px;
    }

    .for-card {
        padding: 28px 24px;
    }
}
