:root {
    --orange: #e85d04;
    --orange-light: #f48c06;
    --orange-glow: rgba(232, 93, 4, 0.15);
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --gray: #6b6b6b;
    --gray-light: #a3a3a3;
    --cream: #faf8f5;
    --white: #ffffff;
}

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

/* Skip link - accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    color: white;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

body {
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--orange-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
}

.logo span {
    color: var(--orange);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: var(--orange-light);
    color: white;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 680px;
}

.hero-decoration {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1100px) {
    .hero-decoration {
        right: -100px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .hero-decoration {
        display: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--orange);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.hero-cta:hover {
    background: var(--dark-soft);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-cta svg {
    transition: transform 0.2s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

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

/* Problem section */
.problem {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.problem-item {
    background: var(--cream);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--orange);
}

.problem-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.problem-cta {
    font-size: 1.1rem;
    color: var(--dark-soft);
    max-width: 700px;
}

/* Process section */
.process {
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--orange);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.step-price {
    display: inline-block;
    background: var(--orange-glow);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-note {
    display: inline-block;
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
}

/* About */
.about {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--dark-soft);
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--cream);
    padding: 28px;
    border-radius: 12px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

.kalbi-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 16px;
    background: var(--cream);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Why me */
.why {
    background: var(--dark);
    color: var(--white);
}

.why .section-label {
    color: var(--orange-light);
}

.why .section-desc {
    color: var(--gray-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.why-item {
    padding: 28px;
    background: var(--dark-soft);
    border-radius: 12px;
    border-left: 3px solid var(--orange);
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.why-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.price-item {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12);
    transform: translateY(-4px);
}

.price-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
}

.price-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

.price-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.price-tag {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--dark-soft);
}

/* Contact */
.contact {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-icon-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.contact-icon-link:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 12px;
}

.contact-item a:not(.contact-icon-link) {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-item a:not(.contact-icon-link):hover {
    color: var(--orange);
}

.contact-item small {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-cta {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px;
}

.contact-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-cta p {
    color: var(--gray);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: var(--orange-light);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 32px 0;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

footer span {
    color: var(--orange);
}

/* Contact location label */
.contact-location-label {
    color: var(--dark);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-grid,
    .process-steps,
    .pricing-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-cta span {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .pricing-box {
        padding: 32px 24px;
    }

    section {
        padding: 70px 0;
    }
}
