/* ==============================================
   PLAYINFO - Playful & Informative Design
   Powered by frontend-design skill v2.6.0
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=DM+Sans:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);

    --font-display: 'Fredoka', sans-serif;
    --font-body: 'DM Sans', 'Malgun Gothic', sans-serif;

    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark);
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F4F8 50%, #F0E6FF 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 230, 109, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(2deg); }
    66% { transform: translate(-20px, 20px) rotate(-2deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Glass Morphism */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-nav {
    padding: 1rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Main Content */
main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

/* Typography */
h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1rem 0;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.5rem 0 0.75rem 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 2rem;
}

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

/* Sections */
.intro,
.services,
.why-us,
.how-to-use,
.about-site {
    background: var(--white);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px var(--shadow);
    animation: fadeIn 0.8s ease-out;
    transition: var(--transition);
}

.intro:hover,
.services:hover,
.why-us:hover,
.how-to-use:hover,
.about-site:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Service Grid */
.services-desc {
    color: #666;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 230, 109, 0.2), transparent);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.service-card h3 {
    color: var(--primary);
    margin-top: 0;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    background: linear-gradient(135deg, #FFF, #F9F9F9);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(5px);
    border-left-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--secondary);
}

/* Steps / Timeline */
.steps,
.timeline {
    list-style: none;
    counter-reset: step-counter;
}

.steps li,
.timeline li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps li::before,
.timeline li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 3px solid var(--dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

.btn:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.intro-text,
.last-updated {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.last-updated {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    background: rgba(255, 230, 109, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

/* Contact / FAQ */
.contact-categories,
.faq {
    margin: 2rem 0;
}

.category {
    background: #F9F9F9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.category h3 {
    margin-top: 0;
    color: var(--primary);
}

.faq h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Ad Section */
.ad-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 230, 109, 0.05);
    border: 2px dashed #DDD;
    border-radius: var(--border-radius);
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

footer .container {
    text-align: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-nav a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==============================================
   Hamburger Menu Button
   ============================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-toggle span:nth-child(1) {
    margin-bottom: 6px;
}

.nav-toggle span:nth-child(3) {
    margin-top: 6px;
}

/* Hamburger -> X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* ==============================================
   Footer - Horizontal Terms Layout
   ============================================== */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.footer-nav::-webkit-scrollbar {
    display: none;
}

/* ==============================================
   Responsive Design
   ============================================== */

/* Mobile: max-width 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    /* Show hamburger button */
    .nav-toggle {
        display: flex;
    }

    /* Mobile nav menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 40px 0;
        z-index: 150;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 16px 28px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(255, 107, 107, 0.06);
        color: var(--primary);
    }

    /* Show overlay */
    .nav-overlay.active {
        display: block;
    }

    /* Body scroll lock when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Content spacing */
    main {
        padding: 2rem 0;
    }

    .container {
        padding: 0 16px;
    }

    .service-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .intro,
    .services,
    .why-us,
    .how-to-use,
    .about-site,
    .content-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .intro:hover,
    .services:hover,
    .why-us:hover,
    .how-to-use:hover,
    .about-site:hover {
        transform: none;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    /* Footer horizontal scroll */
    .footer-nav {
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 0 16px 4px 16px;
    }

    .footer-nav a {
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Ad section */
    .ad-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Small mobile: max-width 480px */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .intro,
    .services,
    .why-us,
    .how-to-use,
    .about-site,
    .content-section {
        padding: 1.2rem;
    }

    .steps li,
    .timeline li {
        padding-left: 2.5rem;
    }

    .category {
        padding: 1.2rem;
    }
}

/* Tablet: 769px ~ 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 3rem;
    }
}

/* Desktop: 1025px+ */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
    }
}

/* ==============================================
   제휴마케팅 전용 스타일 (v2.7.0)
   ============================================== */

/* 제휴 고지 메인 (상단 눈에 띄게) */
.affiliate-notice-main {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE5B4 100%);
    border-left: 5px solid #FF9800;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
    animation: fadeIn 0.8s ease-out;
}

.affiliate-notice-main p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.affiliate-notice-main strong {
    color: #FF9800;
    font-weight: 700;
}

/* 제휴 고지 (하단/일반) */
.affiliate-notice {
    padding: 1.5rem;
    text-align: center;
    background: #FFF3CD;
    color: #856404;
    font-size: 0.9em;
    border-radius: 8px;
    margin: 2rem 0;
}

/* 반응형 제휴 고지 */
@media (max-width: 768px) {
    .affiliate-notice-main {
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    .affiliate-notice-main p {
        font-size: 0.9rem;
    }
}

/* ==============================================
   CPA 랜딩페이지 전용 스타일 (v3.2)
   ============================================== */

/* 대가성 문구 배너 (공정거래위원회 지침) */
.disclosure-banner {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 히어로 섹션 - CPA */
.hero-cpa {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8E53 50%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-cpa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-cpa h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

/* 혜택 섹션 */
.benefits-section {
    background: var(--white);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px var(--shadow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* 미디어 섹션 */
.media-section {
    margin: 2rem 0;
}

.media-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

/* 체크리스트 스타일 */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 안내 박스 */
.notice-box {
    background: #FFF3CD;
    border-left: 4px solid #FF9800;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    color: #856404;
}

/* 폼 섹션 */
.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    text-align: center;
}

.form-section h2 {
    color: white;
    margin-top: 0;
}

.form-desc {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.iframe-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.iframe-container iframe {
    display: block;
}

/* 고정 CTA 버튼 */
.fixed-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 99;
    transition: bottom 0.3s ease;
    text-align: center;
}

.fixed-cta.visible {
    bottom: 0;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8E53 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
}

/* 관련 서비스 섹션 */
.related-services {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

.related-services h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.related-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.related-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* CPA 랜딩페이지 반응형 */
@media (max-width: 768px) {
    .hero-cpa {
        padding: 3rem 0;
    }

    .hero-cpa h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges .badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .benefits-section,
    .form-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

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