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

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    background: #2563eb;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
    z-index: 1000;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

body.theme-midnight :focus-visible {
    outline-color: #60a5fa;
}


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

body.theme-midnight {
    background: #0b1120;
    color: #e2e8f0;
}

body.theme-midnight header {
    background: rgba(2, 6, 23, 0.9);
    border-bottom-color: rgba(148, 163, 184, 0.2);
}

body.theme-midnight nav a {
    color: #cbd5f5;
}

body.theme-midnight nav a:hover {
    color: #f8fafc;
}

body.theme-midnight .hero {
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.25), transparent 55%), #0b1120;
}

body.theme-midnight .hero-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #bfdbfe;
}

body.theme-midnight .hero p,
body.theme-midnight .hero-badge,
body.theme-midnight .badge-item p,
body.theme-midnight .badge-item h3,
body.theme-midnight .process-step p,
body.theme-midnight .step-box,
body.theme-midnight .step-number,
body.theme-midnight .fit-title,
body.theme-midnight .fit-list li,
body.theme-midnight .pricing-card .subtitle,
body.theme-midnight .features-label,
body.theme-midnight .features-list li,
body.theme-midnight .example-body p,
body.theme-midnight .example-plan,
body.theme-midnight .faq-answer,
body.theme-midnight .faq-chevron,
body.theme-midnight .comparison-box h3,
body.theme-midnight .modal-subtitle,
body.theme-midnight .community-box p {
    color: #e2e8f0;
}

body.theme-midnight .step-box {
    border-color: rgba(148, 163, 184, 0.35);
    background: #0f172a;
}

body.theme-midnight .step-number {
    color: #93c5fd;
}

body.theme-midnight .features-label strong {
    color: #f8fafc;
}

body.theme-midnight .check-icon {
    color: #86efac;
}

body.theme-midnight .faq-item {
    background: rgba(15, 23, 42, 0.88);
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 10px 24px rgba(8, 47, 73, 0.25);
}

body.theme-midnight .faq-item:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.4);
}

body.theme-midnight .faq-button:hover {
    background: rgba(59, 130, 246, 0.12);
}

body.theme-midnight .comparison-table td:last-child {
    color: #93c5fd;
}

body.theme-midnight .btn-secondary,
body.theme-midnight .theme-toggle {
    border-color: rgba(148, 163, 184, 0.6);
}

body.theme-midnight .btn-secondary {
    border-color: rgba(148, 163, 184, 0.4);
}

body.theme-midnight .btn-secondary:hover {
    border-color: rgba(148, 163, 184, 0.7);
}

body.theme-midnight .trust-badges,
body.theme-midnight .pricing,
body.theme-midnight .examples,
body.theme-midnight .faq {
    background: #0b1120;
    border-color: rgba(148, 163, 184, 0.2);
}

body.theme-midnight .pricing-card,
body.theme-midnight .comparison-box,
body.theme-midnight .community-box,
body.theme-midnight .faq-item,
body.theme-midnight .fit-card,
body.theme-midnight .example-card {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(96, 165, 250, 0.35);
}

body.theme-midnight .comparison-table th,
body.theme-midnight .comparison-table td,
body.theme-midnight .example-body h3,
body.theme-midnight .pricing-card h3,
body.theme-midnight .faq-question,
body.theme-midnight .how-title-black {
    color: #e2e8f0;
}

body.theme-midnight .how-title-blue {
    color: #93c5fd;
}

body.theme-midnight .pricing-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

