/* ===============================
   1. Reset & Base
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FAB436;
    --primary-light: #FFE2A6;
    --primary-soft: #FFF6E3;
    --primary-dark: #D9891E;
}

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

.container {
    /* ▼▼▼ 幅を1200pxから1120pxに変更しました ▼▼▼ */
    max-width: 1120px; 
    /* ▲▲▲ 変更箇所 ▲▲▲ */
    
    margin: 0 auto;
    padding: 0 20px;
}

main {
    padding: 40px 20px;
}

section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===============================
   2. Hero Section
================================ */
.hero {
    padding: 32px 20px 40px;
    background: linear-gradient(135deg, var(--primary-soft), #FFE8BA);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;   /* スマホ：縦並び */
    gap: 40px;
}

/* 左カラム */
.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* 右カラム */
.hero-image {
    flex: 1;
    display: flex;
    /* PCでボタンを画像の上に置くため、縦並びにする */
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width: 100%;
}

.hero-image img {
max-width: 420px;
    width: 100%;
    border-radius: 16px;
    
    /* ▼▼▼ ここを追記 ▼▼▼ */
    margin-top: 55px; 
    /* ▲▲▲ ここまで ▲▲▲ */

    opacity: 0;
    transform: translateX(60px);
    animation: heroImageSlideIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes heroImageSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   追加：メインバナー画像の設定
================================ */
.hero-main-banner {
    width: 100%;
    max-width: 520px; /* 下の.featuresと同じ幅に設定 */
    margin: 0 auto 0px auto; /* 中央寄せにし、下に少し余白を作る */
}

.hero-main-banner img {
    width: 100%;      /* 親要素(520px)の幅いっぱいに広げる */
    height: auto;     /* 比率維持 */
    display: block;
    border-radius: 12px; /* 下のボックスと角丸を合わせる */
    /* ボックスと質感を合わせるための軽い境界線（お好みで） */
    border: 1px solid #FFD79A; 
}

/* モバイル（幅が狭い時）の調整 */
@media (max-width: 768px) {
    .hero-main-banner {
        max-width: 100%; /* スマホでは画面幅いっぱいに */
        margin-bottom: 12px;
    }
}

/* ===============================
   3. Hero Headings & Text
================================ */
.hero-heading {
    display: flex;
    flex-direction: row;        
    align-items: center;        
    justify-content: space-between;
    gap: 20px;                  
    width: 100%;
    max-width: 580px;           
    margin: 0 auto;
}

/* テキストエリア */
.heading-text {
    flex: 1;                    
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

/* 画像エリア（猫アイコン） */
.heading-icon {
    flex: 0 0 auto;             
    width: 180px;               
}

.heading-icon img {
    width: 100%;
    height: auto;
    display: block;
    animation: floating 3s ease-in-out infinite; 
}

.hero-title {
    font-size: 18px;            
    font-weight: bold;
    color: #555;                
    line-height: 1.4;
    margin: 0;
}

.hero-product {
    display: block;
    width: 100%;
    
    white-space: nowrap;          /* 強制的に改行させない */
    font-size: min(58px, 13vw);   /* 基本は58px、画面が狭ければ自動縮小 */

    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 5px;
    
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5); 
}

.hero-lead {
    font-size: 14px;
    color: #444;
    margin-top: 8px; 
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ===============================
   4. Language Switcher (言語切り替え)
================================ */

/* --- スマホ用 (タイトル下) --- */
.lang-switch-mobile {
    display: block;        /* デフォルトは表示 */
    margin: 20px 0 8px 0;  /* 上を20pxに広げ、下を8pxに狭める */
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid #FFD79A;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.lang-btn .flag {
    font-size: 1.5em;
}

.lang-btn .text {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
}

/* --- PC用 (画像の上) --- */
.lang-switch-desktop {
    display: none; /* スマホでは非表示 */
    margin-top: 20px;    /* 上に余白を足して少し下にずらす */
    margin-bottom: 8px;  /* 下（画像との間）の余白を狭くする */
}

.lang-btn-floating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px; 
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    border: 2px solid white; 
    transition: all 0.3s ease;
}

.lang-btn-floating:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.lang-btn-floating .flag {
    font-size: 2em;
}

.lang-text-group {
    display: flex;
    flex-direction: column;
}

.lang-text-group .main-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-dark);
}

.lang-text-group .sub-text {
    font-size: 12px;
    color: #666;
}

.lang-btn-floating .arrow {
    font-size: 1.2em;
    color: var(--primary);
}

/* ===============================
   5. Decorative Images (Flag overlay)
================================ */
.image-wrapper {
    position: relative; 
    display: inline-block; 
    max-width: 100%; 
}

