/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Noto Sans JP', sans-serif;
    --color-black: #1a1a1a;
    --color-text: #333333;
    --color-gray: #6b7280;
    --color-light: #f9fafb;
    --color-white: #ffffff;
    --gradient-sns: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-float: 0 20px 40px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-jp);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-light);
    font-feature-settings: "palt";
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   Typography & Common
   ========================================= */
.text-gradient {
    background: var(--gradient-sns);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.label-badge {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.badge-pink,
.badge-green,
.badge-blue,
.badge-white,
.badge-black {
    background: var(--color-black);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-family: var(--font-jp);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center; /* センター揃え統一 */
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }
.section { padding: 100px 0; }

/* =========================================
   Buttons
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sns);
    color: white;
    font-weight: 700;
    padding: 15px 44px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; }
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color-black);
    border: 1px solid rgba(0,0,0,0.1);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: transform 0.3s;
}
.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(0,0,0,0.03);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.2);
    color: var(--color-black);
    font-weight: 700;
    letter-spacing: 0.05em;
    background: transparent;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.03);
    color: var(--color-black);
    border-color: rgba(0,0,0,0.3);
}

/* ROIセクション用ボタン（修正版） */
.btn-gradient-simple {
    display: inline-block;
    background: var(--gradient-sns);
    color: white;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-gradient-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 24px; max-width: 1200px; margin: 0 auto;
}
.header-logo-group {
    display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.header-logo-img {
    width: 80px; height: 80px; object-fit: contain;
    transition: opacity 0.3s;
}
.header-logo-text {
    font-family: var(--font-en); font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.05em; line-height: 1; color: var(--color-black);
    transition: color 0.3s, background 0.3s, -webkit-text-fill-color 0.3s;
}
.header-logo-group:hover .header-logo-text {
    background: var(--gradient-sns);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.header-nav { display: flex; align-items: center; gap: 16px; }
.nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-black);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s, color 0.3s;
}
.nav-link:hover {
    background: rgba(0,0,0,0.08);
}
.nav-text {
    font-family: var(--font-en); font-size: 10px; font-weight: 700;
    color: var(--color-gray); text-transform: uppercase;
    text-align: right; line-height: 1.2; letter-spacing: 0.1em;
    display: none;
}
.btn-nav {
    background: var(--gradient-sns); /* グラデーションに変更 */
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s; /* transitionプロパティ調整 */
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3); /* うっすら影を追加 */
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.5); /* ホバー時の影を強調 */
    opacity: 0.9; /* グラデーションなので背景色変更ではなく透明度で変化 */
}
/* =========================================
   1. Hero
   ========================================= */
