:root {
    /* === AWS Modern Brand Palette (Dark / Neutral / White) === */
    --aws-squid-ink: #232F3E;
    --aws-squid-ink-dark: #161E2D;
    --aws-anchor: #0F1B2D;
    --aws-link: #0073BB;

    /* Legacy orange tokens are kept for compatibility but
       neutralized to dark/grey so existing references read as a
       refined monochrome accent instead of the old orange. */
    --aws-orange: #232F3E;
    --aws-orange-light: #3B4A63;
    --aws-orange-dark: #161E2D;

    /* === SAP Brand === */
    --sap-blue: #0070F2;
    --sap-blue-dark: #003D7E;
    --cloud-cyan: #00C4F4;

    --bg: #F4F6F8;
    --bg-alt: #ECF1F8;
    --surface: #FFFFFF;
    --text: #16191F;
    --text-soft: #3D4A63;
    --muted: #5B6B85;
    --line: #D5DBDB;
    --line-soft: #EAEDED;

    --danger: #D13212;
    --success: #1D8102;

    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.06);
    --shadow: 0 8px 24px rgba(15, 27, 45, 0.1);
    --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Amazon Ember", "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--sap-blue);
    text-decoration: none;
}

/* ====== Top Notice ====== */
.top-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: 14px 18px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #E45656 0%, #D22C2C 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
}

.top-notice.is-visible {
    transform: translateY(0);
}

/* ====== Sticky Top Bar (AWS Console style) ====== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: var(--aws-squid-ink-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.18);
}

.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-host {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.topbar-logo {
    height: 72px;
    width: auto;
    display: block;
    /* Neutralize the legacy orange smile so the logo reads as a clean
       monochrome mark on the dark header (modern AWS guideline). */
    filter: grayscale(1) brightness(1.1) contrast(1.05);
}

.topbar-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.18);
}

.topbar-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.005em;
}

.topbar-cta {
    background: #FFFFFF;
    color: var(--aws-anchor);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 4px;
    transition: background-color 0.15s, box-shadow 0.15s, transform 0.25s, opacity 0.25s, visibility 0.25s;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
}

.topbar.is-scrolled .topbar-cta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.topbar-cta:hover {
    background: #E9EEF5;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 6px 18px rgba(0, 0, 0, 0.25);
}

.topbar-cta span {
    margin-left: 4px;
}

/* ====== Landing Layout ====== */
.lp {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.section {
    padding: 80px 0;
    border-top: 1px solid var(--line-soft);
}

.section:first-of-type {
    border-top: none;
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--aws-orange-dark);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--aws-orange);
}

.section-head h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: var(--text);
}

.section-desc {
    margin: 14px auto 0;
    max-width: 640px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

/* ====== HERO (AWS Squid Ink dark theme) ====== */
.hero {
    position: relative;
    margin: 24px 0 0;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        linear-gradient(135deg, var(--aws-squid-ink-dark) 0%, var(--aws-squid-ink) 60%, #2C3E5C 100%);
    box-shadow: var(--shadow-lg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at 8% 92%, rgba(0, 112, 242, 0.14), transparent 42%);
    pointer-events: none;
}

/* Dot grid overlay (AWS Builder feel) */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 70%, transparent 100%);
    pointer-events: none;
}

