
    :root {
      --black: #0d0f0e;
      --dark: #141814;
      --dark-mid: #1c221c;
      --green: #1f4d34;
      --green-mid: #2d6b49;
      --green-bright: #3d8c60;
      --green-accent: #4fae78;
      --green-light: #7dd4a8;
      --gray-dark: #2a2e2b;
      --gray-mid: #4a524b;
      --gray: #404240;
      --gray-light: #525252;
      --off-white: #f0f4f1;
      --white: #fafdfb;
      --border-dark: rgba(77,174,120,0.15);
      --border-light: rgba(77,174,120,0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Zen Kaku Gothic New', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: #0d0f0e;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(79,174,120,0.2);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 40px; width: auto; object-fit: contain; background: #fff; border-radius: 4px; padding: 2px 8px; }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .header-nav a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .header-nav a:hover { color: var(--green-light); }

    .header-cta {
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: #fff !important;
      font-weight: 700 !important;
      padding: 10px 22px;
      border-radius: 5px;
      font-size: 13px !important;
      transition: opacity 0.2s, transform 0.2s !important;
    }
    .header-cta:hover { opacity: 0.85; transform: translateY(-1px); }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: #ffffff;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 68px;
    }

    /* ヘッダー（黒）→FV（白）をつなぐグラデーション帯 */
    .hero-header-fade {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(13,15,14,0.18) 0%, transparent 100%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(31,77,52,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,77,52,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79,174,120,0.12) 0%, transparent 65%);
      top: -100px; left: -100px;
      animation: glowPulse 7s ease-in-out infinite;
    }

    .hero-glow-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(45,107,73,0.08) 0%, transparent 70%);
      bottom: 0; left: 30%;
      animation: glowPulse 9s ease-in-out infinite 2s;
    }

    @keyframes glowPulse {
      0%,100% { transform: scale(1); opacity: 0.7; }
      50% { transform: scale(1.08); opacity: 1; }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 480px;
      align-items: center;
      gap: 0;
      min-height: calc(100vh - 68px);
    }

    .hero-text {
      padding: 80px 48px 80px 0;
    }

    .hero-photo {
      position: relative;
      align-self: stretch;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
    }

    .hero-photo::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0.2) 35%,
        transparent 55%
      );
      z-index: 1;
    }

    .hero-photo::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(to top, #ffffff 0%, transparent 100%);
      z-index: 1;
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      animation: fadeUp 0.9s ease 0.3s both;
      filter: brightness(1.0) contrast(1.02);
    }

    /* 右端の緑グロー - 人物後ろ */
    .hero-photo-glow {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79,174,120,0.15) 0%, transparent 65%);
      bottom: 60px;
      right: -80px;
      z-index: 0;
      animation: glowPulse 6s ease-in-out infinite;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(45,107,73,0.08);
      border: 1px solid rgba(45,107,73,0.25);
      color: var(--green-mid);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-accent);
      animation: blink 1.5s infinite;
    }

    @keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }

    .hero h1 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(30px, 3.8vw, 56px);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 28px;
      animation: fadeUp 0.7s ease 0.1s both;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--green-accent), var(--green-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 15px;
      color: var(--gray-mid);
      line-height: 1.95;
      max-width: 480px;
      margin-bottom: 40px;
      font-weight: 300;
      animation: fadeUp 0.7s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s ease 0.3s both;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: white;
      font-weight: 700;
      font-size: 15px;
      padding: 16px 36px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(45,107,73,0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(45,107,73,0.5);
    }

    .btn-secondary {
      background: transparent;
      color: var(--dark);
      font-weight: 600;
      font-size: 15px;
      padding: 16px 36px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(0,0,0,0.18);
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--green-mid);
      color: var(--green-mid);
      background: rgba(31,77,52,0.04);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(31,77,52,0.12);
      animation: fadeUp 0.7s ease 0.4s both;
      flex-wrap: wrap;
    }

    .stat-num {
      font-family: 'Noto Serif JP', serif;
      font-size: 40px;
      font-weight: 900;
      color: var(--green-mid);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 12px;
      color: var(--gray);
      font-weight: 400;
      letter-spacing: 0.05em;
    }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(20px); }
      to { opacity:1; transform:translateY(0); }
    }

    /* ===== SECTION BASE ===== */
    section { padding: 100px 40px; }
    .container { max-width: 1100px; margin: 0 auto; }

    .section-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--green-bright);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-tag::before {
      content: '';
      width: 28px; height: 2px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
      flex-shrink: 0;
    }

    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.35;
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.9;
      max-width: 560px;
      font-weight: 300;
    }

    /* ===== WHY ===== */
    .why { background: var(--off-white); }

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

    .why-card {
      background: white;
      border-radius: 12px;
      padding: 40px 30px;
      border: 1px solid rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(31,77,52,0.1);
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
    }

    .why-num {
      font-family: 'Noto Serif JP', serif;
      font-size: 54px;
      font-weight: 900;
      color: rgba(31,77,52,0.12);
      line-height: 1;
      margin-bottom: 16px;
    }

    .why-icon {
      width: 50px; height: 50px;
      background: linear-gradient(135deg, var(--green), var(--green-bright));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 22px;
    }

    .why-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .why-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.85;
      font-weight: 300;
    }

    /* ===== FLOW ===== */
    .flow { background: white; }

    .flow-steps {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 0;
      position: relative;
    }

    .flow-steps::before {
      content: '';
      position: absolute;
      top: 35px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 1px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-accent), var(--green-mid));
    }

    .flow-step { text-align: center; padding: 0 16px; }

    .step-circle {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: var(--dark);
      border: 2px solid var(--green-mid);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
    }

    .step-circle span {
      font-size: 9px;
      color: var(--green-light);
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .step-circle strong {
      font-size: 18px;
      color: white;
      font-weight: 900;
      font-family: 'Noto Serif JP', serif;
      line-height: 1;
    }

    .flow-step h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .flow-step p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.75;
      font-weight: 300;
    }

    /* ===== MERIT ===== */
    .merit { background: var(--dark); }

    .merit .section-tag { color: var(--green-light); }
    .merit .section-title { color: white; }
    .merit .section-desc { color: rgba(255,255,255,0.45); }

    .merit-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .merit-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(79,174,120,0.12);
      border-radius: 12px;
      padding: 32px 28px;
      display: flex;
      gap: 22px;
      align-items: flex-start;
      transition: background 0.3s, border-color 0.3s;
    }

    .merit-card:hover {
      background: rgba(79,174,120,0.06);
      border-color: rgba(79,174,120,0.25);
    }

    .merit-icon-wrap {
      width: 52px; height: 52px;
      background: rgba(45,107,73,0.2);
      border: 1px solid rgba(79,174,120,0.25);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .merit-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }

    .merit-content p {
      font-size: 14px;
      color: rgba(255,255,255,0.48);
      line-height: 1.85;
      font-weight: 300;
    }

    /* ===== TARGETS ===== */
    .targets { background: var(--off-white); }

    .targets-list {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 14px;
    }

    .target-item {
      background: white;
      border-radius: 10px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(0,0,0,0.06);
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .target-item:hover {
      border-color: var(--green-accent);
      box-shadow: 0 4px 20px rgba(31,77,52,0.1);
    }

    .check {
      width: 30px; height: 30px;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      color: white;
    }

    /* ===== CONTACT ===== */
    .contact {
      background: white;
      position: relative;
      overflow: hidden;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-accent), var(--green-light));
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 36px;
    }

    .contact-feature {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cf-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--dark);
      font-weight: 600;
    }

    .cf-icon {
      width: 32px; height: 32px;
      background: rgba(31,77,52,0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    /* FORM */
    .form-wrap {
      background: var(--off-white);
      border-radius: 16px;
      padding: 44px 40px;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .form-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 30px;
      padding-bottom: 18px;
      border-bottom: 2px solid var(--green-mid);
    }

    .form-group { margin-bottom: 20px; }

    label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 7px;
      letter-spacing: 0.02em;
    }

    label .req {
      display: inline-block;
      background: var(--green-mid);
      color: white;
      font-size: 10px;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 3px;
      margin-left: 6px;
      vertical-align: middle;
    }

    label .opt {
      display: inline-block;
      background: #c8d0c9;
      color: white;
      font-size: 10px;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 3px;
      margin-left: 6px;
      vertical-align: middle;
    }

    input, select, textarea {
      width: 100%;
      padding: 11px 15px;
      border: 1px solid #d4ddd5;
      border-radius: 6px;
      font-family: 'Zen Kaku Gothic New', sans-serif;
      font-size: 14px;
      color: var(--dark);
      background: white;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      -webkit-appearance: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--green-bright);
      box-shadow: 0 0 0 3px rgba(61,140,96,0.12);
    }

    textarea { resize: vertical; min-height: 110px; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .privacy-box {
      background: white;
      border: 1px solid #dce6dd;
      border-radius: 8px;
      padding: 14px;
      font-size: 12px;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 20px;
      max-height: 90px;
      overflow-y: auto;
    }

    .privacy-check {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 22px;
      cursor: pointer;
      position: relative;
      z-index: 10;
      pointer-events: auto;
    }

    .privacy-check input[type="checkbox"] {
      width: 18px; height: 18px;
      cursor: pointer;
      flex-shrink: 0;
      accent-color: var(--green-mid);
      position: relative;
      z-index: 10;
      pointer-events: auto;
      appearance: auto;
      -webkit-appearance: checkbox;
    }

    .input-error {
      border-color: #e53e3e !important;
      background: #fff5f5 !important;
    }

    .field-error {
      color: #e53e3e;
      font-size: 12px;
      margin-top: 4px;
      margin-bottom: 0;
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: white;
      font-family: 'Zen Kaku Gothic New', sans-serif;
      font-size: 16px;
      font-weight: 700;
      padding: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(45,107,73,0.38);
    }

    .success-msg {
      display: none;
      background: #fff;
      border: 1px solid #7dd4a8;
      border-radius: 12px;
      padding: 48px 32px;
      text-align: center;
    }

    .success-msg .success-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--green), var(--green-bright));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
      color: #fff;
    }

    .success-msg h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .success-msg p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.9;
      margin-bottom: 0;
    }

    .success-msg .success-detail {
      background: var(--off-white);
      border-radius: 8px;
      padding: 16px 20px;
      margin: 20px 0 0;
      text-align: left;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.8;
    }

    /* ===== FAQ ===== */
    .faq { background: var(--off-white); }
    .faq-list { margin-top: 48px; }

    .faq-item {
      background: white;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,0.06);
      margin-bottom: 10px;
      overflow: hidden;
    }

    .faq-q {
      padding: 20px 26px;
      font-weight: 700;
      font-size: 15px;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      user-select: none;
      transition: background 0.2s;
    }

    .faq-q:hover { background: rgba(31,77,52,0.03); }

    .faq-q-text {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .faq-q-mark {
      background: var(--dark);
      color: var(--green-light);
      font-family: 'Noto Serif JP', serif;
      font-size: 13px;
      font-weight: 900;
      width: 28px; height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-toggle {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
      font-size: 18px;
      color: var(--gray);
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: rgba(31,77,52,0.08);
      color: var(--green-bright);
    }

    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

    .faq-a-inner {
      padding: 0 26px 20px 68px;
      font-size: 14px;
      color: var(--gray);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, var(--green) 100%);
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border: 1px solid rgba(79,174,120,0.12);
      border-radius: 50%;
      top: -150px; right: -100px;
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      width: 350px; height: 350px;
      border: 1px solid rgba(79,174,120,0.08);
      border-radius: 50%;
      bottom: -120px; left: -60px;
    }

    .cta-banner h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(22px, 3.5vw, 40px);
      font-weight: 900;
      color: white;
      line-height: 1.45;
      margin-bottom: 14px;
      position: relative; z-index: 1;
    }

    .cta-banner p {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 40px;
      position: relative; z-index: 1;
      font-weight: 300;
    }

    .cta-banner .btn-primary { position: relative; z-index: 1; font-size: 16px; padding: 18px 50px; }

    /* ===== FOOTER ===== */
    footer {
      background: #ffffff;
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 48px 40px 32px;
      box-shadow: 0 -2px 16px rgba(0,0,0,0.04);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      text-align: center;
    }

    .footer-logo img { height: 40px; width: auto; object-fit: contain; background: #fff; border-radius: 4px; padding: 2px 8px; }

    .footer-tagline {
      font-size: 12px;
      color: var(--gray);
      margin-top: 10px;
      font-weight: 400;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: var(--gray-mid);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--green-mid); }

    .footer-bottom {
      max-width: 1100px;
      margin: 24px auto 0;
      text-align: center;
      font-size: 12px;
      color: var(--gray);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      section { padding: 70px 24px; }
      header { padding: 0 20px; }
      .header-nav { display: none; }
      .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 24px;
      }
      .hero-text { padding: 60px 0 40px; }
      .hero-photo { display: none; }
      .hero-stats { gap: 24px; }
      .why-grid { grid-template-columns: 1fr; }
      .flow-steps { grid-template-columns: 1fr 1fr; }
      .flow-steps::before { display: none; }
      .merit-grid { grid-template-columns: 1fr; }
      .targets-list { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .form-wrap { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; }
    }
  