/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #002060;
    --vivid-blue: #0066FF;
    --gold: #FFD700;
    --clean-white: #FFFFFF;
    --light-gray: #F5F7FA;
    --gray: #8B95A1;
    --dark-gray: #333D4B;
    --success-green: #00C851;
    --mystery-purple: #6B46C1;
    --shadow: 0 4px 20px rgba(0, 32, 96, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 32, 96, 0.15);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--clean-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #003080 100%);
    color: var(--clean-white);
    padding: 80px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.7) 0%, rgba(0, 48, 128, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.secret-message {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clean-white);
    line-height: 1.6;
    font-style: italic;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
    min-height: 56px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--vivid-blue) 0%, var(--mystery-purple) 100%);
    color: var(--clean-white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #0052CC 0%, #5B21B6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

.cta-button.primary:active {
    transform: translateY(0);
}

/* Hero Illustration - Bill Transformation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.bill-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bill {
    position: absolute;
    background: var(--clean-white);
    color: var(--deep-navy);
    padding: 32px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    min-width: 280px;
    transition: all 0.6s ease;
}

.bill-torn {
    opacity: 0.3;
    transform: rotate(-8deg) translateX(-20px);
    z-index: 1;
    filter: grayscale(0.5);
}

.bill-new {
    z-index: 2;
    animation: billGlow 2s ease-in-out infinite;
}

.bill-header {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.bill-amount {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.bill-amount.old {
    color: var(--gray);
    text-decoration: line-through;
}

.bill-amount.new {
    color: var(--success-green);
    text-shadow: 0 0 20px rgba(0, 200, 81, 0.5);
}

.glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 200, 81, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

.secret-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--deep-navy);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

@keyframes billGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(0, 200, 81, 0.3);
    }
    50% { 
        box-shadow: 0 8px 40px rgba(0, 200, 81, 0.6);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Logo Button */
.floating-logo {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: var(--clean-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 32, 96, 0.2);
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    border: 2px solid var(--vivid-blue);
}

.floating-logo:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

.floating-logo:active {
    transform: translateY(-50%) scale(0.98);
}

.floating-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
}

.floating-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.floating-logo-kr {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-align: center;
}

.floating-logo-en {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vivid-blue);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--deep-navy);
    letter-spacing: -0.02em;
}

/* Curiosity Section */
.curiosity {
    background: linear-gradient(180deg, var(--clean-white) 0%, var(--light-gray) 100%);
}

.curiosity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.curiosity-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-card {
    position: relative;
    background: var(--clean-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.expert-avatar {
    margin-bottom: 30px;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--vivid-blue) 0%, var(--mystery-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
}

.avatar-icon {
    font-size: 4rem;
}

.expert-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--deep-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.expert-document {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #003080 100%);
    color: var(--clean-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.document-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.document-icon {
    font-size: 1.2rem;
}

.document-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--success-green);
}

.curiosity-content {
    animation: fadeInLeft 0.8s ease-out;
}

.curiosity-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.curiosity-text strong {
    color: var(--vivid-blue);
    font-weight: 700;
}

.curiosity-subtext {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.curiosity-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--clean-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
}

/* Reviews Section */
.reviews {
    background: var(--clean-white);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--vivid-blue);
}

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

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.review-before,
.review-after {
    padding: 6px 12px;
    background: var(--clean-white);
    border-radius: 6px;
}

.review-arrow {
    color: var(--vivid-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.review-amounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.amount-before {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    text-decoration: line-through;
}

.amount-after {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-green);
}

.review-quote {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 12px;
    text-align: center;
    font-style: italic;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    min-height: 80px;
}

.review-author {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: right;
    font-weight: 500;
}

/* Service Flow Section */
.service-flow {
    background: var(--light-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: var(--clean-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vivid-blue) 0%, var(--mystery-purple) 100%);
    color: var(--clean-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--deep-navy);
    line-height: 1.4;
}

.step-title strong {
    color: var(--success-green);
    font-size: 1.5rem;
}

.step-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Lead Form Section */
.lead-form {
    background: var(--clean-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    border: 2px solid #E5E8EB;
    border-radius: 12px;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    min-height: 56px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--vivid-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.input-with-btn {
    display: flex;
    gap: 10px;
}

.input-with-btn input {
    flex: 1;
}

.postcode-btn {
    padding: 14px 16px;
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 12px;
    background: #fff;
    color: var(--vivid-blue);
    font-weight: 700;
    cursor: pointer;
    min-width: 110px;
    transition: all 0.2s ease;
}

.postcode-btn:hover {
    background: var(--vivid-blue);
    color: var(--clean-white);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.2);
}

.form-notice {
    background: #FFF3CD;
    border: 1px solid #FFC107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.form-notice strong {
    color: var(--deep-navy);
    font-weight: 700;
}

.form-consent {
    background: #f0f4ff;
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.consent-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--deep-navy);
}

.consent-main input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--vivid-blue);
}

.consent-summary {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 8px;
}

.consent-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #fff;
    color: var(--vivid-blue);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consent-detail-btn:hover {
    background: var(--vivid-blue);
    color: var(--clean-white);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.2);
}

.submit-button {
    width: 100%;
    margin-top: 10px;
}

.privacy-content {
    margin-bottom: 24px;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e8eb;
}

.privacy-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.privacy-list li + li {
    margin-top: 8px;
}

.privacy-help {
    margin-top: 16px;
    color: var(--gray);
}

/* Partner Section */
.partner-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--clean-white) 100%);
    padding: 100px 0;
}