/* Isometric cubes (right side decoration) */
.hero-cubes {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 480px;
    height: 480px;
    z-index: 0;
    opacity: 0.92;
    pointer-events: none;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

/* SAP logo (top-right of hero) */
.hero-sap-logo {
    position: absolute;
    top: 32px;
    right: 40px;
    width: 96px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 64px 72px;
    max-width: 760px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.badge-aws {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
}

.badge-sap {
    background: rgba(0, 112, 242, 0.22);
    border-color: rgba(0, 144, 255, 0.5);
    color: #88C2FF;
}

.hero-title {
    margin: 0 0 16px;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.hero-accent {
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.hero-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 6px;
    background: var(--cloud-cyan);
    border-radius: 3px;
    opacity: 0.55;
}

.hero-sub {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--cloud-cyan);
    font-family: "Amazon Ember", "Pretendard", -apple-system, sans-serif;
}

.hero-desc {
    margin: 0 0 36px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.hero-meta li {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 20px 22px;
    backdrop-filter: blur(8px);
}

.hero-meta li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0 0 2px 2px;
}

.meta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.meta-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.meta-sub {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
    transition: background-color 0.15s, box-shadow 0.15s, transform 0.1s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #FFFFFF;
    color: var(--aws-anchor);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
    background: #E9EEF5;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 26px rgba(0, 0, 0, 0.36);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ====== About ====== */
.about-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    position: relative;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 0;
    width: 4px;
    background: var(--aws-orange);
    border-radius: 0 4px 4px 0;
}

.about-greeting {
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 18px;
}

.about-greeting strong {
    color: var(--aws-orange-dark);
}

.about-body {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-soft);
    word-break: keep-all;
}

.about-body:last-child {
    margin-bottom: 0;
}

.about-body strong {
    color: var(--text);
    font-weight: 700;
}

/* ====== Reasons ====== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.reason-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 30px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
    overflow: hidden;
}

.reason-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aws-orange) 0%, var(--aws-orange-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-3px);
    border-color: var(--aws-orange);
    box-shadow: var(--shadow);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #EEF1F6 0%, #DDE3EC 100%);
    color: var(--aws-squid-ink);
    margin-bottom: 18px;
    box-shadow: inset 0 0 0 1px rgba(35, 47, 62, 0.12);
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.reason-icon svg {
    width: 30px;
    height: 30px;
}

.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, var(--aws-orange) 0%, var(--aws-orange-dark) 100%);
    color: #fff;
    transform: scale(1.05);
}

.reason-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    padding: 3px 8px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #FAFBFC;
}

.reason-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.reason-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.72;
    color: var(--text-soft);
    word-break: keep-all;
}

.reason-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--line-soft);
}

.reason-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-soft);
    word-break: keep-all;
}

.reason-list li + li {
    margin-top: 9px;
}

.reason-list .reason-emoji {
    flex: 0 0 auto;
    font-size: 15px;
    line-height: 1.5;
}

.reason-list strong {
    color: var(--text);
    font-weight: 700;
}

/* ====== Solution Intro ====== */
.solution-intro {
    max-width: 880px;
    margin: 0 auto 28px;
    padding: 22px 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.solution-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
    word-break: keep-all;
}

.solution-intro strong {
    color: var(--text);
    font-weight: 700;
}

.solution-block {
    margin-top: 26px;
}

.solution-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.solution-title::before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--aws-squid-ink);
}

/* 모듈 카드 그리드 */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.module-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.module-card:hover {
    transform: translateY(-3px);
    border-color: var(--aws-squid-ink);
    box-shadow: var(--shadow);
}

.module-card h4 {
    margin: 0 0 8px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.module-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-soft);
    word-break: keep-all;
}

/* 도입 전/후 비교 */
.compare-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-before,
.compare-after {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
    display: flex;
    align-items: center;
}

.compare-before {
    background: var(--bg-alt);
    color: var(--muted);
}

.compare-after {
    color: var(--text);
    font-weight: 600;
    position: relative;
}

.compare-after::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 2px;
    background: var(--aws-squid-ink);
}