body.theme-midnight .example-thumb {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

body.theme-midnight .theme-toggle {
    border-color: rgba(148, 163, 184, 0.6);
}

body.theme-midnight .theme-toggle:hover {
    border-color: rgba(148, 163, 184, 0.7);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 50;
    padding: 16px 24px;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

nav {
    display: none;
    gap: 32px;
    font-size: 14px;
}

nav a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #111827;
}

@media (min-width: 768px) {
    nav { display: flex; }
}

.btn-start {
    background: #2563eb;
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-start:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.theme-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    border: 1px solid #d1d5db;
    background: #e5e7eb;
    border-radius: 9999px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.theme-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: white;
    transition: transform 0.25s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
}

.theme-toggle[aria-pressed="true"] {
    background: #6366f1;
    border-color: #6366f1;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
    transform: translateX(20px);
}

.hero {
    margin-top: 80px;
    padding: 80px 24px;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 60%), linear-gradient(to bottom right, #f9fafb, white);
    text-align: center;
}

.hero-content {
    max-width: 840px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: #eff6ff;
    border-radius: 9999px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 { font-size: 64px; }
}

.hero-highlight { color: #2563eb; }

.hero p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

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

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    border: 2px solid #d1d5db;
    color: #111827;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    transition: border-color 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.guarantee-text {
    color: #6b7280;
    font-size: 14px;
}

.trust-badges {
    padding: 48px 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.badges-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    justify-items: center;
}

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

.badge-item h3 {
    font-size: 32px;
    font-weight: bold;
}

.badge-item p {
    color: #4b5563;
    font-size: 14px;
}

.how-it-works {
    padding: 80px 24px;
}

.section-header {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header p {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
}

.how-title-black {
    color: #111827;
}

.how-title-blue {
    color: #2563eb;
}

.process-grid {
    max-width: 1280px;
    margin: 0 auto 48px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 32px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 24px;
    background: white;
}

.step-box::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: #2563eb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.2;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

.process-step p {
    font-weight: 600;
    font-size: 16px;
}

.process-cta {
    text-align: center;
    margin-top: 64px;
}

.btn-orange {
    background: #2563eb;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.btn-orange:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.guarantee-dot {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
}

.pricing {
    padding: 80px 24px;
    background: #f9fafb;
}

.examples {
    padding: 80px 24px;
    background: white;
}

.examples-container {
    max-width: 1280px;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.example-card {
    display: grid;
    grid-template-rows: 180px auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.example-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.example-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.example-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.example-body {
    padding: 18px 20px 20px;
}

.example-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.example-body p {
    color: #4b5563;
    font-size: 14px;
}

.example-plan {
    margin-top: 10px;
    color: #111827;
    font-weight: 600;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

.community-box {
    margin-bottom: 48px;
    background: linear-gradient(to right, #faf5ff, #eff6ff);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e9d5ff;
}

.community-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.community-box-center {
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.pricing-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.pricing-card.popular {
    border-color: #2563eb;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: #2563eb;
    color: white;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.pricing-card .subtitle {
    color: #4b5563;
    margin-bottom: 24px;
}

.price {
    margin-bottom: 24px;
}

.price-currency {
    font-size: 32px;
    font-weight: bold;
}

.price-amount {
    font-size: 48px;
    font-weight: bold;
}

.price-period {
    color: #4b5563;
}

.features-label {
    color: #4b5563;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.features-list li {
    display: flex;
    gap: 12px;
    color: #374151;
    margin-bottom: 12px;
    font-size: 14px;
}

.check-icon {
    color: #16a34a;
    flex-shrink: 0;
}

.btn-card {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    background: #2563eb;
    color: white;
    transition: background 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-card:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.comparison-box {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 32px;
}

.comparison-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.comparison-faq {
    margin-top: 8px;
}

.comparison-faq .faq-item {
    margin-bottom: 12px;
}

.comparison-faq .faq-item:last-child {
    margin-bottom: 0;
}

.comparison-faq .faq-button {
    padding: 20px 24px;
}

.comparison-faq .faq-answer {
    padding: 0 24px 20px 24px;
}

.common-faq {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.common-faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.common-faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.common-faq-item summary::-webkit-details-marker {
    display: none;
}

.common-faq-item[open] summary {
    border-bottom: 1px solid #e5e7eb;
}

.common-faq-item p {
    padding: 0 20px 16px 20px;
    color: #374151;
}

.comparison-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

.comparison-table th {
    text-align: left;
    padding: 12px 0;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:not(:first-child) { color: #4b5563; }
.comparison-table th:last-child { color: #2563eb; }

.comparison-table td {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:hover { background: #f9fafb; }
.comparison-table td:last-child {
    color: #2563eb;
    font-weight: 500;
}

body.theme-midnight .comparison-table tr:hover {
    background: rgba(59, 130, 246, 0.12);
}

body.theme-midnight .comparison-table td:last-child {
    color: #93c5fd;
}

.testimonials {
    padding: 80px 24px;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

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

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

.testimonial-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #2563eb;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-company {
    color: #4b5563;
    font-size: 14px;
}

.faq {
    padding: 80px 24px;
    background: #f9fafb;
}

.faq-container {
    max-width: 672px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}
.faq-button {
    width: 100%;
    padding: 24px;
    text-align: left;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.3s;
}

.faq-button:hover { background: #f9fafb; }

.faq-question {
    font-weight: 600;
}

.faq-chevron {
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.3s;
    user-select: none;
}

.faq-chevron.active { transform: rotate(180deg); }

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #374151;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.faq-answer.show { display: block; }

.guarantee {
    padding: 80px 24px;
    text-align: center;
}

.guarantee-container {
    max-width: 896px;
    margin: 0 auto;
}

.guarantee h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.guarantee p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.contact {
    padding: 80px 24px;
    background: #111827;
    color: white;
}

.contact-container {
    max-width: 672px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input,
.form-textarea {
    padding: 12px 24px;
    border-radius: 8px;
    background: #1f2937;
    color: white;
    border: 1px solid #374151;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-textarea { resize: none; }

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover { background: #1d4ed8; }

.contact-footer {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 16px;
}

.form-success {
    display: none;
    text-align: center;
    color: #86efac;
    font-size: 14px;
    margin-top: 12px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 200;
}

.modal.open {
    display: flex;
}

.modal-content {
    width: min(640px, 100%);
    background: #111827;
    color: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.modal-content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
}

.modal-subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    border: none;
    background: #1f2937;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #374151;
}

footer {
    background: #000;
    color: #9ca3af;
    padding: 32px 24px;
    text-align: center;
    font-size: 12px;
}

.fit-section {
    max-width: 1280px;
    margin: 48px auto 0;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.fit-card {
    background: white;
    border-radius: 12px;
    padding: 28px 32px;
    border: 2px solid #e5e7eb;
}

.fit-good {
    border-color: #2563eb;
}

.fit-title {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 20px;
}

.fit-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.fit-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #111827;
    font-size: 16px;
}

.fit-list-good .fit-icon {
    color: #16a34a;
    font-weight: 700;
}

.fit-list-bad .fit-icon {
    color: #9ca3af;
    font-weight: 700;
}

.fit-banner {
    margin-top: 28px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: center;
}

.fit-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #ea580c;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.fit-banner-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.fit-banner-text {
    color: #4b5563;
    margin-bottom: 16px;
}

.fit-banner-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

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

.fit-banner-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
}

.fit-note-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #ea580c;
}

@media (max-width: 960px) {
    .process-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .process-row::before {
        left: 32px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .step-box {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 16px;
    }

    .hero {
        padding: 64px 16px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .how-it-works,
    .pricing,
    .examples,
    .faq,
    .contact {
        padding: 64px 16px;
    }

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

    .section-header h2,
    .pricing h2,
    .faq h2,
    .contact h2 {
        font-size: 30px;
    }

    .pricing-card,
    .comparison-box,
    .community-box {
        padding: 24px;
    }

    .pricing-badge {
        left: 16px;
    }

    .fit-card {
        padding: 24px;
    }

    .fit-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fit-avatar {
        margin: 0 auto;
    }

    .fit-banner-row {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-orange {
        width: 100%;
    }

    .comparison-box {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 640px;
    }
}