.partner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-content {
    padding-right: 40px;
}

.partner-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 24px;
    line-height: 1.5;
}

.partner-text {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.partner-text strong {
    color: var(--vivid-blue);
    font-weight: 700;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--vivid-blue);
    color: var(--vivid-blue);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button.outline:hover {
    background: var(--vivid-blue);
    color: var(--clean-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.3);
}

.arrow-icon {
    font-size: 1.2rem;
    font-weight: 700;
}

.partner-steps {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 320px;
    padding: 60px 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.partner-step {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--clean-white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.partner-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.partner-step.step-3 {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--mystery-purple) 100%);
    color: var(--clean-white);
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.partner-step.step-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="60" text-anchor="middle" fill="rgba(255,255,255,0.1)">🤝</text></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.partner-step.step-3 > * {
    position: relative;
    z-index: 1;
}

.step-label {
    background: var(--deep-navy);
    color: var(--clean-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.partner-step.step-3 .step-label {
    background: var(--clean-white);
    color: var(--deep-navy);
}

.step-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--deep-navy);
}

.partner-step.step-3 .step-text {
    color: var(--clean-white);
}

.step-info {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.partner-step.step-1 .step-info {
    color: var(--vivid-blue);
    font-weight: 600;
}

.partner-step.step-2 .step-info {
    color: var(--gray);
}

.partner-step.step-3 .step-info {
    color: rgba(255, 255, 255, 0.9);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 96, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--clean-white);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 32, 96, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--deep-navy);
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-navy);
    margin-bottom: 30px;
    text-align: center;
}

.modal-form {
    width: 100%;
}

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

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

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--clean-white);
    padding: 60px 0 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 30px;
    text-align: left;
}

.footer-notice {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-details p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

/* Admin Page */
.admin-body {
    background: var(--light-gray);
}

.admin-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #003080 100%);
    color: var(--clean-white);
    padding: 60px 0;
}

.admin-title {
    font-size: 2.4rem;
    font-weight: 900;
}

.admin-subtitle {
    margin-top: 8px;
    opacity: 0.9;
}

.admin-section {
    padding: 60px 0;
}

.admin-card {
    background: var(--clean-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 1100px;
    margin: 0 auto;
}

.admin-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-login-form input {
    padding: 14px 16px;
    border: 2px solid #E5E8EB;
    border-radius: 12px;
    font-size: 1rem;
}

.admin-hint {
    font-size: 0.9rem;
    color: var(--gray);
}

.admin-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cta-button.danger {
    background: #e53935;
    color: var(--clean-white);
    border: none;
}

.cta-button.danger:hover {
    background: #d32f2f;
    box-shadow: 0 6px 18px rgba(229, 57, 53, 0.3);
}

.admin-card.dashboard.hidden {
    display: none;
}

.admin-card.dashboard.visible {
    display: block;
}

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    border: 1px solid #E5E8EB;
    padding: 12px 10px;
    text-align: center;
    font-size: 0.95rem;
}

.admin-table th {
    background: #f4f6fb;
    color: var(--deep-navy);
    font-weight: 800;
}

.admin-table .empty {
    text-align: center;
    color: var(--gray);
    padding: 18px;
}

.table-btn {
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.table-btn.danger {
    background: #ef5350;
    color: #fff;
}

.table-btn.danger:hover {
    background: #e53935;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .curiosity-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .curiosity-image {
        order: 2;
    }

    .curiosity-content {
        order: 1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .floating-logo {
        right: 20px;
        min-width: 100px;
        padding: 12px;
    }

    .floating-logo-img {
        width: 60px;
        height: 60px;
    }

    .floating-logo-kr {
        font-size: 0.9rem;
    }

    .floating-logo-en {
        font-size: 0.7rem;
    }

    .partner-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-content {
        padding-right: 0;
        text-align: center;
    }

    .partner-steps {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
        max-width: 100%;
    }

    .partner-step {
        width: 260px;
        height: 260px;
        margin: 0 !important;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .hero-illustration {
        height: 300px;
    }

    .bill {
        min-width: 240px;
        padding: 24px 30px;
    }

    .bill-amount {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .input-with-btn {
        flex-direction: column;
    }

    .postcode-btn {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .expert-card {
        padding: 30px 20px;
    }

    .avatar-circle {
        width: 100px;
        height: 100px;
    }

    .avatar-icon {
        font-size: 3rem;
    }

    .document-amount {
        font-size: 2.5rem;
    }

    .floating-logo {
        right: 15px;
        min-width: 90px;
        padding: 10px;
    }

    .floating-logo-img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .floating-logo-kr {
        font-size: 0.8rem;
    }

    .floating-logo-en {
        font-size: 0.65rem;
    }

    .partner-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-content {
        padding-right: 0;
        text-align: center;
    }

    .partner-steps {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .partner-headline {
        font-size: 1.4rem;
    }

    .modal-container {
        padding: 40px 30px;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-notice {
        font-size: 0.85rem;
    }

    .footer-details p {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .partner-steps {
        min-height: 280px;
        padding: 50px 20px;
    }

    .partner-step {
        width: 240px;
        height: 240px;
        padding: 30px;
    }

    .partner-step.step-1 {
        margin-right: -60px;
    }

    .partner-step.step-2 {
        margin-right: -60px;
    }
}

@media (max-width: 768px) {
    .partner-steps {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .partner-step {
        width: 240px;
        height: 240px;
        margin: 0 !important;
    }
}