@media (max-width: 760px) {
    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .solution-intro {
        padding: 18px 18px;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .compare-after::before {
        display: none;
    }

    .compare-before {
        border-bottom: 1px solid var(--line-soft);
    }
}

/* ====== Agenda ====== */
.agenda-table {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.agenda-row {
    display: grid;
    grid-template-columns: 140px 1fr 140px 240px;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    border-top: 1px solid var(--line-soft);
    transition: background-color 0.2s;
}

.agenda-row:hover:not(.agenda-head):not(.agenda-break) {
    background: #F8FAFF;
}

.agenda-row:first-child {
    border-top: none;
}

.agenda-head {
    background: var(--aws-squid-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 28px;
    position: relative;
}

.agenda-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.agenda-head .agenda-time,
.agenda-head .agenda-session,
.agenda-head .agenda-company,
.agenda-head .agenda-speaker {
    color: #fff;
    font-weight: 700;
}

.agenda-head .agenda-session,
.agenda-head .agenda-company,
.agenda-head .agenda-speaker {
    font-size: 12px;
    letter-spacing: 0.18em;
}

.agenda-time {
    font-size: 15px;
    font-weight: 700;
    color: var(--aws-squid-ink);
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 16px;
}

.agenda-time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aws-squid-ink);
    box-shadow: 0 0 0 3px rgba(35, 47, 62, 0.14);
}

.agenda-head .agenda-time {
    padding-left: 0;
}

.agenda-head .agenda-time::before {
    display: none;
}

.agenda-session h4 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.agenda-session p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.agenda-company {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
    text-align: left;
    line-height: 1.4;
}

.agenda-speaker {
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.55;
}

.agenda-speaker strong {
    display: inline-block;
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    margin-top: 4px;
}

.agenda-speaker strong:first-child {
    margin-top: 0;
}

.speaker-role-sm {
    display: inline-block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

.agenda-break {
    background: #F4F6FA;
}

.agenda-break .agenda-time {
    color: var(--aws-orange-dark);
}

.agenda-break .agenda-session h4 {
    color: var(--aws-orange-dark);
}

.agenda-break .agenda-company,
.agenda-break .agenda-speaker {
    color: var(--muted);
}

/* ====== Speakers ====== */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.speaker-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.25s;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.speaker-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aws-squid-ink) 0%, var(--aws-squid-ink-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 14px 30px rgba(15, 27, 45, 0.28),
        inset 0 0 0 3px rgba(255, 255, 255, 0.18);
    position: relative;
}

.speaker-photo::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aws-squid-ink) 0%, #2C3E5C 100%);
    z-index: 0;
}

/* 나중에 추가될 이미지가 원 안에 꽉 차도록 처리 */
.speaker-photo img {
    position: relative;
    z-index: 1;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: 5px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.speaker-initial {
    position: relative;
    z-index: 1;
    font-size: 38px;
}

.speaker-initial {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* 나중에 실제 사진으로 교체할 때까지 사용하는 사람 실루엣 SVG */
.speaker-placeholder {
    position: relative;
    z-index: 1;
    width: 62%;
    height: 62%;
    display: block;
}

.speaker-name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.speaker-title {
    display: inline-block;
    margin-left: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #EEF1F6;
    color: var(--aws-squid-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: 2px;
}

.speaker-role {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--text-soft);
}

.speaker-company {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--aws-squid-ink);
    letter-spacing: 0.02em;
}

/* ====== Sponsors ====== */
.sponsor-block {
    margin-bottom: 36px;
}

.sponsor-block:last-child {
    margin-bottom: 0;
}

.sponsor-label {
    text-align: center;
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 16px;
}

.sponsor-row:last-child {
    margin-bottom: 0;
}

.sponsor-row-partners {
    gap: 22px;
}

.sponsor-logo {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
    padding: 16px 24px;
}

.sponsor-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--aws-orange);
}

.sponsor-row-large .sponsor-logo,
.sponsor-logo-large {
    width: 260px;
    height: 130px;
    padding: 22px 30px;
}

/* 주최(Host) AWS 로고는 정사각형 비율이라 더 크게 보이도록 별도 사이즈 */
.sponsor-logo-host {
    width: 280px;
    height: 200px;
    padding: 20px 28px;
}

.sponsor-logo-partner {
    width: 200px;
    height: 100px;
    padding: 14px 18px;
}

.sponsor-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sponsor-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.sponsor-img1 {
    max-height: 140%;
    /* Modern AWS uses a monochrome wordmark on light backgrounds; neutralize
       the orange smile so the host logo matches the new dark/grey palette. */
    filter: grayscale(1) contrast(1.05);
}

.sponsor-text-sm {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 0.02em;
}

/* ====== Venue ====== */
.venue-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.venue-map {
    min-height: 420px;
    background: #E5EBF5;
}

.venue-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.venue-info {
    padding: 36px 36px 36px 8px;
}

.venue-name {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.venue-addr {
    margin: 0 0 24px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
}

.venue-transit {
    display: grid;
    gap: 14px;
}

.transit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    background: #F8FAFF;
}

.transit-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    word-break: keep-all;
}

.transit-item strong {
    color: var(--text);
    font-weight: 700;
}

.transit-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    width: fit-content;
}

.transit-subway {
    background: var(--sap-blue);
}

.transit-bus {
    background: var(--success);
}

.transit-warn {
    background: #F4F6FA;
    border-color: #D5DBE6;
}

.transit-warn-tag {
    background: var(--aws-squid-ink);
}

