  :root {
    --pink:        #E8457A;
    --pink-light:  #FFF0F5;
    --pink-mid:    #F9C3D5;
    --cyan:        #00A8BF;
    --cyan-light:  #EAF8FA;
    --yellow:      #F5C842;
    --navy:        #1C1C3A;
    --charcoal:    #3A3A4A;
    --gray-dark:   #888899;
    --gray:        #E4E4EE;
    --gray-light:  #F5F5F8;
    --white:       #FFFFFF;
    --off:         #FAFAFA;
    --text:        #1C1C3A;
    --text-sub:    #66667A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* NAV */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--gray);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700; font-size: 15px; color: var(--navy);
    text-decoration: none; letter-spacing: 0.05em;
  }
  .nav-logo span { color: var(--pink); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink); color: var(--white);
    font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
    padding: 10px 24px; border-radius: 4px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: #C93A6A; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(140deg, #FFF5F8 0%, #FAFAFA 45%, #EDF9FA 100%);
    display: flex; align-items: center;
    padding: 64px 48px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 52%; height: 100%;
    background: linear-gradient(155deg, #FDE8F0 0%, #FFF0F5 55%, #E8F8FA 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-deco { position: absolute; inset: 0; pointer-events: none; }
  .hero-star {
    position: absolute; opacity: 0.2;
    animation: floatY 5s ease-in-out infinite;
  }
  .hs1 { top: 13%; right: 20%; color: var(--pink); font-size: 36px; animation-delay: 0s; }
  .hs2 { top: 32%; right: 9%;  color: var(--cyan); font-size: 20px; animation-delay: 1.2s; }
  .hs3 { bottom: 24%; right: 26%; color: var(--yellow); font-size: 30px; animation-delay: 2.5s; opacity: 0.18; }
  .hs4 { bottom: 38%; right: 8%; color: var(--pink); font-size: 18px; animation-delay: 0.8s; }
  .hero-palm {
    position: absolute; right: 5%; bottom: 6%;
    width: 160px; opacity: 0.08;
    animation: floatY 7s ease-in-out infinite; animation-delay: 1s;
  }
  @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1080px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  }
  .hero-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--pink); border: 1.5px solid var(--pink-mid);
    padding: 5px 16px; border-radius: 2px; margin-bottom: 28px;
    background: var(--pink-light);
  }
  .hero-title {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700; font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.3; color: var(--navy); margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .hero-title .hl { color: var(--pink); }
  .hero-sub {
    font-size: 15px; color: var(--text-sub); line-height: 1.95;
    margin-bottom: 40px; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-main {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink); color: var(--white);
    font-weight: 700; font-size: 15px; padding: 15px 36px;
    border-radius: 4px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(232,69,122,0.28);
  }
  .btn-main:hover { background: #C93A6A; transform: translateY(-2px); }
  .btn-sub {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--navy);
    font-weight: 500; font-size: 15px; padding: 15px 28px;
    border-radius: 4px; text-decoration: none;
    border: 1.5px solid var(--gray); transition: border-color 0.2s;
  }
  .btn-sub:hover { border-color: var(--navy); }

  /* ヒーロー右：サービスカード */
  .hero-right { display: flex; flex-direction: column; gap: 14px; }
  .h-svc-card {
    background: var(--white); border: 1px solid var(--gray);
    border-radius: 6px; padding: 22px 26px;
    display: flex; align-items: flex-start; gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none; color: inherit;
  }
  .h-svc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
  .h-svc-bar { width: 3px; border-radius: 3px; flex-shrink: 0; align-self: stretch; }
  .bar-pink { background: var(--pink); }
  .bar-cyan { background: var(--cyan); }
  .h-svc-series { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--gray-dark); margin-bottom: 4px; }
  .h-svc-name { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 5px; }
  .h-svc-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
  .h-svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
  .h-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 2px; }
  .h-tag-pink { background: var(--pink-light); color: var(--pink); }
  .h-tag-cyan { background: var(--cyan-light); color: var(--cyan); }
  .h-tag-gray { background: var(--gray-light); color: var(--text-sub); }

  /* SECTION BASE */
  .section { padding: 96px 48px; }
  .container { max-width: 1080px; margin: 0 auto; }
  .sec-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--pink);
    margin-bottom: 14px; display: block;
  }
  .sec-title {
    font-family: 'Shippori Mincho', serif; font-weight: 700;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.4; color: var(--navy); margin-bottom: 14px;
  }
  .sec-desc {
    font-size: 15px; color: var(--text-sub);
    line-height: 1.9; max-width: 600px; font-weight: 300;
  }
  .sec-header { margin-bottom: 52px; }

  /* ABOUT SERVICE */
  .about-sec { background: var(--off); }
  .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .svc-card {
    background: var(--white); border: 1px solid var(--gray);
    border-radius: 8px; overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none; color: inherit; display: block;
  }
  .svc-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-3px); }
  .svc-head { padding: 34px 34px 26px; position: relative; }
  .svc-head-pink { background: linear-gradient(135deg, #B52358, var(--pink)); }
  .svc-head-cyan  { background: linear-gradient(135deg, #006F80, var(--cyan)); }
  .svc-series {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 18px;
    background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9);
  }
  .svc-name {
    font-family: 'Shippori Mincho', serif; font-weight: 700;
    font-size: 28px; color: var(--white); margin-bottom: 8px;
  }
  .svc-catch { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; }
  .svc-icon-bg { position: absolute; top: 22px; right: 22px; font-size: 50px; opacity: 0.15; }
  .svc-body { padding: 26px 34px 30px; }
  .svc-row {
    display: flex; gap: 16px; align-items: flex-start;
    font-size: 14px; padding: 11px 0;
    border-bottom: 1px solid var(--gray-light);
  }
  .svc-row:last-of-type { border-bottom: none; }
  .svc-label { font-weight: 700; min-width: 88px; font-size: 12px; color: var(--text); letter-spacing: 0.02em; flex-shrink: 0; }
  .svc-val { color: var(--text-sub); line-height: 1.6; font-weight: 300; }
  .svc-hl {
    margin-top: 18px; padding: 14px 16px;
    border-radius: 4px; font-size: 13px; line-height: 1.75; color: var(--text);
  }
  .svc-hl-pink { background: var(--pink-light); border-left: 3px solid var(--pink); }
  .svc-hl-cyan  { background: var(--cyan-light);  border-left: 3px solid var(--cyan);  }
  .svc-hl-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 5px; display: block; }
  .svc-hl-pink .svc-hl-label { color: var(--pink); }
  .svc-hl-cyan  .svc-hl-label { color: var(--cyan);  }
  .svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; font-size: 13px; font-weight: 700;
    text-decoration: none; padding: 8px 16px; border-radius: 3px; transition: opacity 0.2s;
  }
  .svc-link:hover { opacity: 0.75; }
  .sl-pink { background: var(--pink-light); color: var(--pink); }
  .sl-cyan  { background: var(--cyan-light);  color: var(--cyan);  }

  /* PARADIGM */
  .paradigm-sec { background: var(--white); }
  .paradigm-wrap {
    display: grid; grid-template-columns: 1fr 56px 1fr;
    align-items: stretch; border: 1px solid var(--gray);
    border-radius: 8px; overflow: hidden;
  }
  .p-col { padding: 38px 34px; }
  .p-old { background: var(--gray-light); }
  .p-new { background: var(--navy); }
  .p-arrow { background: var(--pink); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; }
  .p-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 18px; display: block; }
  .p-old .p-eyebrow { color: var(--gray-dark); }
  .p-new .p-eyebrow { color: var(--pink); }
  .p-head { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 21px; margin-bottom: 22px; }
  .p-old .p-head { color: var(--charcoal); }
  .p-new .p-head { color: var(--white); }
  .p-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .p-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 14px; border-radius: 4px;
    font-size: 14px; line-height: 1.6;
  }
  .p-old .p-item { background: rgba(0,0,0,0.04); color: var(--text-sub); }
  .p-new .p-item { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); }
  .pi-icon { font-size: 17px; flex-shrink: 0; }

  /* SKILLS */
  .skills-sec { background: var(--off); }
  .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .skill-card {
    background: var(--white); border: 1px solid var(--gray);
    border-radius: 8px; padding: 34px 26px;
    position: relative; overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .skill-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-3px); }
  .sk-bar { height: 3px; border-radius: 2px; margin-bottom: 26px; }
  .sk-pink   { background: linear-gradient(90deg, var(--pink), var(--pink-mid)); }
  .sk-cyan   { background: linear-gradient(90deg, var(--cyan), #7FD8E4); }
  .sk-yellow { background: linear-gradient(90deg, var(--yellow), #F9E07A); }
  .sk-num {
    position: absolute; top: 18px; right: 18px;
    font-family: 'Shippori Mincho', serif; font-weight: 800;
    font-size: 68px; opacity: 0.05; line-height: 1; color: var(--navy);
  }
  .sk-icon { font-size: 30px; margin-bottom: 14px; display: block; }
  .sk-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
  .sk-desc { font-size: 14px; color: var(--text-sub); line-height: 1.8; font-weight: 300; }
  .sk-eg {
    margin-top: 16px; padding: 13px 15px;
    background: var(--gray-light); border-radius: 4px;
    font-size: 13px; color: var(--text); line-height: 1.7;
  }
  .sk-eg-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--gray-dark); margin-bottom: 4px; display: block; }

  /* 20MIN FLOW */
  .flow-sec { background: var(--navy); }
  .flow-sec .sec-title { color: var(--white); }
  .flow-sec .sec-desc  { color: rgba(255,255,255,0.5); }
  .flow-steps { display: flex; gap: 0; margin-top: 52px; overflow-x: auto; padding-bottom: 4px; }
  .flow-step { flex: 1; min-width: 175px; padding: 0 14px; position: relative; }
  .flow-step:not(:last-child)::after {
    content: '→'; position: absolute; right: -5px; top: 26px;
    color: rgba(255,255,255,0.18); font-size: 17px;
  }
  .f-time { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: #FF7FB1; margin-bottom: 10px; }
  .f-circle {
    width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 12px;
  }
  .fc-1 { border-color: var(--cyan); }
  .fc-2 { border-color: var(--yellow); }
  .fc-3 { border-color: var(--pink); }
  .fc-4 { border-color: rgba(255,255,255,0.3); }
  .f-title { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 14px; color: var(--white); margin-bottom: 5px; }
  .f-desc  { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.65; }

  /* JOBS */
  .jobs-sec { background: var(--white); }
  .jobs-tabs { display: flex; gap: 0; border: 1px solid var(--gray); border-radius: 5px; overflow: hidden; width: fit-content; margin-bottom: 36px; }
  .job-tab {
    padding: 11px 30px; font-weight: 700; font-size: 14px;
    cursor: pointer; border: none; background: transparent;
    color: var(--gray-dark); transition: all 0.2s; letter-spacing: 0.03em;
  }
  .job-tab:not(:last-child) { border-right: 1px solid var(--gray); }
  .job-tab.tp { background: var(--pink); color: var(--white); }
  .job-tab.tc { background: var(--cyan); color: var(--white); }
  .job-panel { display: none; }
  .job-panel.active { display: block; }
  .job-card { border: 1px solid var(--gray); border-radius: 8px; overflow: hidden; }
  .job-head {
    padding: 38px 44px 30px;
    display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px;
  }
  .jh-pink { background: linear-gradient(135deg, #B52358, var(--pink)); }
  .jh-cyan { background: linear-gradient(135deg, #006F80, var(--cyan)); }
  .j-badge {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 10px;
    background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9);
  }
  .j-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 32px; color: var(--white); margin-bottom: 6px; }
  .j-catch { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 300; }
  .j-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .j-tag { padding: 6px 14px; border-radius: 3px; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; }
  .job-body { padding: 38px 44px; }
  .job-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
  .spec-item { padding: 18px 20px; border-radius: 5px; background: var(--gray-light); }
  .spec-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--gray-dark); margin-bottom: 7px; display: block; text-transform: uppercase; }
  .spec-val { font-size: 14px; font-weight: 700; line-height: 1.6; }
.job-note { margin: -16px 0 0; font-size: 12px; line-height: 1.7; color: var(--gray-dark); font-weight: 500; }
  .job-divider { height: 1px; background: var(--gray); margin: 28px 0; }
  .req-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 19px; margin-bottom: 18px; color: var(--navy); }
  .req-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .req-item { display: flex; align-items: flex-start; gap: 13px; padding: 13px 16px; border-radius: 4px; background: var(--gray-light); font-size: 14px; line-height: 1.6; font-weight: 300; }
  .req-dot { color: var(--pink); flex-shrink: 0; font-size: 17px; }

  /* ATTRACTIVE */
  .att-sec { background: var(--navy); }
  .att-sec .sec-title { color: var(--white); }
  .att-sec .sec-desc  { color: rgba(255,255,255,0.5); font-weight: 300; }
  .att-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .att-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px; padding: 30px 28px;
    transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden;
  }
  .att-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
  .att-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
  .ac1::before { background: var(--cyan); }
  .ac2::before { background: var(--pink); }
  .ac3::before { background: var(--yellow); }
  .ac4::before { background: #A78BFA; }
  .att-num { font-family: 'Shippori Mincho', serif; font-size: 10px; font-weight: 800; letter-spacing: 0.2em; margin-bottom: 18px; display: block; }
  .ac1 .att-num { color: var(--cyan); }
  .ac2 .att-num { color: var(--pink); }
  .ac3 .att-num { color: var(--yellow); }
  .ac4 .att-num { color: #A78BFA; }
  .att-icon { font-size: 34px; margin-bottom: 14px; display: block; }
  .att-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 19px; color: var(--white); margin-bottom: 10px; line-height: 1.45; }
  .att-desc { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.85; font-weight: 300; }
  .att-quote { margin-top: 14px; padding: 11px 14px; background: rgba(255,255,255,0.06); border-radius: 4px; border-left: 2px solid rgba(255,255,255,0.14); font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; font-style: italic; }

  /* WHO */
  .who-sec { background: var(--off); }
  .who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .who-card {
    background: var(--white); border: 1px solid var(--gray);
    border-radius: 8px; padding: 26px 20px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  }
  .who-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); border-color: var(--pink-mid); transform: translateY(-3px); }
  .who-icon { font-size: 32px; margin-bottom: 13px; display: block; }
  .who-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--navy); }
  .who-desc { font-size: 14px; color: #4A4A63; line-height: 1.8; font-weight: 400; }

  /* APPLY FLOW */
  .flow2-sec { background: var(--white); }
  .apply-steps { display: flex; flex-direction: column; gap: 0; max-width: 620px; }
  .apply-step { display: flex; gap: 26px; align-items: flex-start; position: relative; padding-bottom: 34px; }
  .apply-step:last-child { padding-bottom: 0; }
  .apply-step:not(:last-child) .a-line { position: absolute; left: 21px; top: 46px; bottom: 0; width: 1px; background: var(--gray); }
  .a-circle {
    width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 16px; flex-shrink: 0;
  }
  .a1 { border-color: var(--cyan);  color: var(--cyan);  }
  .a2 { border-color: var(--pink);  color: var(--pink);  }
  .a3 { border-color: var(--yellow); color: #B8920A; }
  .a4 { border-color: var(--pink);  color: var(--pink);  }
  .a5 { border-color: var(--cyan);  color: var(--cyan);  }
  .a-body { padding-top: 7px; }
  .a-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 5px; }
  .a-desc  { font-size: 14px; color: var(--text-sub); line-height: 1.8; font-weight: 300; }

  /* FAQ */
  .faq-sec { background: var(--gray-light); }
  .faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 8px; }
  .faq-item { background: var(--white); border: 1px solid var(--gray); border-radius: 5px; overflow: hidden; }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 19px 22px; cursor: pointer; gap: 14px; transition: background 0.2s; }
  .faq-q:hover { background: var(--gray-light); }
  .faq-q-text { font-weight: 700; font-size: 14px; line-height: 1.55; display: flex; gap: 13px; align-items: flex-start; }
  .faq-qi { color: var(--pink); font-weight: 900; flex-shrink: 0; }
  .faq-toggle { font-size: 22px; color: var(--gray-dark); flex-shrink: 0; transition: transform 0.3s; }
  .faq-a { display: none; padding: 15px 22px 19px 49px; font-size: 14px; color: var(--text-sub); line-height: 1.85; font-weight: 300; border-top: 1px solid var(--gray); }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-item.open { border-color: var(--pink-mid); }

  /* CTA */
  .cta-sec {
    background: linear-gradient(135deg, #18183A 0%, #2A1638 50%, #18183A 100%);
    padding: 96px 48px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--pink), var(--yellow)); }
  .cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; color: var(--pink); margin-bottom: 18px; display: block; }
  .cta-title { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: clamp(28px, 3.2vw, 44px); color: var(--white); line-height: 1.45; margin-bottom: 14px; }
  .cta-title .ac { color: var(--pink); }
  .cta-desc { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 44px; font-weight: 300; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-cta {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--pink); color: var(--white); font-weight: 700; font-size: 16px;
    padding: 17px 46px; border-radius: 4px; text-decoration: none;
    box-shadow: 0 6px 24px rgba(232,69,122,0.38); transition: background 0.2s, transform 0.2s;
  }
  .btn-cta:hover { background: #C93A6A; transform: translateY(-3px); }
  .btn-cta-g {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: rgba(255,255,255,0.55); font-weight: 500; font-size: 15px;
    padding: 17px 32px; border-radius: 4px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s;
  }
  .btn-cta-g:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }

  /* FOOTER */
  footer {
    background: #111126; padding: 28px 48px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    color: rgba(255,255,255,0.28); font-size: 12px;
  }
  footer a { color: rgba(255,255,255,0.32); text-decoration: none; }
  footer a:hover { color: rgba(255,255,255,0.58); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s, transform 0.6s; }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero::before { display: none; }
    .svc-grid, .skills-grid, .att-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .job-specs { grid-template-columns: repeat(2, 1fr); }
    .paradigm-wrap { grid-template-columns: 1fr; }
    .p-arrow { display: none; }
    .nav { padding: 0 20px; }
    .section { padding: 72px 24px; }
    .hero { padding: 80px 24px 60px; }
    .cta-sec { padding: 72px 24px; }
  }
  @media (max-width: 600px) {
    .hero-btns { flex-direction: column; }
    .who-grid { grid-template-columns: 1fr; }
    .job-specs { grid-template-columns: 1fr; }
    .job-body, .job-head { padding: 24px 20px; }
    .cta-btns { flex-direction: column; align-items: center; }
    footer { flex-direction: column; text-align: center; }
  }