.image-wrapper .main-img {
    display: block; 
    width: 100%;    
    height: auto;   
    border-radius: 16px; 
}

.image-wrapper .miu-flag {
    position: absolute; 
    bottom: 120px; 
    right: -20px;  
    width: 140px;  
    height: auto; 
    z-index: 10;  
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
}

/* ===============================
   6. Features & Line Block (共通設定)
================================ */
.features,
.hero-line-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px; /* ここで両方の最大幅を固定 */
    margin: 0 auto;   /* 中央揃え */
}

/* --- Features 個別設定 --- */
.features {
    gap: 16px;
}

.feature-item {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #FFD79A;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.feature-item h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: #333;
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* --- LINE Block 個別設定 --- */
.hero-line-block {
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffffee;
    border: 1px solid #FFD79A;
}

.line-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00c300;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.qr-miu-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.qr-wrap {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-line-block .qr-img {
    display: block;
    width: 400px;
    height: auto;
    margin: 0 auto;
}

@keyframes heroImageSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   7. Pricing
================================ */
.pricing h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

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

.plan {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.plan.recommended {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(250, 180, 54, 0.4);
}

.plan .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9em;
}

.plan h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.price {
    font-size: 3em;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.price span {
    font-size: 0.4em;
    color: #666;
}

.sub-price {
    color: #666;
    margin-bottom: 20px;
}

.plan ul {
    list-style: none;
    margin: 20px 0;
}

.plan ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trial-notice {
    text-align: center;
    font-size: 1.3em;
    color: var(--primary);
    margin-top: 40px;
    font-weight: bold;
}

/* ===============================
   8. How-to
================================ */
.how-to h2 {
    font-size: 2em;
    margin-bottom: 0px;
    text-align: center;
}

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

/* ===============================
   8. How-to (画像追加による修正)
================================ */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; /* ステップ間の隙間 */
}

@media (min-width: 960px) {
    .steps {
        grid-template-columns: repeat(3, 1fr); /* PCでは横に3つ並べる */
    }
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* すべての要素を中央揃え */
    padding: 20px;
}

/* 数字を丸の中にいれるデザイン */
.step-number {
    width: 50px;              /* 丸のサイズ（お好みで調整） */
    height: 50px;
    background: var(--primary); /* オレンジ色の背景 */
    color: white;             /* 数字の色 */
    border-radius: 50%;       /* 正円にする */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;      /* 下のタイトルとの間隔 */
    box-shadow: 0 4px 10px rgba(250, 180, 54, 0.3); /* 軽い影（お好みで） */
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    min-height: 2.5em;        /* タイトルの高さを揃える */
    display: flex;
    align-items: center;
}

/* 画像ボックス */
.step-img-box {
    width: 100%;
    max-width: 180px;         /* 画像の大きさ調整 */
    aspect-ratio: 1 / 1;      /* 正方形維持 */
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* ===============================
   9. News & Examples
================================ */
.news {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 25px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-item {
    background: #fdf7ea;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--primary);
}

.news-date {
    font-size: 0.9em;
    font-weight: bold;
    color: #444;
    min-width: 100px;
}

.news-text {
    font-size: 1em;
    color: #333;
}

.examples {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
}

.examples h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.examples-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.example-item {
    background: #ffffff;
    border: 1px solid #f0d6a5;
    border-radius: 8px;
    padding: 20px;
    flex: 0 0 32%;      
    max-width: 380px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.example-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.example-item p {
    font-size: 14px;
    color: #555;
}

.example-item blockquote.twitter-tweet {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.example-item iframe {
    width: 100% !important;
}

/* ===============================
   10. Footer
================================ */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9em;
    opacity: 0.8;
}

/* ===============================
   11. Media Queries (Responsive)
================================ */

/* --- PC / Large Screens (min-width: 960px) --- */
@media (min-width: 960px) {
    .hero {
        flex-direction: row;
        align-items: center;
    }

    /* PC用ボタンを表示、スマホ用を非表示 */
    .lang-switch-desktop {
        display: block; 
    }
    .lang-switch-mobile {
        display: none;
    }

    .plans {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        justify-content: center;
        align-items: stretch;
    }

    .steps {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

/* --- Tablet (max-width: 900px) --- */
@media (max-width: 900px) {
    .examples-container {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .example-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 380px;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .hero-image .main-img,
    .hero-image img {
        margin-top: 0 !important; /* スマホの時は上マージンを強制的に0にする */
    }
    .hero {
        padding: 24px 12px 32px;
    }

    .hero-heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
        max-width: none;
    }

    .image-wrapper {
        margin-top:-30px; /* スマホでは上にずらさない場合 */
        /* もしスマホでも少しずらしたいなら margin-top: -10px; などに調整 */
    }

    /* 1. 左側のアイコン画像 */
    .heading-icon {
        flex: 0 0 22%;
        width: 22%;
        margin: 0;
    }

    .heading-icon img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 2. 右側のテキストエリア */
    .heading-text {
        display: block;
        flex: 1;
        /* テキストエリア内の要素をすべて中央揃えにする */
        text-align: center; 
    }

    .hero-title {
        font-size: 3.8vw;
        line-height: 1.3;
        color: #555;
        margin: 0;
        word-break: keep-all;
        /* タイトルも中央に */
        text-align: center;
    }

    .hero-product {
        display: block;
        font-size: 9vw;
        font-weight: 900;
        line-height: 1.1;
        margin-top: 2px;
        white-space: nowrap;
        
        /* ▼▼▼ ここを center に変更 ▼▼▼ */
        text-align: center;
    }

    /* 3. 言語切り替えボタン */
    .lang-switch-mobile {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 15px 0 10px 0;
    }

    /* 4. リード文 */
    .hero-lead {
        width: 100%;
        text-align: center;
        font-size: 13px;
        margin-top: 5px;
    }

    .hero-left { width: 100%; }
    .hero-image img { max-width: 100%; }

    .hero-line-block,
    .features,  
    .feature-item {
        max-width: 100%;
    }

    .price {
        font-size: 2.5em;
    }

    .news {
        padding: 30px 20px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ▼▼▼ フッター追加部分 (パターンA) ▼▼▼ */
    footer {
        padding: 40px 20px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
        margin-bottom: 24px;
    }
    .footer-links a {
        margin: 0;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
    }
}

/* ===============================
   12. New Landing Page Styles
================================ */

/* --- Hero New (感情的フック) --- */
.hero-new {
    background: linear-gradient(135deg, var(--primary-soft), #FFE8BA);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .hero-new-content {
        flex-direction: row;
        align-items: center;
    }
}

.hero-new-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-new-text {
        text-align: left;
    }
}

.hero-new-title {
    font-size: 1.8em;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .hero-new-title {
        font-size: 2.2em;
    }
}

.hero-new-title .highlight {
    color: var(--primary-dark);
    background: linear-gradient(transparent 60%, #FFE2A6 60%);
}

.hero-new-subtitle {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.hero-new-image {
    flex: 0 0 200px;
}

.hero-new-image img {
    width: 200px;
    height: auto;
    animation: floating 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-new-image {
        flex: 0 0 250px;
    }
    .hero-new-image img {
        width: 250px;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00c300;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 195, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 195, 0, 0.4);
}

.cta-btn-primary.large {
    padding: 18px 36px;
    font-size: 1.2em;
}

.cta-sub {
    font-size: 0.85em;
    color: #666;
    margin-top: 12px;
}

.lang-switch-banner {
    margin-top: 25px;
    text-align: center;
}

/* --- Problem Section --- */
.problem-section {
    text-align: center;
}

.problem-section h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 30px;
}

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

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

.problem-item {
    background: #fff8ed;
    border: 1px solid #ffecc7;
    border-radius: 12px;
    padding: 20px 15px;
    transition: transform 0.2s;
}

.problem-item:hover {
    transform: translateY(-3px);
}

.problem-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 12px;
}

.problem-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

/* --- Solution Section --- */
.solution-section {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    text-align: center;
}

.solution-section h2 {
    font-size: 1.8em;
    color: #2e7d32;
    margin-bottom: 10px;
}

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

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

.solution-item {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: left;
}

.solution-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 12px;
}

.solution-item h3 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 8px;
}

.solution-item p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

/* --- Story Section --- */
.story-section {
    text-align: center;
}

.story-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        gap: 40px;
    }
}

.story-developer {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
}

.story-developer h3 {
    font-size: 1.1em;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.story-developer p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.8;
}

.story-miu {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-soft), #FFE8BA);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 500px) {
    .story-miu {
        flex-direction: row;
        text-align: left;
    }
}

.miu-avatar {
    flex: 0 0 100px;
}

.miu-avatar img {
    width: 100px;
    height: auto;
}

.miu-intro {
    flex: 1;
}

.miu-intro h3 {
    font-size: 1.2em;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.miu-intro p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.7;
    text-align: left;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    text-align: center;
}

.cta-box {
    max-width: 500px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95em;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: 1.8em;
    color: #1565c0;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.qr-cta-row {
    margin-bottom: 20px;
}

.qr-cta-row .qr-wrap {
    display: flex;
    justify-content: center;
}

.qr-cta-row .qr-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.cta-link-secondary {
    display: inline-block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s;
}

.cta-link-secondary:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}