/* ====== Registration / Form ====== */
.section-register {
    position: relative;
    background:
        radial-gradient(ellipse at top, rgba(35, 47, 62, 0.05), transparent 55%),
        radial-gradient(circle at 8% 30%, rgba(0, 115, 187, 0.05), transparent 40%),
        linear-gradient(180deg, #FAFBFC 0%, #EEF1F5 100%);
    padding: 80px 0;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 20px;
    overflow: hidden;
}

.section-register::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(35, 47, 62, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 0;
}

.section-register > * {
    position: relative;
    z-index: 1;
}

.req-mark {
    color: var(--danger);
    font-weight: 700;
}

.field em,
.helper em {
    color: var(--danger);
    font-style: normal;
    font-weight: 700;
}

.form {
    display: grid;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    border-bottom: 1px solid var(--line-soft);
    padding: 20px 28px;
    background: #FBFCFF;
}

.card-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.card-header small {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.card-body {
    padding: 24px 28px 26px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    row-gap: 6px;
}

.field-full {
    grid-column: 1 / -1;
}

.field span {
    display: flex;
    align-items: center;
    min-height: 22px;
    font-size: 14px;
    font-weight: 700;
    color: #2A3752;
}

.field input,
.field select {
    width: 100%;
    height: 50px;
    border: 1px solid #CCD7EA;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field input {
    padding: 0 18px;
}

.field select {
    padding: 0 14px;
}

.field input::placeholder {
    color: #97A3B8;
}

.field input:hover,
.field select:hover {
    border-color: #88B7E8;
    background: #F4F9FF;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--sap-blue);
    box-shadow: 0 0 0 4px rgba(0, 112, 242, 0.15);
}

.field input.is-invalid,
.field select.is-invalid {
    border-color: #E25555;
    background: #FFF5F5;
}

.field-error,
.group-error {
    margin: 6px 2px 0;
    font-size: 13px;
    color: var(--danger);
    line-height: 1.45;
    font-weight: 600;
}

.group-error:empty,
.field-error:empty {
    display: none;
}

.phone-group {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    min-height: 50px;
    align-items: center;
    gap: 8px;
}

.phone-group select,
.phone-group input {
    height: 50px;
}

.phone-group span {
    text-align: center;
    color: #7384A0;
    font-weight: 700;
}

.helper {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

/* Radio Grid (3 cols) */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.radio-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #CCD7EA;
    border-radius: var(--radius-md);
    background: #F9FBFF;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.option:hover {
    border-color: #88B7E8;
    background: #EEF6FF;
}

.option.is-selected {
    border-color: var(--sap-blue);
    background: #E8F1FF;
    box-shadow: inset 0 0 0 1px rgba(0, 112, 242, 0.2);
}

.option input {
    width: 18px;
    height: 18px;
    accent-color: var(--sap-blue);
}

.option span {
    font-weight: 600;
    font-size: 14px;
}

.option.is-selected span {
    color: var(--sap-blue-dark);
}

/* List style radio / checkbox (full-width rows) */
.radio-list,
.check-list {
    display: grid;
    gap: 10px;
}

.option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #CCD7EA;
    border-radius: var(--radius-md);
    background: #FAFCFF;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.option-row:hover {
    border-color: #88B7E8;
    background: #EEF6FF;
}

.option-row.is-selected {
    border-color: var(--sap-blue);
    background: #E8F1FF;
    box-shadow: inset 0 0 0 1px rgba(0, 112, 242, 0.2);
}

.option-row input[type="radio"],
.option-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--sap-blue);
}

.option-row span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
}

.option-row.is-selected span {
    color: var(--sap-blue-dark);
}

.option-row-input {
    flex-wrap: wrap;
}

.option-row-input span {
    flex: 0 0 auto;
}

.inline-input {
    flex: 1 1 100%;
    min-width: 0;
    height: 42px;
    margin-top: 10px;
    padding: 0 14px;
    border: 1px solid #CCD7EA;
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    animation: inlineInputFadeIn 0.22s ease-out;
}

/* 직접입력 라디오/체크박스가 선택되지 않았을 때 텍스트칸 자체를 숨김 */
.option-row-input:not(.is-selected) .inline-input {
    display: none;
}

.inline-input:focus {
    outline: none;
    border-color: var(--sap-blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 242, 0.12);
}

