:root {
    --bg-cream: #f8f6f3;
    --bg-warm: #f3efe9;
    --bg-card: #ffffff;
    --text-heading: #2d2a26;
    --text-body: #5a5651;
    --text-muted: #8a8680;
    --border: #e8e4de;
    --accent: #c45d3a;
    --accent-hover: #b04d2d;
    --accent-light: rgba(196, 93, 58, 0.08);
    --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 16px 48px rgba(45, 42, 38, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    background: var(--bg-cream);
    color: var(--text-body);
    line-height: 1.65;
    font-size: 16px;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-heading);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 93, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light);
    border: 1px solid rgba(196, 93, 58, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-heading);
    font-weight: 500;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}

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

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-heading);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: var(--bg-card);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.floating-badge-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
}

.floating-badge-content {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
}

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

.section-header {
    max-width: 580px;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-weight: 600;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
    color: var(--text-heading);
    font-weight: 500;
    line-height: 1.25;
}

.section-subtitle {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 93, 58, 0.25);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-heading);
}

.service-card > p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '\2192';
    color: var(--accent);
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-proof a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.social-proof a:hover {
    color: var(--accent);
}

.social-proof .separator {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Consulting Section */
.consulting {
    background: var(--bg-cream);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consulting-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.consulting-card:hover::before {
    opacity: 1;
}

.consulting-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-heading);
}

.consulting-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.65;
}

.consulting-card-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Experience Section */
.experience {
    background: var(--bg-card);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.experience-list {
    display: flex;
    flex-direction: column;
}

.exp-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.25s ease;
}

.exp-item:first-child {
    padding-top: 0;
}

.exp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-item:hover .exp-logo {
    border-color: var(--accent);
    background: var(--accent-light);
}

.exp-logo {
    width: 64px;
    height: 64px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    overflow: hidden;
}

.exp-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.exp-content h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--text-heading);
}

.exp-company {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.exp-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.exp-description {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
}

.skills-section h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin-bottom: 32px;
    font-weight: 500;
    color: var(--text-heading);
}

.skills-category {
    margin-bottom: 32px;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    font-weight: 600;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    color: var(--text-body);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.skill-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* Pricing Section */
.pricing {
    background: var(--bg-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 20px 20px 0 0;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.pricing-name {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.pricing-description {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.55;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 32px;
}

.pricing-amount {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-heading);
}

.pricing-currency {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.pricing-card.featured .pricing-cta {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card:not(.featured) .pricing-cta {
    background: var(--bg-cream);
    color: var(--text-heading);
    border: 1px solid var(--border);
}

.pricing-card:not(.featured) .pricing-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* Platforms Section */
.platforms {
    background: var(--bg-card);
    padding: 100px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platform-card {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--accent-light);
}

.platform-icon.solvery {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.platform-icon.getmentor {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.platform-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00c6ff 100%);
    color: white;
}

.platform-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    color: white;
}

.platform-name {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-weight: 500;
}

.platform-stat {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.platform-stat strong {
    color: var(--text-heading);
    font-weight: 600;
}

.platform-description {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.5;
}

.platform-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.platform-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--text-heading);
}

.cta-box p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 48px 0;
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
    }

    section {
        padding: 70px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