.hero {
    height: 90vh; min-height: 600px; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center; color: white;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%; z-index: 0;
}
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-decor {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--gradient-sns);
    filter: blur(20px);
    opacity: 0.35;
    z-index: 0;
}
.hero-decor-1 {
    top: -40px;
    left: 10%;
}
.hero-decor-2 {
    bottom: 10%;
    right: 8%;
    width: 280px;
    height: 280px;
}
.hero-content {
    position: relative; z-index: 2; padding: 50px 30px 40px; max-width: 900px;
}
.hero-offer {
    margin: 30px auto;
    text-align: center;
    max-width: 520px;
    padding: 20px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.2);
}
.offer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 12px 26px;
    border-radius: 10px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.offer-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
}
.hero-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.hero-tag {
    display: inline-block; background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px; border-radius: 30px; font-size: 12px; font-weight: 700;
    margin-bottom: 24px; letter-spacing: 0.1em;
}
.hero-title {
    font-family: var(--font-jp); font-size: 3.5rem; font-weight: 900;
    line-height: 1.3; margin-bottom: 24px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.hero-text {
    font-size: 1.2rem; opacity: 0.95; margin-bottom: 40px; font-weight: 500;
}

/* =========================================
   2. Pain Points
   ========================================= */
.section-pain {
    background: white; border-radius: 50px 50px 0 0; margin-top: -50px;
    position: relative; z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.pain-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.pain-item { text-align: center; }
.pain-img-wrap {
    position: relative; width: 240px; height: 240px; margin: 0 auto 24px;
    border-radius: 40px; overflow: hidden; box-shadow: var(--shadow-card);
}
.pain-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.pain-item:hover img { transform: scale(1.1); }
.pain-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px; text-align: left;
}
.pain-overlay h3 {
    color: white; font-size: 1.5rem; font-style: italic; font-weight: 900;
}
.pain-item p { color: var(--color-gray); font-size: 0.95rem; }

/* =========================================
   3. Lead
   ========================================= */
.section-lead { background: #fff1f2; }
.lead-text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
}
.highlight-box {
    background: var(--gradient-sns);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(220,39,67,0.35);
}

/* =========================================
   4. ROI (リニューアル)
   ========================================= */
.roi-compare {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.roi-item {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.roi-label-text {
    display: block;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.roi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.roi-card {
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.roi-card-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    color: var(--color-gray);
}
.roi-card-value {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--color-black);
}
.roi-note {
    font-size: 0.85rem;
    font-weight: 600;
}
.roi-card-pro {
    background: var(--gradient-sns);
    border: none;
    color: white;
    box-shadow: 0 15px 30px rgba(220,39,67,0.3);
}
.roi-card-pro .roi-card-title,
.roi-card-pro .roi-card-value,
.roi-card-pro .roi-note {
    color: white;
}
.roi-card-pro .roi-card-value { font-size: 1.5rem; }
.roi-card-pro .roi-note { opacity: 0.85; }
.cta-micro-copy {
    font-size: 0.9rem; font-weight: 700; color: var(--color-gray);
    margin-bottom: 16px; font-style: italic;
}
.cta-center { text-align: center; }

/* =========================================
   5. Benefits
   ========================================= */
.section-dark { background: var(--color-black); color: white; }
.benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}
.benefit-item { border-top: 2px solid #db2777; padding-top: 24px; }
.benefit-title {
    font-family: var(--font-en); color: #db2777;
    font-size: 1.8rem; font-style: italic; font-weight: 900;
    margin-bottom: 16px;
}
.benefit-item p { color: #9ca3af; }

/* =========================================
   6. AI x Human
   ========================================= */
.section-logic { background: #eff6ff; }
.logic-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 30px; flex-wrap: wrap; margin-bottom: 40px;
}
.logic-box {
    background: white; padding: 30px; border-radius: 30px;
    width: 300px; text-align: center; box-shadow: var(--shadow-card);
}
.box-human { border: 3px solid #60a5fa; position: relative; }
.logic-img {
    height: 140px; border-radius: 16px; overflow: hidden; margin-bottom: 20px;
}
.logic-img img { width: 100%; height: 100%; object-fit: cover; }
.logic-arrow { font-size: 2.5rem; color: #93c5fd; font-weight: 900; }
.logic-message { text-align: center; font-weight: 700; color: var(--color-gray); font-style: italic; }

/* =========================================
   7. Before / After
   ========================================= */
.ba-slider-container {
    position: relative; max-width: 800px; margin: 0 auto 40px;
    user-select: none; cursor: ew-resize;
}
.ba-image-wrapper {
    position: relative; width: 100%; height: 500px;
    overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-float);
}
.ba-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.ba-before { width: 50%; border-right: 3px solid white; z-index: 2; }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
    background: transparent; z-index: 10;
    transform: translateX(-50%); display: flex; align-items: center; justify-content: center;
}
.ba-circle {
    width: 48px; height: 48px; background: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--color-black); font-weight: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.ba-label {
    position: absolute; top: 20px; padding: 6px 14px;
    background: rgba(0,0,0,0.7); color: white;
    font-size: 12px; font-weight: 700; border-radius: 4px; z-index: 5;
}
.label-before { left: 20px; } .label-after { right: 20px; }
.ba-caption { text-align: center; font-size: 0.85rem; color: var(--color-gray); margin-top: 12px; }

/* =========================================
   8. Pricing
   ========================================= */
.price-layout {
    display: flex; flex-wrap: wrap; gap: 40px;
    justify-content: center; align-items: stretch;
}
.price-visual {
    flex: 1; min-width: 300px; background: white; padding: 40px;
    border-radius: 40px; box-shadow: var(--shadow-card); text-align: center;
}
.visual-label {
    font-family: var(--font-en); font-weight: 900;
    color: #d1d5db; letter-spacing: 0.2em;
    border-bottom: 1px solid #eee; padding-bottom: 16px;
    margin-bottom: 24px; text-transform: uppercase;
}
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.visual-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
}
.visual-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}
.visual-item span {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.4;
}
.visual-item-insta-1 { background-image: url('./assets/images/sns-image06.jpg'); }
.visual-item-insta-2 { background-image: url('./assets/images/sns-image05.jpg'); }
.visual-item-x-1 { background-image: url('./assets/images/sns-image03.jpg'); }
.visual-item-x-2 { background-image: url('./assets/images/sns-image04.jpg'); }
.visual-text { margin-top: 24px; font-weight: 700; color: #db2777; font-size: 0.9rem; }

.price-card {
    flex: 1; min-width: 300px; background: white; padding: 50px 40px;
    border-radius: 40px; box-shadow: var(--shadow-float);
    border: 4px solid #db2777; position: relative; text-align: center;
}
.price-badge {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    background: #db2777; color: white;
    padding: 6px 24px; border-radius: 30px;
    font-weight: 800; text-transform: uppercase; font-size: 12px;
}
.price-main {
    font-family: var(--font-en); font-size: 4rem;
    font-weight: 900; font-style: italic; line-height: 1; margin: 20px 0;
}
.currency { font-size: 2rem; }
.tax { font-size: 1.2rem; color: #9ca3af; font-weight: 500; font-style: normal; }
.price-sub {
    font-size: 10px; font-weight: 800; color: #db2777;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-top: 1px solid #fce7f3; border-bottom: 1px solid #fce7f3;
    padding: 10px 0; margin-bottom: 30px; display: inline-block;
}
.price-list { text-align: left; margin-bottom: 40px; }
.price-list li {
    margin-bottom: 14px; font-weight: 700;
    padding-left: 28px; position: relative;
}
.price-list li::before { content: '✔'; position: absolute; left: 0; color: #10b981; }
.btn-full { width: 100%; text-align: center; }

/* =========================================
   9. Column & FAQ
   ========================================= */
.section-faq { background: #f3f4f6; }
.column-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; margin-bottom: 20px;
}
.column-lead {
    color: var(--color-gray);
    font-size: 1rem;
    margin-top: 12px;
}
.column-link {
    display: block;
    color: inherit;
}
.column-grid { grid-auto-rows: 1fr; }
@media (min-width: 1024px) {
    .column-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.column-item:hover .col-thumb { box-shadow: var(--shadow-float); transform: translateY(-5px); }
.col-thumb {
    border-radius: 20px; overflow: hidden;
    margin-bottom: 16px; transition: all 0.3s;
    box-shadow: var(--shadow-card);
    height: 200px;
}
.col-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-item h3 {
    font-size: 1rem; font-weight: 700; line-height: 1.4;
    transition: color 0.3s;
}
.column-item:hover h3,
.column-link:focus h3 {
    color: #db2777;
}
.column-actions {
    text-align: center;
    margin-bottom: 60px;
}
.column-actions .column-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.2);
    font-weight: 700;
    color: var(--color-black);
    transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.column-actions .column-link:hover {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.4);
    color: var(--color-black);
}

.max-w-800 { max-width: 800px; margin: 0 auto; }
.faq-subtext {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-top: 12px;
}
.faq-actions {
    margin: 20px auto 30px;
    text-align: center;
}
.faq-action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.faq-item {
    background: white; border-radius: 16px;
    margin-bottom: 16px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-question {
    width: 100%; padding: 24px; text-align: left;
    background: none; border: none;
    font-weight: 700; font-size: 1rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.icon-plus { font-size: 1.5rem; color: #db2777; line-height: 1; transition: transform 0.3s; }
.faq-item.active .icon-plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body { padding: 0 24px 24px; color: var(--color-gray); font-size: 0.95rem; }
.faq-item.active .faq-answer { max-height: 300px; }

/* =========================================
   10. Final CTA
   ========================================= */
.section-cta {
    background: var(--color-black); color: white;
    position: relative; overflow: hidden; padding: 140px 0;
    text-align: center;
}
.cta-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}
.cta-float {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 0;
}
.cta-float-1 {
    top: 10%;
    left: 15%;
}
.cta-float-2 {
    bottom: 5%;
    right: 12%;
    width: 240px;
    height: 240px;
}
.cta-title { font-size: 3rem; font-weight: 900; margin-bottom: 50px; line-height: 1.2; }
.btn-large { font-size: 1.5rem; padding: 22px 70px; }
.cta-note { margin-top: 24px; color: #9ca3af; font-size: 0.9rem; }

/* Footer */
.footer {
    background: #0f0f0f; color: #4b5563; padding: 60px 0;
    text-align: center; font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 700;
}

/* =========================================
   Animations
   ========================================= */
.fade-in-up { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; } .delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.scroll-trigger { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.scroll-trigger.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) { .nav-text { display: block; } }
@media (max-width: 767px) {
    :root { --mobile-header-height: 86px; }
    body { padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top)); }
    .header { min-height: var(--mobile-header-height); }
    .header-inner { height: 100%; padding: 7px 14px; }
    .header-logo-img { width: 58px; height: 58px; }
    .hero {
        height: auto;
        min-height: calc(100svh - var(--mobile-header-height));
        align-items: flex-start;
        padding: 24px 0 20px;
        box-sizing: border-box;
    }
    .hero-content { padding: 0 20px 18px; }
    .hero-title { font-size: 1.85rem; line-height: 1.15; margin-bottom: 10px; }
    .hero-text { font-size: 0.9rem; margin-bottom: 12px; }
    .hero-offer { margin: 10px auto; }
    .section-title { font-size: 1.8rem; }
    .section-pain { margin-top: 32px; padding-top: 36px; }
    .ba-image-wrapper { height: 350px; }
    .price-main { font-size: 3rem; }
    .cta-title { font-size: 2rem; }
    .header-logo-text { font-size: 1.1rem; }
    .header-nav { gap: 8px; flex-wrap: nowrap; }
    .nav-link,
    .btn-nav {
        font-size: 0.65rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
}