@keyframes inlineInputFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Consent */
.consent {
    display: grid;
    gap: 10px;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #D7DFEF;
    border-radius: var(--radius-md);
    background: #FBFCFF;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.check-row.is-invalid {
    border-color: #E25555;
    background: #FFF5F5;
}

.check-row:hover {
    border-color: #88B7E8;
    background: #EEF6FF;
}

.check-row input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--sap-blue);
}

.check-row span {
    line-height: 1.5;
    font-size: 14px;
}

.check-row-inline {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.inline-detail-toggle {
    border: 1px solid #BFD4EF;
    border-radius: 999px;
    background: #ffffff;
    color: var(--sap-blue-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    cursor: pointer;
    white-space: nowrap;
}

.inline-detail-toggle:hover {
    background: #EAF3FF;
    border-color: #8ab9ea;
    color: #1f538b;
}

.check-all {
    border-color: #B9D9F8;
    background: #F1F8FF;
    font-weight: 700;
}

.details-inline {
    margin-top: -6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

th,
td {
    border: 1px solid var(--line);
    padding: 12px 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    line-height: 1.55;
}

th {
    background: #F3F7FF;
    color: #35507A;
    font-weight: 700;
}

.privacy-note {
    margin: 8px 2px 0;
    color: #4D5F7D;
    line-height: 1.7;
    font-size: 14px;
    text-align: center;
}

.privacy-note a {
    color: var(--sap-blue-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit */
.submit-wrap {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.submit-btn {
    min-width: 280px;
    height: 56px;
    border: 0;
    border-radius: 6px;
    background: var(--aws-squid-ink);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.005em;
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(15, 27, 45, 0.1),
        0 6px 18px rgba(15, 27, 45, 0.22);
    transition: background-color 0.15s, box-shadow 0.15s, transform 0.1s;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--aws-squid-ink-dark);
    box-shadow:
        0 0 0 1px rgba(15, 27, 45, 0.12),
        0 10px 28px rgba(15, 27, 45, 0.32);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* ====== Notice Grid ====== */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.notice-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.notice-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--aws-orange);
}

.notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 10px;
    background: var(--aws-squid-ink);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(35, 47, 62, 0.25);
    transition: background 0.25s, color 0.25s;
}

.notice-icon svg {
    width: 28px;
    height: 28px;
}

.notice-card:hover .notice-icon {
    background: var(--aws-anchor);
    color: #FFFFFF;
}

.notice-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.notice-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    word-break: keep-all;
}

.notice-card a {
    color: var(--sap-blue-dark);
    font-weight: 700;
    text-decoration: underline;
}

/* ====== Footer (AWS dark theme) ====== */
.lp-footer {
    margin: 60px -24px -80px;
    padding: 36px 24px;
    background: var(--aws-squid-ink-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer p {
    margin: 0 0 6px;
}

.footer-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-inner {
        padding: 76px 48px 56px;
        max-width: 100%;
    }

    .hero-cubes {
        width: 360px;
        height: 360px;
        right: -80px;
        bottom: -60px;
        opacity: 0.5;
    }

    .hero-sap-logo {
        top: 24px;
        right: 28px;
        width: 80px;
    }

    .agenda-row {
        grid-template-columns: 120px 1fr 110px 200px;
        gap: 12px;
        padding: 20px 22px;
    }

    .agenda-session h4 {
        font-size: 16px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .speakers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .notice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }

    .venue-map {
        min-height: 320px;
    }

    .venue-info {
        padding: 32px;
    }
}

@media (max-width: 760px) {
    .lp {
        padding: 0 16px 60px;
    }

    .topbar-inner {
        padding: 10px 16px;
    }

    .topbar-host {
        font-size: 11px;
    }

    .topbar-brand strong {
        font-size: 14px;
    }

    .topbar-cta {
        font-size: 13px;
        padding: 8px 14px;
    }

    .section {
        padding: 56px 0;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
    }

    .hero {
        margin-top: 16px;
        border-radius: 16px;
    }

    .hero-inner {
        padding: 68px 24px 40px;
    }

    .hero-cubes {
        width: 240px;
        height: 240px;
        right: -60px;
        bottom: -40px;
        opacity: 0.35;
    }

    .hero-sap-logo {
        top: 18px;
        right: 18px;
        width: 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 17px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-meta li {
        padding: 16px 18px;
    }

    .meta-value {
        font-size: 16px;
        white-space: normal;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }

    .about-card {
        padding: 28px 22px;
    }

    .about-greeting {
        font-size: 17px;
    }

    .about-body {
        font-size: 15px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 26px 22px;
    }

    .reason-card h3 {
        font-size: 18px;
    }

    /* Agenda mobile - stacked */
    .agenda-head {
        display: none;
    }

    .agenda-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 18px;
    }

    .agenda-time {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .agenda-session h4 {
        font-size: 16px;
    }

    .agenda-company {
        font-size: 12px;
        font-weight: 700;
        color: var(--text);
    }

    .agenda-company:not(:empty)::before {
        content: "발표사 · ";
        color: var(--muted);
        font-weight: 600;
        margin-right: 2px;
    }

    .agenda-speaker {
        font-size: 13px;
        color: var(--text-soft);
    }

    .agenda-speaker strong {
        font-size: 13px;
    }

    .speaker-role-sm {
        font-size: 11.5px;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .speaker-photo {
        width: 130px;
        height: 130px;
    }

    .speaker-initial {
        font-size: 30px;
    }

    .speaker-name {
        font-size: 16px;
    }

    .sponsor-row-large .sponsor-logo,
    .sponsor-logo-large {
        width: 220px;
        height: 110px;
        padding: 18px 24px;
    }

    .sponsor-logo-host {
        width: 240px;
        height: 170px;
        padding: 18px 24px;
    }

    .sponsor-logo-partner {
        width: 150px;
        height: 80px;
        padding: 12px 14px;
    }

    .sponsor-text-sm {
        font-size: 15px;
    }

    .topbar-logo {
        height: 52px;
    }

    .venue-info {
        padding: 24px;
    }

    .transit-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
    }

    .section-register {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 16px;
    }

    .lp-footer {
        margin: 40px -16px -60px;
        padding: 28px 16px;
    }

    .card-header {
        padding: 16px 20px;
    }

    .card-header h2 {
        font-size: 17px;
    }

    .card-body {
        padding: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .radio-grid {
        grid-template-columns: 1fr;
    }

    .radio-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-row-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-group {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }

    .submit-btn {
        width: 100%;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .option-row span {
        font-size: 14px;
    }

    .inline-input {
        width: 100%;
        min-width: 0;
        margin-top: 8px;
    }

    /* 개인정보 동의 상세 표: 모바일에서 세로 정렬 */
    .consent .table-wrap {
        overflow-x: visible;
    }

    .consent-detail-table {
        min-width: 0;
    }

    .consent-detail-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .consent-detail-table tbody tr {
        display: block;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        margin-bottom: 10px;
        background: #fff;
    }

    .consent-detail-table tbody td {
        display: block;
        width: 100%;
        text-align: left;
        border: none;
        border-bottom: 1px solid var(--line);
        padding: 10px 14px;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .consent-detail-table tbody td:last-child {
        border-bottom: 0;
    }

    .consent-detail-table tbody td::before {
        display: block;
        margin-bottom: 6px;
        font-size: 12px;
        font-weight: 700;
        color: #35507A;
    }

    .consent-detail-requ tbody td:nth-child(1)::before {
        content: "정보 수집 주최";
    }

    .consent-detail-requ tbody td:nth-child(2)::before {
        content: "수집·이용 목적";
    }

    .consent-detail-requ tbody td:nth-child(3)::before {
        content: "수집 항목";
    }

    .consent-detail-requ tbody td:nth-child(4)::before {
        content: "보유 및 이용 기간";
    }

    .consent-detail-op2 tbody td:nth-child(1)::before,
    .consent-detail-third tbody td:nth-child(1)::before {
        content: "개인정보를 제공 받는 자";
    }

    .consent-detail-op2 tbody td:nth-child(2)::before,
    .consent-detail-third tbody td:nth-child(2)::before {
        content: "개인정보 이용 목적";
    }

    .consent-detail-op2 tbody td:nth-child(3)::before,
    .consent-detail-third tbody td:nth-child(3)::before {
        content: "개인정보 보유 및 이용 기간";
    }

    .consent-detail-op2 tbody td:nth-child(4)::before,
    .consent-detail-third tbody td:nth-child(4)::before {
        content: "개인정보 항목";
    }
}

@media (max-width: 420px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .radio-grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}
