*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --grad: linear-gradient(135deg, #0097c7, #00b8e6, #9eefff);
    --grad-text: linear-gradient(90deg, #0097c7, #00b8e6, #9eefff);
    --navy: #f4f9ff;
    --card: rgba(255,255,255,0.92);
    --border: #d9e8ff;
    --violet: #0097c7;
    --pink: #00b8e6;
    --amber: #fbbf24;
    --white: #ffffff;
    --gray: #94a3b8;
    --light: #e2e8f0;
    --nav-h: 64px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── 스티키 네비 ── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(7, 7, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .nav.scrolled { border-bottom-color: var(--border); }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-brand img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
  }
  .nav-links {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }
  .nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.3px;
  }
  .nav-link:hover, .nav-link.active { color: #9eefff; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad);
    color: white;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s;
    white-space: nowrap;
  }
  .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

  /* ── 스크롤 애니메이션 ── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up.delay-1 { transition-delay: 0.1s; }
  .fade-up.delay-2 { transition-delay: 0.2s; }
  .fade-up.delay-3 { transition-delay: 0.3s; }
  .fade-up.delay-4 { transition-delay: 0.4s; }

  /* ── 히어로 ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 60px) 10% 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,151,199,0.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(125,223,255,0.16) 0%, transparent 70%);
    bottom: -100px; left: 5%;
    pointer-events: none;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0097c7;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroIn 0.8s 0.1s forwards;
  }
  .hero-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--grad);
    display: inline-block;
  }
  .hero-h1 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
    max-width: 980px;
    opacity: 0;
    animation: heroIn 0.8s 0.25s forwards;
  }
  .hero-label {
    font-size: clamp(12px, 1.25vw, 17px);
    font-weight: 400;
    color: #64748b;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
  .hero-main {
    font-size: clamp(42px, 5.9vw, 78px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
    color: #fff;
    text-wrap: balance;
  }
  .hero-main.hero-center-name {
    font-size: clamp(34px, 4.8vw, 64px);
    white-space: nowrap;
    text-wrap: nowrap;
    letter-spacing: -1.5px;
  }
  .hero-main.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-break-mobile,
  .hero-keep-mobile {
    display: inline;
  }
  .hero-mobile-br {
    display: none;
  }
  .hero-h1 .grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 48px;
    line-height: 1.75;
    max-width: 620px;
    opacity: 0;
    animation: heroIn 0.8s 0.4s forwards;
  }
  .hero-sub strong { color: #e2e8f0; }
  .hero-sub-keep { white-space: nowrap; }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--grad);
    color: white;
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 32px rgba(0,151,199,0.32);
    width: fit-content;
    opacity: 0;
    animation: heroIn 0.8s 0.55s forwards;
  }
  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,151,199,0.42);
  }
  .hero-scroll {
    margin-top: 60px;
    font-size: 12px;
    color: #475569;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: heroIn 0.8s 0.8s forwards;
  }
  .hero-scroll::after {
    content: '';
    width: 40px; height: 1px;
    background: #475569;
    display: inline-block;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }

  /* ── 스탯 바 ── */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% + 12vw);
    margin: 0 -6vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 12%;
    background: linear-gradient(180deg, rgba(15,15,28,0.96), rgba(11,11,26,0.96));
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  }
  .stat-item {
    padding: 42px 28px;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
  }
  .stat-num sup { font-size: 20px; vertical-align: super; }
  .stat-label { font-size: 14px; color: #64748b; line-height: 1.55; }
  .stat-label strong { color: #cbd5e1; display: block; font-size: 16px; margin-bottom: 4px; }

  /* ── 섹션 공통 ── */
  .section { padding: 100px 10%; }
  .section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0097c7;
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 48px;
    letter-spacing: -1.5px;
    text-wrap: balance;
  }
  .section-title em {
    font-style: normal;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── 이유 4개 ── */
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    /* align-items 기본값 stretch → 같은 행 카드 높이 자동 통일 */
  }
  .reason-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
  }
  .reason-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: 0.3s;
    border-radius: 16px;
    pointer-events: none;
  }
  .reason-card:hover { transform: translateY(-6px); border-color: #0097c7; }
  .reason-card:hover::before { opacity: 0.06; }

  /* 영역 1: 보라색 대제목 — min-height로 구분선 위치 통일 */
  .reason-num {
    padding: 24px 22px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    text-wrap: balance;
  }
  .reason-num sup { font-size: 18px; letter-spacing: 0; vertical-align: super; }

  /* 영역 2: 흰색 소제목 — min-height로 두 번째 구분선 위치 통일 */
  .reason-title {
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    line-height: 1.45;
    background: rgba(255,255,255,0.025);
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    text-wrap: balance;
  }

  /* 영역 3: 회색 설명 — flex:1로 나머지 공간 채움 */
  .reason-desc {
    padding: 14px 22px 20px;
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.7;
    position: relative;
    flex: 1;
  }

  .reasons-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #475569;
  }

  /* ── 센터 소개 ── */
  .center-section {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #eaf5ff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .center-photo {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .center-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .center-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,151,199,0.14), transparent);
    border-radius: 20px;
  }
  .center-photo-border {
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: var(--grad);
    opacity: 0.5;
    z-index: -1;
  }
  .center-info .section-tag { margin-bottom: 12px; }
  .center-name {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  .center-name .and { color: #0097c7; }
  .center-tagline {
    font-size: 19px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.85;
  }
  .center-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .center-stats {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
  }
  .center-stat {
    padding: 0 20px;
    border-right: 1px solid #d9e8ff;
  }
  .center-stat:first-child { padding-left: 0; }
  .center-stat:last-child { border-right: none; }
  .center-stat-num {
    font-size: 34px;
    font-weight: 900;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
  }
  .center-stat-num span { font-size: 17px; letter-spacing: 0; }
  .center-stat-label {
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
    white-space: nowrap;
  }

  /* ── 활동 사진 그리드 ── */
  .activities-section { padding: 100px 10%; }
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .pgrid-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    cursor: pointer;
  }
  .pgrid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    filter: brightness(0.75) saturate(0.9);
  }
  .pgrid-card:hover img { transform: scale(1.05); filter: brightness(0.6) saturate(1.1); }
  .pgrid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,7,15,0.95) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }
  .pgrid-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf5ff 0%, #cfeaff 50%, #f8fbff 100%);
    position: absolute;
    inset: 0;
    transition: 0.4s;
  }
  .pgrid-no-img svg {
    width: 56px;
    height: 56px;
    opacity: 0.35;
    transition: 0.4s;
  }
  .pgrid-card:hover .pgrid-no-img svg { opacity: 0.55; transform: scale(1.1); }
  .pgrid-num {
    font-size: 12px;
    font-weight: 700;
    color: #0097c7;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .pgrid-title {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
  }
  .pgrid-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  .pgrid-card:hover .pgrid-desc { max-height: 60px; }

  /* ── 상세 안내 (티켓 스타일) ── */
  .details-section {
    padding: 100px 10%;
    background: #fbfdff;
  }
  .ticket {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
  }
  .ticket::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad);
  }
  .ticket-header {
    padding: 40px 48px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .ticket-title-main {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
  }
  .ticket-title-sub { font-size: 13px; color: var(--gray); }
  .ticket-badge {
    background: rgba(0,151,199,0.10);
    border: 1px solid rgba(0,151,199,0.28);
    color: #0097c7;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
  }
  .ticket-qualify {
    padding: 14px 48px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,151,199,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .ticket-qualify-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0097c7;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .ticket-qualify-value {
    font-size: 15px;
    color: #94a3b8;
  }
  .ticket-qualify-value strong { color: #e2e8f0; }

  .ticket-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ticket-cell {
    padding: 32px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .ticket-cell:nth-child(3), .ticket-cell:nth-child(6) { border-right: none; }
  .ticket-cell-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0097c7;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .ticket-cell-value {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.7;
  }
  .ticket-cell-value .highlight { color: #0097c7; }
  .ticket-cell-value .amber { color: var(--amber); }
  .ticket-perks {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
  }
  .ticket-perks-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00b8e6;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .perks-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .perk {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,151,199,0.08);
    border: 1px solid rgba(0,151,199,0.22);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    color: #0097c7;
    font-weight: 700;
  }
  .perk::before { content: '✦'; font-size: 10px; }
  .ticket-process {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
  }
  .ticket-process-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0097c7;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .process-steps {
    display: flex;
    align-items: center;
  }
  .proc-step { flex: 1; position: relative; }
  .proc-step::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #374151;
    font-size: 18px;
  }
  .proc-step:last-child::after { display: none; }
  .proc-date { font-size: 12px; color: #64748b; margin-bottom: 4px; }
  .proc-name { font-size: 16px; font-weight: 900; color: #fff; }
  .ticket-contact {
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contact-text { font-size: 13px; color: #64748b; line-height: 1.8; }
  .contact-text strong { color: #94a3b8; }
  .apply-method { font-size: 13px; color: #64748b; line-height: 1.8; text-align: right; }
  .apply-method strong { color: #0097c7; }

  /* ── FAQ ── */
  .faq-section { padding: 100px 10%; }
  .faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item[open] { border-color: #0097c7; }
  .faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #e2e8f0;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: #0097c7;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 28px 22px;
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 18px;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 120px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: #eaf5ff;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,151,199,0.12) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cta-eyebrow {
    font-size: 12px;
    color: #475569;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
  }
  .cta-title-label {
    font-size: clamp(13px, 1.6vw, 20px);
    font-weight: 400;
    color: #475569;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .cta-title-date {
    font-size: clamp(96px, 14vw, 172px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -6px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-date { font-size: 16px; color: #64748b; margin-bottom: 52px; }
  .cta-date strong { color: var(--amber); }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--grad);
    color: white;
    padding: 22px 60px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 60px rgba(0,151,199,0.28);
  }
  .cta-btn:hover { transform: translateY(-4px); box-shadow: 0 0 100px rgba(0,151,199,0.38); }
  .cta-notice { margin-top: 20px; font-size: 13px; color: #475569; line-height: 1.6; }

  /* ── 푸터 ── */
  .footer {
    background: #040408;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
  }
  .footer-logos { display: flex; align-items: center; gap: 20px; }
  .footer-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(1.1);
  }
  .footer-info { text-align: right; font-size: 12px; color: #475569; line-height: 1.8; }
  .footer-info strong { color: #64748b; }

  /* ── 태블릿 이하 (900px) ── */
  @media (max-width: 900px) {
    /* 네비 */
    .nav-links { display: none; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }

    /* 히어로 */
    .hero { padding: calc(var(--nav-h) + 40px) 6% 60px; }
    .hero-h1 { max-width: 100%; }
    .hero-label { font-size: 11px; letter-spacing: 2.5px; }
    .hero-main { font-size: clamp(34px, 6.6vw, 52px); letter-spacing: -1px; line-height: 1.06; }
    .hero-main.hero-center-name { font-size: clamp(28px, 4.8vw, 42px); letter-spacing: -1px; }
    .hero-sub { font-size: 15px; max-width: 100%; }

    /* 섹션 공통 */
    .section, .activities-section, .details-section, .cta-section, .faq-section { padding: 60px 6%; }
    .section-title { font-size: clamp(26px, 4.8vw, 40px); margin-bottom: 32px; }

    /* 스탯 바 */
    .stats-bar {
      grid-template-columns: repeat(2, 1fr);
      width: calc(100% + 8vw);
      margin: 0 -4vw;
      padding: 0 8%;
    }
    .stat-num { font-size: 36px; }

    /* 이유 카드 — 2열, 구역별 패딩·폰트·min-height 축소 */
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .reason-num { font-size: 22px; letter-spacing: -0.6px; padding: 16px 16px 14px; min-height: 76px; }
    .reason-title { font-size: 14px; padding: 12px 16px; min-height: 54px; }
    .reason-desc { font-size: 12.5px; padding: 12px 16px 16px; }

    /* 센터 소개 */
    .center-section { grid-template-columns: 1fr; gap: 36px; padding: 60px 6%; }
    .center-name { font-size: 40px; }
    .center-tagline { font-size: 18px; }
    .center-stat-num { font-size: 30px; }
    .center-stat-label { font-size: 13px; }
    .center-stats { flex-wrap: wrap; gap: 16px 0; margin-top: 16px; }
    .center-stat { width: 50%; padding: 0 0 14px 0; border-right: none; border-bottom: 1px solid #d9e8ff; }
    .center-stat:nth-child(3),
    .center-stat:nth-child(4) { border-bottom: none; padding-bottom: 0; }

    /* 실습 내용 */
    .photo-grid { grid-template-columns: repeat(2, 1fr); }

    /* 티켓 헤더·공통 */
    .ticket-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px 18px; }
    .ticket-qualify { padding: 10px 20px; flex-wrap: wrap; gap: 6px; }
    .ticket-perks { padding: 18px 20px; }
    .ticket-process { padding: 18px 20px; }
    .ticket-contact { flex-direction: column; gap: 16px; align-items: flex-start; padding: 18px 20px; }
    .apply-method { text-align: left; }

    /* 티켓 바디 — 태블릿은 2열 유지 */
    .ticket-body { grid-template-columns: 1fr 1fr; }
    .ticket-cell { padding: 16px 16px; }
    .ticket-cell-label { font-size: 10.5px; }
    .ticket-cell-value { font-size: 14px; }
    .ticket-cell:nth-child(2) { border-right: none; }
    .ticket-cell:nth-child(3) { border-right: 1px solid var(--border); }
    .ticket-cell:nth-child(4) { border-right: none; }

    /* CTA */
    .cta-eyebrow { font-size: 10px; letter-spacing: 1px; white-space: nowrap; }
    .cta-title-date { font-size: clamp(72px, 18vw, 120px); letter-spacing: -3px; }

    /* 푸터 */
    .footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 6%; }
    .footer-info { text-align: center; }
  }

  /* ── 폰 (600px 이하) — 티켓 1열 전환 ── */
  @media (max-width: 600px) {
    .ticket-body { grid-template-columns: 1fr; }
    .ticket-cell { border-right: none !important; padding: 14px 18px; }
    .ticket-cell:last-child { border-bottom: none; }
    .ticket-cell-value { font-size: 14px; }
  }

  /* ── 소형 폰 (480px 이하) ── */
  @media (max-width: 480px) {
    .stats-bar {
      width: calc(100% + 6vw);
      margin: 0 -3vw;
      padding: 0 6%;
    }
    .stat-item { padding: 28px 16px; }
    .hero { padding: calc(var(--nav-h) + 28px) 6% 52px; }
    .hero-tag { font-size: 11px; margin-bottom: 20px; }
    .hero-label { font-size: 10px; letter-spacing: 2px; }
    .hero-main { font-size: clamp(28px, 8.2vw, 36px); letter-spacing: -0.8px; line-height: 1.08; }
    .hero-main.hero-center-name { font-size: clamp(24px, 6.2vw, 30px); letter-spacing: -0.6px; }
    .hero-sub { font-size: 14px; line-height: 1.7; margin-bottom: 36px; }
    .hero-cta { padding: 16px 28px; font-size: 15px; }
    /* reasons-grid: 소형폰도 2열 유지 → CSS Grid stretch로 쌍끼리 높이 통일 */
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .reason-num { font-size: 18px; letter-spacing: -0.4px; padding: 14px 12px 12px; min-height: 64px; }
    .reason-title { font-size: 12px; padding: 10px 12px; min-height: 46px; }
    .reason-desc { font-size: 11px; padding: 10px 12px 14px; line-height: 1.6; }
    .center-section { gap: 28px; }
    .center-name { font-size: 34px; }
    .center-tagline { font-size: 16px; margin-bottom: 24px; }
    .center-stat-num { font-size: 26px; }
    .center-stat-num span { font-size: 14px; }
    .center-stat-label { font-size: 12px; white-space: normal; }
    .photo-grid { grid-template-columns: 1fr; }
    .proc-step::after { display: none; }
    .process-steps { flex-direction: column; gap: 12px; }
  }

  /* ── 육각형 인재 ── */
  .hex-section {
    padding: 100px 10%;
    background: #fbfdff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .hex-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }
  .hex-chart svg { width: 100%; max-width: 420px; display: block; margin: 0 auto; }
  .hex-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hex-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
  }
  .hex-card.active { border-color: #0097c7; background: rgba(0,184,230,0.08); }
  .hex-card-icon { font-size: 22px; margin-bottom: 8px; }
  .hex-card-name { font-size: 14px; font-weight: 900; color: #e2e8f0; margin-bottom: 5px; }
  .hex-card-desc { font-size: 12.5px; color: #64748b; line-height: 1.65; }
  .hex-card-tag {
    font-size: 10px; font-weight: 700; color: #0097c7;
    letter-spacing: 1px; margin-top: 8px; text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .hex-section { padding: 60px 6%; }
    .hex-wrap { grid-template-columns: 1fr; gap: 28px; }
    .hex-chart svg { max-width: 340px; }
    .hex-cards { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 480px) {
    .hex-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .hex-card { padding: 12px 14px; }
    .hex-card-name { font-size: 12.5px; }
    .hex-card-desc { font-size: 11.5px; }
  }

/* 앤드봇 시안: 기존 문구/구조는 유지하고 캐릭터 에셋만 보조 비주얼로 적용 */
  .andbot-skin {
    --grad: linear-gradient(135deg, #0097c7, #00b8e6, #9eefff);
    --grad-text: linear-gradient(90deg, #0097c7, #00b8e6, #9eefff);
    --navy: #f4f9ff;
    --card: rgba(255,255,255,0.92);
    --border: #d9e8ff;
    --gray: #5f7188;
    --light: #18324f;
    background:
      radial-gradient(circle at 82% 16%, rgba(0,151,199,0.12) 0%, transparent 30%),
      radial-gradient(circle at 18% 42%, rgba(125,223,255,0.16) 0%, transparent 32%),
      var(--navy);
    color: #10213a;
  }
  .andbot-skin .fade-up {
    opacity: 1;
    transform: none;
  }
  .andbot-skin .nav {
    background: rgba(4, 12, 28, 0.82);
    border-bottom-color: rgba(0,151,199,0.18);
  }
  .andbot-skin .nav-brand img {
    filter: none;
  }
  .andbot-skin .nav-link:hover,
  .andbot-skin .nav-link.active {
    color: #9eefff;
  }
  .andbot-skin .nav-cta,
  .andbot-skin .hero-cta,
  .andbot-skin .cta-btn {
    background: linear-gradient(135deg, #0097c7, #00b8e6);
    color: #fff;
    box-shadow: 0 16px 42px rgba(0,151,199,0.30);
  }
  .andbot-skin .nav-link {
    font-size: 13.5px;
  }
  .andbot-skin .hero-tag {
    font-size: 14px;
    letter-spacing: 2.3px;
    margin-bottom: 30px;
  }
  .andbot-skin .hero-h1 {
    gap: 12px;
    margin-bottom: 34px;
    max-width: min(760px, 62vw);
  }
  .andbot-skin .hero-label {
    font-size: clamp(14px, 1.35vw, 18px);
    letter-spacing: 4.5px;
    line-height: 1.45;
    margin-bottom: 2px;
  }
  .andbot-skin .hero-main {
    line-height: 1.11;
    letter-spacing: -1.8px;
    text-shadow: 0 12px 30px rgba(10, 30, 52, 0.10);
  }
  .andbot-skin .hero-main.hero-center-name {
    font-size: clamp(34px, 3.75vw, 50px);
    line-height: 1.18;
    white-space: normal;
    text-wrap: balance;
  }
  .andbot-skin .hero-main.grad-text {
    font-size: clamp(50px, 6.2vw, 86px);
    line-height: 1.08;
    margin-top: 2px;
  }
  .andbot-skin .hero-sub {
    font-size: clamp(18px, 1.45vw, 21px);
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 54px;
  }
  .andbot-skin .hero-cta {
    font-size: 18px;
    padding: 19px 46px;
  }
  .andbot-skin .stat-num {
    font-size: 56px;
  }
  .andbot-skin .stat-label {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .andbot-skin .stat-label strong {
    font-size: 17px;
  }
  .andbot-skin .section-tag {
    font-size: 13px;
    letter-spacing: 3.4px;
    margin-bottom: 18px;
  }
  .andbot-skin .section-title {
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.18;
    letter-spacing: -1.2px;
    margin-bottom: 54px;
  }
  .andbot-skin .reason-num {
    font-size: 30px;
    line-height: 1.22;
  }
  .andbot-skin .reason-title {
    font-size: 16.5px;
    line-height: 1.55;
  }
  .andbot-skin .reason-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .andbot-skin .reasons-footer {
    font-size: 14.5px;
  }
  .andbot-skin .hex-card-name {
    font-size: 16px;
  }
  .andbot-skin .hex-card-desc {
    font-size: 14px;
    line-height: 1.75;
  }
  .andbot-skin .hex-card-tag {
    font-size: 11px;
  }
  .andbot-skin .hex-coach span {
    font-size: 14.5px;
    line-height: 1.75;
  }
  .andbot-skin .pgrid-num {
    font-size: 13px;
  }
  .andbot-skin .pgrid-title {
    font-size: 18px;
    line-height: 1.35;
  }
  .andbot-skin .pgrid-desc {
    font-size: 14px;
    line-height: 1.65;
  }
  .andbot-skin .center-name {
    font-size: clamp(48px, 4.7vw, 64px);
    line-height: 1.16;
  }
  .andbot-skin .center-tagline {
    font-size: 20px;
    line-height: 1.9;
  }
  .andbot-skin .center-stat-label {
    font-size: 15px;
  }
  .andbot-skin .ticket-title-main {
    font-size: 32px;
  }
  .andbot-skin .ticket-title-sub,
  .andbot-skin .ticket-qualify-value,
  .andbot-skin .contact-text,
  .andbot-skin .apply-method {
    font-size: 15px;
  }
  .andbot-skin .ticket-cell-label,
  .andbot-skin .ticket-process-label,
  .andbot-skin .ticket-qualify-label,
  .andbot-skin .ticket-perks-label {
    font-size: 12.5px;
  }
  .andbot-skin .ticket-cell-value {
    font-size: 18px;
    line-height: 1.78;
  }
  .andbot-skin .proc-date {
    font-size: 13px;
  }
  .andbot-skin .proc-name {
    font-size: 18px;
  }
  .andbot-skin .process-detail {
    font-size: 15.5px;
    line-height: 1.85;
  }
  .andbot-skin .faq-item summary {
    font-size: 18px;
    line-height: 1.55;
  }
  .andbot-skin .faq-answer {
    font-size: 16.5px;
    line-height: 1.9;
  }
  .andbot-skin .cta-eyebrow {
    font-size: 13px;
  }
  .andbot-skin .cta-title-label {
    font-size: clamp(16px, 1.7vw, 24px);
  }
  .andbot-skin .cta-date {
    font-size: 18px;
    line-height: 1.75;
  }
  .andbot-skin .cta-notice {
    font-size: 15px;
  }
  .andbot-skin .hero-cta,
  .andbot-skin .cta-btn {
    box-shadow: 0 16px 46px rgba(0,151,199,0.36);
  }
  .andbot-skin .hero {
    padding-right: min(45%, 560px);
    background:
      radial-gradient(circle at 78% 42%, rgba(0,184,230,0.16), transparent 30%),
      linear-gradient(90deg, #fbfdff 0%, #eef8ff 58%, #dff3ff 100%);
    perspective: 1200px;
    transform-style: preserve-3d;
  }
  .andbot-skin .hero::before {
    background: radial-gradient(circle, rgba(0,184,230,0.16) 0%, transparent 70%);
    z-index: 0;
  }
  .andbot-skin .hero::after {
    background: radial-gradient(circle, rgba(125,223,255,0.10) 0%, transparent 70%);
    z-index: 0;
  }
  .andbot-skin .hero-main,
  .andbot-skin .section-title,
  .andbot-skin .center-name,
  .andbot-skin .ticket-title-main {
    color: #10213a;
  }
  .andbot-skin .hero-label,
  .andbot-skin .hero-sub,
  .andbot-skin .stat-label,
  .andbot-skin .reason-desc,
  .andbot-skin .center-tagline,
  .andbot-skin .ticket-title-sub,
  .andbot-skin .ticket-qualify-value,
  .andbot-skin .contact-text,
  .andbot-skin .apply-method,
  .andbot-skin .faq-answer,
  .andbot-skin .hex-card-desc,
  .andbot-skin .cta-date,
  .andbot-skin .cta-notice {
    color: #5f7188;
  }
  .andbot-skin .hero-sub strong,
  .andbot-skin .stat-label strong,
  .andbot-skin .reason-title,
  .andbot-skin .ticket-qualify-value strong,
  .andbot-skin .ticket-cell-value,
  .andbot-skin .proc-name,
  .andbot-skin .contact-text strong,
  .andbot-skin .faq-item summary,
  .andbot-skin .hex-card-name {
    color: #18324f;
  }
  .andbot-skin .hero-andbot-badge {
    position: absolute;
    right: 5.5%;
    bottom: 34px;
    width: min(490px, 39vw);
    max-height: calc(100% - 120px);
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 34px 42px rgba(0,0,0,0.34));
    pointer-events: none;
    z-index: 1;
    transform-origin: 62% 78%;
    will-change: transform, opacity, filter;
    animation: andbotHeroCinematic 2.35s cubic-bezier(.18,.84,.24,1) 0.12s both,
      andbotHover 4.8s ease-in-out 2.7s infinite;
  }
  .andbot-skin .hero > :not(.hero-andbot-badge):not(.andbot-guide) {
    position: relative;
    z-index: 2;
  }
  .andbot-skin .andbot-guide {
    position: absolute;
    left: auto;
    right: 8.5%;
    top: 21%;
    z-index: 10;
    width: min(350px, 29vw);
    padding: 20px 22px;
    border-radius: 22px 22px 8px 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(0,151,199,0.22);
    color: #0f172a;
    box-shadow: 0 22px 54px rgba(0,0,0,0.24);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 800;
    opacity: 1;
    transform: translateY(0);
  }
  .andbot-skin .andbot-guide::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.94);
    border-right: 1px solid rgba(0,151,199,0.22);
    border-bottom: 1px solid rgba(0,151,199,0.22);
    transform: rotate(45deg);
  }
  .andbot-skin .andbot-guide-kicker {
    display: block;
    color: #0097c7;
    font-size: 11.5px;
    letter-spacing: 1.4px;
    margin-bottom: 7px;
  }
  @keyframes andbotGuideIn {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes andbotHeroCinematic {
    0% {
      opacity: 0;
      filter: blur(9px) drop-shadow(0 10px 18px rgba(0,0,0,0.10));
      transform: translate3d(240px, -70px, -360px) scale(0.48) rotateY(-28deg) rotateZ(9deg);
    }
    28% {
      opacity: 0.9;
      filter: blur(3px) drop-shadow(0 18px 28px rgba(0,0,0,0.18));
      transform: translate3d(54px, -38px, -160px) scale(0.70) rotateY(-16deg) rotateZ(3deg);
    }
    58% {
      opacity: 1;
      filter: blur(0.8px) drop-shadow(0 30px 38px rgba(0,0,0,0.30));
      transform: translate3d(-34px, 4px, 34px) scale(1.04) rotateY(7deg) rotateZ(-2deg);
    }
    78% {
      opacity: 1;
      filter: blur(0) drop-shadow(0 38px 46px rgba(0,0,0,0.40));
      transform: translate3d(10px, -7px, 0) scale(1.015) rotateY(-2deg) rotateZ(0.5deg);
    }
    100% {
      opacity: 1;
      filter: drop-shadow(0 34px 42px rgba(0,0,0,0.42));
      transform: translate3d(0, 0, 0) scale(1) rotateY(0deg) rotateZ(0deg);
    }
  }
  @keyframes andbotHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes andbotFlyIn {
    from {
      opacity: 0;
      transform: translate(90px, -20px) rotate(10deg) scale(0.88);
    }
    70% {
      opacity: 1;
      transform: translate(-6px, 2px) rotate(-2deg) scale(1.02);
    }
    to {
      opacity: 1;
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
  }
  @keyframes andbotLiftIn {
    from {
      opacity: 0;
      transform: translateY(44px) scale(0.94);
    }
    to {
      opacity: 0.86;
      transform: translateY(0) scale(1);
    }
  }
  .andbot-skin .hero-tag,
  .andbot-skin .section-tag,
  .andbot-skin .ticket-cell-label,
  .andbot-skin .ticket-process-label,
  .andbot-skin .ticket-qualify-label {
    color: #0097c7;
  }
  .andbot-skin .hero-tag::before,
  .andbot-skin .ticket::before {
    background: linear-gradient(135deg, #0097c7, #00b8e6);
  }
  .andbot-skin .hero-main.grad-text,
  .andbot-skin .section-title em,
  .andbot-skin .stat-num,
  .andbot-skin .center-stat-num,
  .andbot-skin .cta-title-date {
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00a8d8;
    background-clip: text;
    color: #00a8d8;
  }
  .andbot-skin .stats-bar {
    background: #f8fdff;
    box-shadow: none;
  }
  .andbot-skin .stat-item {
    background: #ffffff;
    transition: transform 0.24s ease, background 0.24s ease;
  }
  .andbot-skin .stat-item::before {
    content: attr(data-icon);
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(0,168,216,0.10);
    border: 1px solid rgba(0,168,216,0.20);
    color: #00a8d8;
    font-size: 17px;
    font-weight: 900;
  }
  .andbot-skin .stat-item::after {
    content: attr(data-guide);
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #007fa6;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    opacity: 0;
    transition: max-height 0.24s ease, opacity 0.24s ease, margin-top 0.24s ease;
  }
  .andbot-skin .stat-item:hover,
  .andbot-skin .stat-item:focus-within {
    transform: translateY(-4px);
    background: #eefaff;
  }
  .andbot-skin .stat-item:hover::after,
  .andbot-skin .stat-item:focus-within::after {
    max-height: 44px;
    opacity: 1;
    margin-top: 12px;
  }
  .andbot-skin .reason-card,
  .andbot-skin .ticket,
  .andbot-skin .faq-item,
  .andbot-skin .hex-card {
    border-color: rgba(0,151,199,0.22);
    box-shadow: 0 18px 44px rgba(0,151,199,0.08);
  }
  .andbot-skin .reason-card:hover {
    border-color: #0097c7;
  }
  .andbot-skin .reason-card::before,
  .andbot-skin .center-photo-border,
  .andbot-skin .ticket::before {
    background: var(--grad);
  }
  .andbot-skin .center-stat {
    border-color: rgba(0,151,199,0.18);
  }
  .andbot-skin .pgrid-num,
  .andbot-skin .ticket-cell-value .highlight,
  .andbot-skin .apply-method strong,
  .andbot-skin .hex-card-tag,
  .andbot-skin .center-name .and {
    color: #0097c7;
  }
  .andbot-skin .ticket-badge {
    background: rgba(0,151,199,0.10);
    border-color: rgba(0,151,199,0.28);
    color: #0097c7;
  }
  .andbot-skin .ticket {
    background: rgba(255,255,255,0.94);
  }
  .andbot-skin .ticket-qualify,
  .andbot-skin .ticket-cell {
    background: rgba(255,255,255,0.28);
  }
  .andbot-skin .faq-item,
  .andbot-skin .hex-card,
  .andbot-skin .reason-card {
    background: rgba(255,255,255,0.92);
  }
  .andbot-skin .faq-item[open],
  .andbot-skin .hex-card.active {
    border-color: #0097c7;
  }
  .andbot-skin .hex-card.active {
    background: rgba(0,151,199,0.08);
  }
  .andbot-skin .faq-item summary::after {
    color: #0097c7;
  }
  .andbot-skin .cta-eyebrow,
  .andbot-skin .cta-title-label,
  .andbot-skin .reasons-footer {
    color: #5f7188;
  }
  .andbot-skin .center-section {
    background:
      radial-gradient(circle at 90% 18%, rgba(0,151,199,0.10), transparent 30%),
      #eaf5ff;
  }
  .andbot-skin .hex-section {
    background:
      radial-gradient(circle at 12% 8%, rgba(125,223,255,0.14), transparent 30%),
      #fbfdff;
  }
  .andbot-skin .activities-section {
    background:
      radial-gradient(circle at 12% 8%, rgba(125,223,255,0.18), transparent 30%),
      linear-gradient(180deg, #eef8ff, #f7fbff);
  }
  .andbot-skin .details-section {
    background:
      radial-gradient(circle at 90% 20%, rgba(0,151,199,0.12), transparent 28%),
      linear-gradient(180deg, #fbfdff, #eaf5ff);
  }
  .andbot-skin .ticket {
    overflow: hidden;
  }
  .andbot-skin .proc-step {
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
  }
  .andbot-skin .proc-step:focus-visible {
    outline: 2px solid #9eefff;
    outline-offset: 8px;
    border-radius: 10px;
  }
  .andbot-skin .proc-step.is-active .proc-name {
    color: #9eefff;
  }
  .andbot-skin .process-detail {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0,151,199,0.10);
    border: 1px solid rgba(125,223,255,0.20);
    color: #40546d;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
  }
  .andbot-skin .process-detail strong {
    color: #9eefff;
    display: block;
    margin-bottom: 4px;
  }
  .andbot-skin .ticket-andbot {
    position: absolute;
    right: -18px;
    bottom: -38px;
    width: min(260px, 24%);
    opacity: 0.16;
    filter: saturate(0.9);
    pointer-events: none;
  }
  .andbot-skin .photo-grid {
    position: relative;
  }
  .andbot-skin .activities-section {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
  }
  .andbot-skin .section-andbot {
    position: absolute;
    display: block;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    will-change: transform, opacity, filter;
    transform-style: preserve-3d;
  }
  .andbot-skin .section-andbot-program {
    right: 8%;
    top: 48px;
    width: min(138px, 12vw);
    filter: drop-shadow(0 24px 34px rgba(0,151,199,0.18));
    transform: translate3d(90px, -20px, 0) rotate(10deg) scale(0.88);
  }
  .andbot-skin .activities-section::after {
    display: none;
  }
  .andbot-skin .section-andbot-program.andbot-inview {
    animation: andbotFlyIn 0.9s cubic-bezier(.18,.84,.32,1) forwards,
      andbotHover 4.6s ease-in-out 1s infinite;
  }
  .andbot-skin .pgrid-card {
    border: 1px solid rgba(0,151,199,0.20);
    box-shadow: 0 18px 48px rgba(0,151,199,0.14);
  }
  .andbot-skin .pgrid-card > img:first-child {
    filter: brightness(0.92) saturate(1.03);
  }
  .andbot-skin .pgrid-card:hover > img:first-child {
    filter: brightness(0.84) saturate(1.08);
  }
  .andbot-skin .pgrid-overlay {
    background: linear-gradient(to top, rgba(6,20,40,0.86) 0%, rgba(6,20,40,0.38) 42%, transparent 70%);
  }
  .andbot-skin .pgrid-desc {
    color: rgba(255,255,255,0.82);
  }
  .andbot-skin .hex-wrap {
    position: relative;
  }
  .andbot-skin .hex-coach {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(125,223,255,0.20);
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
  }
  .andbot-skin .hex-coach img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
  }
  .andbot-skin .hex-coach strong {
    display: block;
    color: #0097c7;
    font-size: 13px;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  .andbot-skin .hex-coach span {
    color: #40546d;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 700;
  }
  .andbot-skin .faq-section::after {
    display: none;
  }
  .andbot-skin .faq-list {
    position: relative;
    z-index: 1;
  }
  .andbot-skin .faq-answer {
    background: linear-gradient(90deg, rgba(0,151,199,0.08), transparent);
  }
  .andbot-skin .cta-section {
    background:
      radial-gradient(circle at 50% 48%, rgba(0,196,220,0.10), transparent 28%),
      linear-gradient(180deg, #eaf5ff, #fbfdff);
  }
  .andbot-skin .cta-section::before {
    display: none;
  }
  .andbot-skin .cta-title-date {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #009fd3;
    color: #009fd3;
  }
  .andbot-skin .cta-section {
    position: relative;
    perspective: 1000px;
  }
  .andbot-skin .section-andbot-cta {
    right: 7%;
    bottom: 18px;
    width: min(280px, 24vw);
    filter: drop-shadow(0 28px 34px rgba(0,151,199,0.22));
    transform: translate3d(0, 44px, 0) scale(0.94);
  }
  .andbot-skin .cta-section::after {
    display: none;
  }
  .andbot-skin .section-andbot-cta.andbot-inview {
    animation: andbotLiftIn 0.85s cubic-bezier(.18,.84,.32,1) forwards,
      andbotHover 4.8s ease-in-out 1s infinite;
  }
  .andbot-skin .cta-section > * {
    position: relative;
    z-index: 1;
  }
  .andbot-skin .section-andbot {
    position: absolute;
    z-index: 0;
  }
  .motion-js .andbot-skin .hero-andbot-badge,
  .motion-js .andbot-skin .section-andbot.andbot-inview {
    animation: none;
  }
  .andbot-floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,151,199,0.22);
    background: rgba(255,255,255,0.92);
    color: #0097c7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(0,151,199,0.18);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .andbot-floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .andbot-floating-cta img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    object-position: top center;
    border-radius: 999px;
    background: rgba(0,151,199,0.08);
  }
  .andbot-skin .process-detail {
    font-size: 15.5px;
    line-height: 1.85;
  }
  .andbot-skin .hex-coach strong {
    font-size: 13.5px;
  }
  .andbot-skin .hex-coach span {
    font-size: 14.5px;
    line-height: 1.75;
  }
  .andbot-skin .footer-info {
    font-size: 13.5px;
    line-height: 1.9;
  }
  @media (max-width: 900px) {
    .andbot-skin .hero {
      padding-right: 6%;
      background:
        radial-gradient(circle at 70% 78%, rgba(0,184,230,0.14), transparent 34%),
        linear-gradient(180deg, #fbfdff, #eef8ff);
      padding-bottom: 260px;
    }
    .andbot-skin .hero-h1 {
      gap: 10px;
      margin-bottom: 30px;
    }
    .andbot-skin .hero-label {
      font-size: 12px;
      line-height: 1.5;
    }
    .andbot-skin .hero-main {
      line-height: 1.14;
    }
    .andbot-skin .hero-main.grad-text {
      font-size: clamp(38px, 7.2vw, 56px);
      line-height: 1.12;
    }
    .andbot-skin .hero-sub {
      font-size: 16px;
      line-height: 1.85;
    }
    .andbot-skin .section-title {
      line-height: 1.22;
    }
    .andbot-skin .reason-desc,
    .andbot-skin .hex-card-desc,
    .andbot-skin .pgrid-desc,
    .andbot-skin .faq-answer {
      font-size: 14px;
    }
    .andbot-skin .ticket-cell-value {
      font-size: 15.5px;
    }
    .andbot-skin .hero-andbot-badge {
      display: block;
      width: 300px;
      right: 16px;
      bottom: 18px;
      max-height: 250px;
    }
    .andbot-skin .andbot-guide {
      left: auto;
      right: 24px;
      top: auto;
      bottom: 210px;
      width: min(300px, calc(100% - 48px));
      font-size: 13px;
    }
    .andbot-skin .ticket-andbot {
      display: none;
    }
    .andbot-skin .section-andbot,
    .andbot-skin .activities-section::after,
    .andbot-skin .faq-section::after,
    .andbot-skin .cta-section::after {
      display: none;
    }
    .andbot-skin .center-section,
    .andbot-skin .details-section {
      background-size: auto;
    }
  }
  @media (max-width: 480px) {
    .andbot-skin .hero {
      background:
        radial-gradient(circle at 50% 80%, rgba(0,184,230,0.14), transparent 34%),
        linear-gradient(180deg, #fbfdff, #eef8ff);
      padding-bottom: 250px;
    }
    .andbot-skin .hero-h1 {
      gap: 8px;
      margin-bottom: 26px;
    }
    .andbot-skin .hero-label {
      font-size: 10.5px;
      letter-spacing: 2px;
    }
    .andbot-skin .hero-main {
      line-height: 1.16;
    }
    .andbot-skin .hero-main.hero-center-name {
      font-size: clamp(24px, 6.6vw, 31px);
    }
    .andbot-skin .hero-main.grad-text {
      font-size: clamp(29px, 8vw, 35px);
      line-height: 1.14;
    }
    .andbot-skin .hero-break-mobile,
    .andbot-skin .hero-keep-mobile {
      display: block;
    }
    .andbot-skin .hero-keep-mobile {
      white-space: nowrap;
    }
    .andbot-skin .hero-sub {
      font-size: 15px;
      line-height: 1.85;
    }
    .andbot-skin .hero-scroll {
      display: none;
    }
    .andbot-skin .section-title {
      font-size: clamp(30px, 8.4vw, 42px);
    }
    .andbot-skin .reason-title,
    .andbot-skin .hex-card-name,
    .andbot-skin .pgrid-title {
      font-size: 14px;
    }
    .andbot-skin .reason-desc,
    .andbot-skin .hex-card-desc,
    .andbot-skin .faq-answer {
      font-size: 13px;
      line-height: 1.75;
    }
    .andbot-skin .hero-andbot-badge {
      width: 215px;
      right: 50%;
      transform: translateX(50%);
      bottom: 4px;
    }
    .andbot-skin .andbot-guide {
      left: 16px;
      right: 16px;
      top: auto;
      bottom: 184px;
      width: auto;
    }
    .andbot-floating-cta {
      right: 14px;
      bottom: 14px;
    }
  }
  .andbot-skin .hero-h1 {
    gap: 16px;
  }
  .andbot-skin .hero-main.hero-center-name {
    line-height: 1.22;
  }
  .andbot-skin .hero-main.grad-text {
    line-height: 1.16;
  }
  .andbot-skin .hero-sub {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.9;
  }
  .andbot-skin .stat-label,
  .andbot-skin .stat-meta,
  .andbot-skin .reason-kicker,
  .andbot-skin .reason-desc,
  .andbot-skin .hex-card-desc,
  .andbot-skin .pgrid-desc,
  .andbot-skin .center-copy,
  .andbot-skin .process-detail,
  .andbot-skin .faq-answer,
  .andbot-skin .cta-note {
    font-size: 15px;
    line-height: 1.8;
  }
  .andbot-skin .reason-title,
  .andbot-skin .hex-card-name,
  .andbot-skin .pgrid-title,
  .andbot-skin .ticket-cell-label,
  .andbot-skin .process-title {
    font-size: 18px;
    line-height: 1.35;
  }
  .andbot-skin .ticket-cell-value,
  .andbot-skin .faq-question,
  .andbot-skin .hex-coach span {
    font-size: 16px;
    line-height: 1.75;
  }
  .andbot-skin .eyebrow,
  .andbot-skin .section-kicker,
  .andbot-skin .pgrid-num {
    letter-spacing: 2.4px;
  }
  @media (max-width: 900px) {
    .andbot-skin .hero-h1 {
      gap: 13px;
    }
    .andbot-skin .hero-main.grad-text {
      line-height: 1.17;
    }
    .andbot-skin .stat-label,
    .andbot-skin .stat-meta,
    .andbot-skin .reason-kicker,
    .andbot-skin .reason-desc,
    .andbot-skin .hex-card-desc,
    .andbot-skin .pgrid-desc,
    .andbot-skin .center-copy,
    .andbot-skin .process-detail,
    .andbot-skin .faq-answer,
    .andbot-skin .cta-note {
      font-size: 14.5px;
    }
  }
  @media (max-width: 480px) {
    .andbot-skin .hero-h1 {
      gap: 10px;
    }
    .andbot-skin .hero-main.grad-text {
      line-height: 1.18;
    }
    .andbot-skin .hero-sub {
      font-size: 15.5px;
    }
    .andbot-skin .reason-title,
    .andbot-skin .hex-card-name,
    .andbot-skin .pgrid-title,
    .andbot-skin .ticket-cell-label,
    .andbot-skin .process-title {
      font-size: 15px;
    }
    .andbot-skin .stat-label,
    .andbot-skin .stat-meta,
    .andbot-skin .reason-kicker,
    .andbot-skin .reason-desc,
    .andbot-skin .hex-card-desc,
    .andbot-skin .pgrid-desc,
    .andbot-skin .center-copy,
    .andbot-skin .process-detail,
    .andbot-skin .faq-answer,
    .andbot-skin .cta-note {
      font-size: 13.8px;
    }
    .andbot-skin .faq-question,
    .andbot-skin .ticket-cell-value {
      font-size: 15px;
    }
  }
  .andbot-skin .reasons-grid {
    gap: 22px;
  }
  .andbot-skin .reason-card {
    min-height: 292px;
    padding: 22px;
    overflow: hidden;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,251,255,0.92));
  }
  .andbot-skin .reason-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #0097c7, #7ddfff);
    opacity: 0.7;
  }
  .andbot-skin .reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,151,199,0.14);
  }
  .andbot-skin .reason-point {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #0097c7;
  }
  .andbot-skin .reason-point span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
  }
  .andbot-skin .reason-point b {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(0,151,199,0.10);
    border: 1px solid rgba(0,151,199,0.18);
    color: #007fa6;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
  }
  .andbot-skin .reason-num {
    min-height: auto;
    padding: 0;
    border: 0;
    display: block;
    font-size: clamp(25px, 2.15vw, 31px);
    line-height: 1.16;
    letter-spacing: -0.7px;
    color: #15324f;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .andbot-skin .reason-title {
    min-height: auto;
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(0,151,199,0.16);
    border-bottom: 0;
    background: none;
    color: #18324f;
    font-size: 16.5px;
    line-height: 1.45;
  }
  .andbot-skin .reason-desc {
    flex: 0;
    margin-top: 12px;
    padding: 0;
    color: #60758c;
    font-size: 14.5px;
    line-height: 1.75;
  }
  .andbot-skin .reason-card:hover .reason-point b {
    background: #0097c7;
    color: #fff;
    transform: scale(1.04);
  }
  @media (max-width: 900px) {
    .andbot-skin .reasons-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .andbot-skin .reason-card {
      min-height: 250px;
    }
    .andbot-skin .reason-num {
      font-size: 25px;
    }
  }
  @media (max-width: 480px) {
    .andbot-skin .reasons-grid {
      grid-template-columns: 1fr;
    }
    .andbot-skin .reason-card {
      min-height: auto;
      padding: 20px;
    }
    .andbot-skin .reason-title {
      font-size: 15.5px;
    }
    .andbot-skin .reason-desc {
      font-size: 14px;
    }
  }
  @media (max-width: 900px) {
    .andbot-skin .hero-mobile-br {
      display: block;
    }
    .andbot-skin .hero-break-mobile {
      display: inline;
    }
    .andbot-skin .hero-keep-mobile {
      display: inline-block;
      white-space: nowrap;
    }
  }
  @media (max-width: 480px) {
    .andbot-skin .hero-main.grad-text {
      font-size: clamp(29px, 8vw, 35px);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .andbot-skin .hero-andbot-badge,
    .andbot-skin .section-andbot.andbot-inview {
      animation: none;
      opacity: 1;
      transform: none;
    }
    .andbot-skin .section-andbot-cta.andbot-inview {
      opacity: 0.86;
    }
  }
