:root {
    --primary: #1E5BD6;
    --primary-dark: #143F95;
    --primary-deep: #0B2A6B;
    --primary-50: #EEF3FC;
    --primary-100: #DCE6FA;
    --primary-200: #B8CDF5;
    --accent: #FFD43A;
    --ink: #0F1A2E;
    --ink-2: #3A4660;
    --ink-3: #6B7794;
    --line: #E4E9F2;
    --bg: #F7F9FC;
    --white: #FFFFFF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ===== Header ===== */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-weight: 800; font-size: 20px; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }
  .logo-mark {
    width: 28px; height: 28px;
    background: var(--primary);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }
  .nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
  .nav a:hover { color: var(--primary); }
  .header-cta {
    background: var(--primary); color: white;
    padding: 10px 20px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  @media (max-width: 768px){ .nav { display: none; } }

  /* ===== Hero ===== */
  .hero {
    background: linear-gradient(180deg, #EEF3FC 0%, #DCE6FA 60%, #FFFFFF 100%);
    padding: 100px 24px 120px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,91,214,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 880px; margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .hero-points { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--primary);
    padding: 8px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 700;
    box-shadow: 0 4px 12px rgba(30,91,214,0.12);
    margin-bottom: 24px;
  }
  .hero-badge::before {
    content: ""; width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
  }
  .hero h1 {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900; line-height: 1.3; letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--primary); }
  .hero h1 .marker {
    background: linear-gradient(transparent 65%, var(--accent) 65%);
    padding: 0 2px;
  }
  .hero-lead {
    font-size: 17px; color: var(--ink-2); line-height: 1.9;
    margin-bottom: 32px;
  }
  .hero-points {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
  }
  .hero-point {
    background: white;
    border: 1px solid var(--primary-100);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px; font-weight: 700; color: var(--primary-dark);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .hero-point svg { width: 16px; height: 16px; color: var(--primary); }
  .hero-cta {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 32px; border-radius: 999px;
    font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    cursor: pointer; border: none;
  }
  .btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 8px 20px rgba(30,91,214,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(30,91,214,0.4); }
  .btn-secondary {
    background: white; color: var(--primary);
    border: 2px solid var(--primary);
  }
  .btn-secondary:hover { background: var(--primary-50); }

  .hero-visual {
    position: relative; height: 420px;
  }
  .hero-card {
    position: absolute; background: white;
    border-radius: 18px; padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(15,26,46,0.1);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 700;
  }
  .hero-card .icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--primary-50); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-card .icon svg { width: 22px; height: 22px; }
  .hc-1 { top: 20px; left: 0; animation: float 4s ease-in-out infinite; }
  .hc-2 { top: 90px; right: 20px; animation: float 4s ease-in-out infinite 1s; }
  .hc-3 { bottom: 140px; left: 30px; animation: float 4s ease-in-out infinite 2s; }
  .hc-4 { bottom: 40px; right: 0; animation: float 4s ease-in-out infinite 3s; }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-robot {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px rgba(30,91,214,0.4);
  }
  .hero-robot svg { width: 110px; height: 110px; color: white; }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { height: 320px; max-width: 400px; margin: 0 auto; }
  }

  /* ===== Section common ===== */
  .section { padding: 80px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow {
    text-align: center;
    color: var(--primary); font-weight: 800;
    font-size: 13px; letter-spacing: 0.15em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 12px;
  }
  .section-title {
    text-align: center;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 900; line-height: 1.4;
    margin-bottom: 16px; letter-spacing: -0.01em;
  }
  .section-lead {
    text-align: center; color: var(--ink-2);
    font-size: 16px; max-width: 720px; margin: 0 auto 56px;
    line-height: 1.9;
  }

  /* ===== 無料相談で分かること ===== */
  .benefit-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .benefit-card {
    background: white; border: 1px solid var(--line);
    border-radius: 16px; padding: 28px 22px;
    transition: all 0.3s;
    position: relative;
  }
  .benefit-card:hover {
    border-color: var(--primary-200);
    box-shadow: 0 12px 30px rgba(30,91,214,0.1);
    transform: translateY(-4px);
  }
  .benefit-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 800;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 14px;
  }
  .benefit-num::before { content: "0"; }
  .benefit-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--primary-50); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .benefit-icon svg { width: 30px; height: 30px; }
  .benefit-card h3 {
    font-size: 17px; font-weight: 800;
    margin-bottom: 10px; letter-spacing: -0.01em;
  }
  .benefit-card p {
    font-size: 14px; color: var(--ink-2); line-height: 1.8;
  }
  @media (max-width: 900px){ .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px){ .benefit-grid { grid-template-columns: 1fr; } }

  /* ===== こんな段階の方におすすめ ===== */
  .stage-section { background: var(--bg); }
  .stage-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .stage-card {
    background: white; border-radius: 18px;
    padding: 32px 28px; position: relative;
    border-top: 4px solid var(--primary);
  }
  .stage-card:nth-child(2) { border-top-color: var(--primary-dark); }
  .stage-card:nth-child(3) { border-top-color: var(--primary-deep); }
  .stage-tag {
    display: inline-block;
    background: var(--primary-50); color: var(--primary-dark);
    padding: 4px 12px; border-radius: 6px;
    font-size: 12px; font-weight: 700;
    margin-bottom: 14px;
  }
  .stage-card h3 {
    font-size: 19px; font-weight: 900;
    margin-bottom: 16px; line-height: 1.5;
  }
  .stage-list {
    list-style: none;
  }
  .stage-list li {
    font-size: 14px; color: var(--ink-2);
    padding: 8px 0 8px 24px;
    position: relative;
    border-top: 1px dashed var(--line);
  }
  .stage-list li:first-child { border-top: none; }
  .stage-list li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    color: var(--primary); font-weight: 900;
  }
  @media (max-width: 800px){ .stage-grid { grid-template-columns: 1fr; } }

  /* ===== 当日の流れ ===== */
  .flow-wrap { position: relative; }
  .flow-list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    position: relative;
  }
  .flow-list::before {
    content: ""; position: absolute;
    top: 32px; left: 12.5%; right: 12.5%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-200) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .flow-item {
    position: relative; text-align: center; z-index: 1;
  }
  .flow-num {
    width: 64px; height: 64px; margin: 0 auto 16px;
    background: white; color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px; font-weight: 800;
  }
  .flow-time {
    display: inline-block;
    background: var(--primary); color: white;
    padding: 3px 12px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    margin-bottom: 10px;
  }
  .flow-item h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
  .flow-item p { font-size: 13px; color: var(--ink-2); line-height: 1.7; }
  @media (max-width: 800px) {
    .flow-list { grid-template-columns: repeat(2, 1fr); }
    .flow-list::before { display: none; }
  }

  /* ===== 安心ポイント ===== */
  .reassure-section {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    color: white;
  }
  .reassure-section .section-eyebrow { color: var(--primary-200); }
  .reassure-section .section-title { color: white; }
  .reassure-section .section-lead { color: var(--primary-100); }
  .reassure-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .reassure-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 28px 24px;
  }
  .reassure-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .reassure-icon svg { width: 26px; height: 26px; color: white; }
  .reassure-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
  .reassure-card p { font-size: 14px; color: var(--primary-100); line-height: 1.8; }
  @media (max-width: 800px){ .reassure-grid { grid-template-columns: 1fr; } }

  /* ===== Cases & Process ===== */
  .cases-section { background: var(--bg); }
  .process-wrap {
    background: linear-gradient(135deg, #fff 0%, var(--primary-50) 100%);
    border-radius: 24px; padding: 40px 32px;
    margin-bottom: 64px;
    border: 1px solid var(--primary-100);
  }
  .process-title-mini {
    text-align: center; font-size: 13px; font-weight: 800;
    color: var(--primary-dark); letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .process-subtitle {
    text-align: center; font-size: 20px; font-weight: 900;
    margin-bottom: 32px; color: var(--ink);
  }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
    position: relative;
  }
  .process-steps::before {
    content: ""; position: absolute;
    top: 30px; left: 10%; right: 10%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-200) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .process-step { text-align: center; position: relative; z-index: 1; }
  .process-num {
    width: 60px; height: 60px; margin: 0 auto 14px;
    background: white; color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 800;
  }
  .process-step h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
  .process-step p { font-size: 12px; color: var(--ink-2); line-height: 1.6; }
  @media (max-width: 800px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-steps::before { display: none; }
  }

  .cases-intro {
    text-align: center; font-size: 15px;
    color: var(--ink-2); margin-bottom: 36px;
  }
  .cases-intro strong { color: var(--primary-dark); font-weight: 800; }

  .cases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin-bottom: 32px;
  }
  @media (max-width: 1024px) { .cases-grid { grid-template-columns: 1fr; gap: 28px; } }

  .case-card {
    background: white; border-radius: 18px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,26,46,0.06);
    display: flex; flex-direction: column;
    border: 1px solid var(--line);
    transition: all 0.3s;
  }
  .case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,26,46,0.1); }

  .case-head { padding: 22px 22px 18px; color: white; }
  .case-a .case-head { background: linear-gradient(135deg, var(--primary) 0%, #2A6EE8 100%); }
  .case-b .case-head { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
  .case-c .case-head { background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%); }

  .case-tag {
    display: inline-block; background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px); padding: 4px 12px; border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .case-segment { font-size: 17px; font-weight: 900; line-height: 1.5; margin-bottom: 14px; }
  .case-meta {
    display: flex; gap: 12px; flex-wrap: wrap;
    font-size: 11px; color: rgba(255,255,255,0.85);
    padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.2);
  }
  .case-meta b { color: white; font-weight: 700; }

  .case-quote {
    background: var(--primary-50);
    padding: 18px 22px;
    border-left: 4px solid var(--primary);
    font-size: 13px; line-height: 1.8;
    color: var(--ink); font-weight: 600;
    position: relative;
  }
  .case-quote::before {
    content: "“"; position: absolute; top: 2px; left: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px; color: var(--primary-200); line-height: 1;
  }
  .case-quote p { padding-left: 18px; }

  .case-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }

  .case-timeline { position: relative; padding-left: 26px; margin-bottom: 18px; flex-grow: 1; }
  .case-timeline::before {
    content: ""; position: absolute;
    left: 10px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(to bottom, var(--primary-200), var(--primary));
  }
  .step-item { position: relative; padding-bottom: 16px; }
  .step-item:last-child { padding-bottom: 0; }
  .step-dot {
    position: absolute; left: -22px; top: 3px;
    width: 16px; height: 16px;
    background: white; border: 3px solid var(--primary);
    border-radius: 50%;
  }
  .step-header { display: flex; align-items: baseline; gap: 8px; margin-bottom: 3px; flex-wrap: wrap; }
  .step-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px; font-weight: 800; color: var(--primary); letter-spacing: 0.05em;
  }
  .step-period {
    font-size: 10px; background: var(--primary-50); color: var(--primary-dark);
    padding: 1px 7px; border-radius: 4px; font-weight: 700;
  }
  .step-item h5 { font-size: 13px; font-weight: 800; margin-bottom: 3px; color: var(--ink); }
  .step-item p { font-size: 12px; color: var(--ink-2); line-height: 1.7; }

  .case-goal {
    background: linear-gradient(135deg, var(--primary-50), white);
    border: 1px dashed var(--primary-200);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 14px;
  }
  .case-goal-label {
    font-size: 10px; font-weight: 800; color: var(--primary);
    letter-spacing: 0.1em; margin-bottom: 5px;
  }
  .case-goal p { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.7; }

  .case-service {
    color: white; padding: 14px 16px; border-radius: 12px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; text-decoration: none; transition: all 0.2s;
  }
  .case-a .case-service { background: var(--primary); }
  .case-b .case-service { background: var(--primary-dark); }
  .case-c .case-service { background: var(--primary-deep); }
  .case-service:hover { transform: translateX(2px); opacity: 0.92; }
  .case-service-label {
    font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
    opacity: 0.8; margin-bottom: 3px;
  }
  .case-service-name { font-size: 13px; font-weight: 800; line-height: 1.4; }
  .case-service .price-tag { font-size: 10px; font-weight: 600; opacity: 0.85; margin-left: 6px; }
  .case-service .arrow {
    width: 26px; height: 26px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .case-service .arrow svg { width: 12px; height: 12px; }

  .philosophy-block {
    background: linear-gradient(135deg, #fef9e7, #fffaef);
    border-left: 3px solid var(--accent);
    border-radius: 10px; padding: 14px 16px; margin-bottom: 14px;
  }
  .philosophy-block-title { font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 4px; }
  .philosophy-block p { font-size: 12px; color: var(--ink-2); line-height: 1.7; }

  .cases-footnote {
    background: white; border-radius: 12px;
    padding: 18px 22px; font-size: 12px;
    color: var(--ink-3); line-height: 2;
    border: 1px solid var(--line);
  }
  .cases-footnote strong { color: var(--ink-2); font-weight: 700; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    padding: 22px 8px;
    display: flex; align-items: flex-start; gap: 14px;
    cursor: pointer; font-weight: 700;
    color: var(--ink); font-size: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--primary); }
  .faq-q::before {
    content: "Q"; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 6px;
    background: var(--primary); color: white;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 800;
  }
  .faq-q::after {
    content: "＋"; margin-left: auto;
    color: var(--primary); font-weight: 700;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    display: none;
    padding: 0 8px 22px 50px;
    color: var(--ink-2); font-size: 15px;
    line-height: 1.9;
  }
  .faq-item.open .faq-a { display: block; animation: fadeIn 0.3s; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

  /* ===== Form ===== */
  .form-section { background: var(--bg); }
  .form-wrap {
    max-width: 720px; margin: 0 auto;
    background: white; border-radius: 20px;
    padding: 48px 48px;
    box-shadow: 0 20px 50px rgba(15,26,46,0.06);
  }
  .form-row { margin-bottom: 22px; }
  .form-row label {
    display: block; font-size: 14px; font-weight: 700;
    margin-bottom: 8px; color: var(--ink);
  }
  .form-row .req {
    display: inline-block; background: var(--primary); color: white;
    font-size: 11px; padding: 1px 8px; border-radius: 3px;
    margin-left: 6px; font-weight: 700;
  }
  .form-row .opt {
    display: inline-block; background: var(--line); color: var(--ink-3);
    font-size: 11px; padding: 1px 8px; border-radius: 3px;
    margin-left: 6px; font-weight: 700;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 15px; font-family: inherit;
    color: var(--ink);
    transition: border-color 0.2s;
    background: white;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,91,214,0.12);
  }
  .form-row textarea { min-height: 120px; resize: vertical; }
  .form-row .hint { font-size: 12px; color: var(--ink-3); margin-top: 6px; }
  .form-check {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--bg); padding: 16px;
    border-radius: 10px; margin: 24px 0;
    font-size: 13px; color: var(--ink-2);
  }
  .form-check input { margin-top: 4px; }
  .form-check a { color: var(--primary); text-decoration: underline; }
  .form-submit {
    width: 100%; padding: 18px;
    background: var(--primary); color: white;
    border: none; border-radius: 999px;
    font-size: 17px; font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(30,91,214,0.3);
    transition: all 0.2s;
    font-family: inherit;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30,91,214,0.4); }
  @media (max-width: 600px){
    .form-wrap { padding: 32px 24px; }
  }

  /* ===== Bottom CTA ===== */
  .bottom-cta {
    background: var(--primary);
    color: white;
    padding: 60px 24px;
    text-align: center;
  }
  .bottom-cta h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900; margin-bottom: 16px;
  }
  .bottom-cta p { color: var(--primary-100); margin-bottom: 28px; }
  .bottom-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .bottom-cta .btn-primary {
    background: white; color: var(--primary);
  }
  .bottom-cta .btn-primary:hover { background: var(--primary-50); }
  .bottom-cta .btn-secondary {
    background: transparent; color: white;
    border-color: white;
  }
  .bottom-cta .btn-secondary:hover { background: rgba(255,255,255,0.1); }

  /* ===== Footer ===== */
  .footer {
    background: var(--primary-deep);
    color: var(--primary-100);
    padding: 40px 24px; font-size: 13px;
    text-align: center;
  }
  .footer-logo {
    color: white; font-weight: 800; font-size: 18px;
    margin-bottom: 12px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .footer-logo .logo-mark { background: white; }