  :root {
    --coral: #F472A8;
    --orange: #F7A853;
    --pale-pink: #FAD0D0;
    --peach: #FBCFB0;
    --offwhite: #FFFAF9;
    --gray: #555555;
    --dark: #1F1F1F;
    --light-gray: #F5F0EF;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
    background: var(--offwhite);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 16px;
    letter-spacing: 0.005em;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  nav#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px 16px 8px;
    background: rgba(255,250,249,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(244,114,168,0.12);
    transition: box-shadow 0.3s;
  }
  nav#main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

  .logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--coral); }
  .nav-links .nav-cta a {
    background: linear-gradient(135deg, var(--coral), var(--orange));
    color: white !important;
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-links .nav-cta a:hover { opacity: 0.88; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 6px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--pale-pink);
    padding: 12px 24px 24px;
    z-index: 99;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { list-style: none; }
  .mobile-menu ul li a {
    display: block;
    padding: 13px 0;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
    border-bottom: 1px solid var(--pale-pink);
  }
  .mobile-menu ul li:last-child a {
    border-bottom: none;
    color: var(--coral);
    font-weight: 700;
  }

  /* ── SECTION BASE ── */
  .section { padding: 96px 48px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.005em;
    color: var(--dark);
    margin-bottom: 18px;
  }
  .section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 400;
    max-width: 640px;
    margin-bottom: 56px;
  }

  /* ── PAGE INTRO OVERLAY ── */
  .page-intro {
    position: fixed;
    inset: 0;
    background: var(--offwhite);
    z-index: 9999;
    pointer-events: none;
    animation: introFade 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }
  @keyframes introFade {
    0%   { opacity: 1; }
    100% { opacity: 0; }
  }

  /* ── ENTRANCE ANIMATIONS ── */
  @keyframes logoBlurFloat {
    0%   { opacity: 0; filter: blur(16px); transform: translateY(18px) scale(0.95); }
    60%  { filter: blur(2px); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  }
  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUpSoft {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroImgEntrance {
    0%   { opacity: 0; filter: blur(14px); transform: translateY(24px) scale(0.94); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  }

  /* Nav */
  .logo { animation: logoBlurFloat 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both; }
  .nav-links li:nth-child(1) { animation: navDrop 0.5s ease 0.7s both; }
  .nav-links li:nth-child(2) { animation: navDrop 0.5s ease 0.8s both; }
  .nav-links li:nth-child(3) { animation: navDrop 0.5s ease 0.9s both; }
  .nav-links li:nth-child(4) { animation: navDrop 0.5s ease 1.0s both; }
  .nav-links li:nth-child(5) { animation: navDrop 0.5s ease 1.1s both; }

  /* Typewriter cursor */
  .tw-cursor {
    display: inline;
    font-weight: 300;
    color: var(--coral);
    animation: cursorBlink 0.6s step-end infinite;
  }
  .tw-cursor.hidden { display: none; }
  @keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }

  /* Hero stagger */
  .hero-eyebrow { animation: fadeUpSoft 0.3s ease 1.2s both; }
  #hero h1      { animation: fadeUpSoft 0.8s ease 1.5s both; }
  .hero-catch   { animation: fadeUpSoft 0.7s ease 1.7s both; }
  .hero-sub     { animation: fadeUpSoft 0.7s ease 1.85s both; }
  .hero-btns    { animation: fadeUpSoft 0.7s ease 2.0s both; }
  .hero-stats   { animation: fadeUpSoft 0.7s ease 2.15s both; }

  /* reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 48px 90px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #FFF0F5 0%, #FFF5EE 50%, #FEF8F2 100%);
    z-index: 0;
  }
  .hero-overlay { display: none; }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.28;
    animation: floatBlob 9s ease-in-out infinite;
    z-index: 1;
  }
  .blob-1 { width: 480px; height: 480px; background: var(--pale-pink); top: -80px; right: -60px; animation-delay: 0s; }
  .blob-2 { width: 340px; height: 340px; background: var(--peach); bottom: -40px; right: 260px; animation-delay: 3s; }
  @keyframes floatBlob {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-22px) scale(1.04); }
  }

  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hero-content {
    flex: 0 0 auto;
    max-width: 560px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease both;
  }

  .hero-image {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -220px;
    margin-left: -88px;
    animation: heroImgEntrance 2.0s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    order: -1;
  }

  .hero-image img {
    width: 100%;
    max-width: 480px;
    max-height: 75vh;
    object-fit: contain;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pale-pink);
    color: var(--coral);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.5); }
  }

  #hero h1 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.005em;
    margin-bottom: 24px;
    color: #555555;
  }
  #hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-catch {
    font-size: 1.15rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 22px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    letter-spacing: 0.03em;
  }
  .hero-catch::before, .hero-catch::after { content: '〜'; color: var(--coral); opacity: 0.6; }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 48px;
    font-weight: 400;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--orange));
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 28px rgba(244,114,168,0.32);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(244,114,168,0.42); }
  .btn-outline {
    border: 1.5px solid var(--coral);
    color: var(--coral);
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.22s;
  }
  .btn-outline:hover { background: var(--pale-pink); }

  .hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(244,114,168,0.18);
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }
  .stat-label { font-size: 0.9rem; color: #4A4A4A; letter-spacing: 0.07em; }

  /* ── OVERVIEW ── */
  #overview { background: var(--white); }
  .overview-card {
    background: linear-gradient(135deg, #fff8fa, #fffef0);
    border: 1px solid rgba(244,114,168,0.18);
    border-radius: 20px;
    padding: 56px 64px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .overview-card::before {
    content: '"';
    position: absolute;
    top: 12px; left: 28px;
    font-size: 8rem;
    color: var(--pale-pink);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
  }
  .overview-card p {
    font-size: 1.08rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.4em;
    position: relative;
  }
  .overview-card p:last-child { margin-bottom: 0; }
  .overview-card p strong {
    background: linear-gradient(135deg, var(--coral), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }

  /* ── SERVICES ── */
  #services { background: var(--light-gray); }
  .services-stack { display: flex; flex-direction: column; gap: 32px; }

  .service-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-left: 6px solid transparent;
    transition: transform 0.28s, box-shadow 0.28s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(244,114,168,0.16); }
  .service-card:nth-child(1) { border-left-color: var(--coral); }
  .service-card:nth-child(2) { border-left-color: var(--orange); }
  .service-card:nth-child(3) { border-left-color: #7BBFEA; }

  /* 左ペイン */
  .service-left {
    flex: 0 0 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    gap: 14px;
    border-right: 1px solid #f0ecec;
  }
  .service-card:nth-child(1) .service-left { background: #fff8fa; }
  .service-card:nth-child(2) .service-left { background: #fffaf4; }
  .service-card:nth-child(3) .service-left { background: #f4f8ff; }

  .service-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
  }
  .service-card:nth-child(1) .service-icon { background: var(--pale-pink); }
  .service-card:nth-child(2) .service-icon { background: var(--peach); }
  .service-card:nth-child(3) .service-icon { background: #DDF0FF; }

  .service-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 11px;
    border-radius: 100px;
  }
  .service-card:nth-child(1) .service-badge { background: var(--pale-pink); color: var(--coral); }
  .service-card:nth-child(2) .service-badge { background: var(--peach); color: #C07020; }
  .service-card:nth-child(3) .service-badge { background: #DDF0FF; color: #2A7AB8; }

  .service-name {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }

  /* 中央ペイン */
  .service-mid {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0ecec;
  }
  .service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 12px;
    box-sizing: border-box;
  }
  
  .service-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
    display: block;
  }
  
  /* CocoONE画像は全体を表示 */
  .service-card:nth-child(2) .service-img-inner {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
  }
  .service-card:nth-child(2) .service-img img {
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border-radius: 12px;
  }
  .service-card:hover .service-img img { transform: scale(1.05); }
  .service-mid-body { padding: 30px 36px 36px; flex: 1; }
  .service-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(244,114,168,0.3);
    line-height: 1.45;
  }
  .service-body {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 18px;
  }
  .service-body p {
    margin-bottom: 1.2em;
  }
  .service-body p:last-child {
    margin-bottom: 0;
  }
  .service-voice {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 14px 18px;
  }
  .service-voice p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 0.5em;
  }
  .service-voice p:last-child { margin-bottom: 0; }
  .service-voice p::before { content: '✦ '; color: var(--coral); font-size: 1rem; }

  /* 右ペイン：メリット */
  .service-merits {
    flex: 0 0 230px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-card:nth-child(1) .service-merits { background: #fff8fa; }
  .service-card:nth-child(2) .service-merits { background: #fffaf4; }
  .service-card:nth-child(3) .service-merits { background: #f4f8ff; }
  .service-merits h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 14px;
    opacity: 0.85;
  }
  .service-merits ul { list-style: none; }
  .service-merits ul li {
    font-size: 1rem;
    color: var(--gray);
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.65;
  }
  .service-merits ul li:last-child { border-bottom: none; }
  .service-merits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
  }
  .service-card:nth-child(1) .service-merits ul li::before { color: var(--coral); }
  .service-card:nth-child(2) .service-merits ul li::before { color: var(--orange); }
  .service-card:nth-child(3) .service-merits ul li::before { color: #3A8AC4; }

  /* ── STRENGTHS ── */
  #strengths { background: var(--white); }
  .strengths-list { display: flex; flex-direction: column; gap: 20px; max-width: 840px; margin: 0 auto; }
  .strength-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff8fa, #fffef4);
    border: 1px solid rgba(244,114,168,0.14);
    border-radius: 18px;
    padding: 30px 36px;
    transition: transform 0.22s, box-shadow 0.22s;
  }
  .strength-item:hover { transform: translateX(5px); box-shadow: 0 6px 28px rgba(244,114,168,0.1); }
  .strength-num {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--pale-pink);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
  }
  .strength-num span { font-size: 1.2rem; color: var(--coral); }
  .strength-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .strength-body p { font-size: 1rem; color: var(--gray); line-height: 1.9; }

  /* ── GREETING ── */
  #greeting { background: linear-gradient(160deg, #FFF5F8 0%, #FFF8F2 100%); }
  .greeting-outer {
    display: flex;
    gap: 44px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
  }
  .greeting-photo {
    flex: 0 0 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(244,114,168,0.2);
    aspect-ratio: 3/4;
    background: var(--pale-pink);
  }
  .greeting-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .greeting-wrap {
    flex: 1 1 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 6px 36px rgba(244,114,168,0.1);
    position: relative;
    overflow: hidden;
  }
  .greeting-wrap::before {
    content: '"';
    position: absolute;
    top: 14px; left: 28px;
    font-size: 7rem;
    color: var(--pale-pink);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
  }
  .greeting-wrap p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.3em;
    position: relative;
  }
  .greeting-wrap p:last-child { margin-bottom: 0; }
  .greeting-sign {
    text-align: right;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--pale-pink);
    font-size: 0.93rem;
    color: var(--coral);
    font-weight: 700;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }

  /* ── CONTACT ── */
  #contact { background: var(--light-gray); }
  .contact-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 52px 56px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.06);
  }
  .contact-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.75;
  }
  .form-group { margin-bottom: 22px; }
  .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
  }
  .form-group label .req {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-size: 0.85rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(244,114,168,0.25);
    border-radius: 12px;
    font-size: 0.94rem;
    font-family: inherit;
    color: var(--dark);
    background: #fafaf9;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(244,114,168,0.14);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 140px; }
  .submit-btn {
    display: block;
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 8px;
    box-shadow: 0 8px 28px rgba(244,114,168,0.3);
  }
  .submit-btn:hover { opacity: 0.9; transform: translateY(-2px); }
  #form-success {
    display: none;
    text-align: center;
    padding: 28px;
    background: var(--pale-pink);
    border-radius: 14px;
    margin-top: 20px;
  }
  #form-success p { color: var(--coral); font-weight: 700; font-size: 1rem; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    text-align: center;
    padding: 80px 48px;
  }
  .cta-banner h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: white;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .cta-banner p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 36px; }
  .cta-white-btn {
    background: white;
    color: var(--coral);
    padding: 17px 44px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  }
  .cta-white-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 56px 48px 36px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--coral), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }
  .footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
  .footer-divider { width: 40px; height: 2px; background: var(--coral); margin: 0 auto 24px; opacity: 0.5; }
  .copyright { font-size: 0.875rem; color: rgba(255,255,255,0.28); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav#main-nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 80px 24px; }
    #hero { padding: 110px 24px 70px; }
    .hero-inner { flex-direction: column; }
    #hero { overflow: visible; }
    .hero-image {
      width: 100%;
      margin-top: 0;
      margin-left: 0;
      order: -1;
      padding-top: 16px;
    }
    .hero-image img {
      max-width: 200px;
      max-height: 200px;
      margin: 0 auto;
    }
    .hero-stats { gap: 26px; }
    .service-card { flex-direction: column; border-left-width: 0; border-top: 6px solid transparent; }
    .service-card:nth-child(1) { border-top-color: var(--coral); }
    .service-card:nth-child(2) { border-top-color: var(--orange); }
    .service-card:nth-child(3) { border-top-color: #7BBFEA; }
    .service-left { flex-direction: row; justify-content: flex-start; flex: none; padding: 20px 24px; border-right: none; border-bottom: 1px solid #f0ecec; gap: 16px; }
    .service-name { text-align: left; font-size: 1.25rem; }
    .service-mid { border-right: none; }
    .service-img { height: 240px; }
    .service-mid-body { padding: 24px 26px 28px; }
    .service-merits { flex: none; padding: 20px 24px; border-top: 1px solid #f0ecec; }
    .greeting-outer { flex-direction: column; gap: 26px; }
    .greeting-photo { flex: none; width: 200px; aspect-ratio: 1/1; margin: 0 auto; }
    .greeting-wrap { padding: 40px 28px; }
    .greeting-wrap::before { font-size: 5.5rem; }
    .greeting-wrap p { font-size: 1rem; line-height: 2.0; }
    .contact-wrap { padding: 40px 26px; }
    .overview-card { padding: 42px 36px; }
    .overview-card p { font-size: 1.1rem; }
    .strength-item { padding: 28px 26px; }
    .strength-body h3 { font-size: 1.1rem; }
    .strength-body p { font-size: 1rem; }
  }
  @media (max-width: 480px) {
    .logo { font-size: 1.3rem; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.9rem; }
    .stat-label { font-size: 0.95rem; }
    #hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .hero-catch { font-size: 1.1rem; }
    .hero-sub { font-size: 1rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-sub { font-size: 1rem; }
    .service-body { font-size: 1rem; }
    .service-heading { font-size: 1.1rem; }
    .hero-image img {
      max-width: 220px;
      max-height: 220px;
    }
  }
