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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

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

.nav-cta {
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    background: var(--black);
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 600;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    color: var(--gray-600);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 2rem;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--gray-600);
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.hero-partners {
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-partners-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
}

.hero-partners-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-partner-logo {
    max-width: 100px;
    height: 36px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-partner-logo:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Stats */
.stats-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.stats-intro {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

/* Trust Features */
.trust-features {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--black);
    opacity: 0.8;
}

.trust-content {
    flex: 1;
    width: 100%;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.trust-description {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-header {
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.services-note {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 6rem;
}

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

.service-item {
    position: relative;
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.service-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.service-example-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.service-embed {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.tiktok-embed {
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.service-item .tiktok-embed iframe {
    border-radius: 12px;
}

/* Pricing Calculator */
.pricing {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.pricing .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.pricing .section-header {
    margin-bottom: 2rem;
}

.calculator {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
}

/* Promo Badge */
.promo-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Checkout Sections */
.checkout-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0.75rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checkout-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.estimated-reach {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 5px;
}

.reach-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gray-600);
}

.reach-value {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--black);
}

.checkout-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checkout-input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    color: var(--black);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.checkout-input::placeholder {
    color: var(--gray-500);
}

select.checkout-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Package Items */
.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
}

.package-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-info {
    flex: 1;
}

.package-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.package-price {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

.package-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 0.25rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--black);
    border-radius: 4px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    font-size: 1rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Promo Button */
.promo-btn {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--white);
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    color: var(--black);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    border-style: solid;
}

.promo-btn svg {
    opacity: 0.6;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.delivery-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--black);
}

.delivery-info {
    flex: 1;
}

.delivery-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.delivery-time {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Voucher Input */
.voucher-input-container {
    display: flex;
    gap: 0.5rem;
}

.voucher-input {
    flex: 1;
}

.voucher-btn {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.voucher-btn:hover {
    opacity: 0.9;
}

.voucher-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.voucher-message.success {
    color: #16a34a;
}

.voucher-message.error {
    color: #dc2626;
}

/* Order Summary */
.order-summary {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

.summary-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.summary-value {
    font-size: 0.875rem;
    font-weight: 600;
    font-feature-settings: 'tnum';
}

.summary-value.discount {
    color: #16a34a;
}

.summary-value.bonus {
    color: #16a34a;
    font-weight: 700;
}

.total-row {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.total-row .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.total-amount {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.strike-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: line-through;
    font-feature-settings: 'tnum';
}

.final-price {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum';
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.checkout-btn:not(:disabled):hover {
    background: rgba(0, 0, 0, 0.85);
}

.checkout-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.checkout-btn:active:not(:disabled) {
    transform: scale(0.98);
}


/* Sell Your Page */
.sell-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.sell-page-full {
    max-width: 700px;
    margin: 0 auto;
    padding: 10rem 2rem 8rem;
    text-align: center;
    min-height: 100vh;
}

.sell-page .section-header,
.sell-page-full .section-header {
    margin-bottom: 3rem;
}

.sell-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.sell-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.sell-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Terms Page */
.terms-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.terms-page .section-header {
    margin-bottom: 3rem;
    text-align: left;
}

.terms-updated {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

.terms-content {
    line-height: 1.8;
}

.terms-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.terms-content p {
    margin-bottom: 1.25rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.terms-content ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-acknowledgment {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-left: 3px solid var(--black);
    border-radius: 4px;
}

.terms-acknowledgment p {
    margin: 0;
    color: var(--black);
}

@media (max-width: 768px) {
    .terms-page {
        padding: 6rem 1.5rem 3rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3.5rem 3rem;
    background: var(--gray-50);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-center a {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.footer-center a:hover {
    color: var(--black);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    text-align: right;
}

.footer-location {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-copyright {
    font-size: 0.825rem;
    color: var(--gray-500);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.footer-links a:hover {
    opacity: 0.6;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.footer-contact a:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-blog-link {
        display: none !important;
    }

    .nav-cta {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-badge {
        margin-bottom: 4rem;
    }

    .hero-partners {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }

    .hero-partners-label {
        font-size: 0.6rem;
    }

    .hero-partners-logos {
        gap: 1.5rem;
    }

    .hero-partner-logo {
        max-width: 70px;
        height: 28px;
    }

    .stats-section {
        padding: 4rem 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
    }

    .services {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .pricing {
        padding: 3rem 1.5rem;
    }

    .calculator {
        padding: 1.5rem;
    }

    .package-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .package-control {
        width: 100%;
        justify-content: center;
    }

    .final-price {
        font-size: 1.5rem;
    }

    .partners {
        padding: 4rem 1.5rem;
    }

    .sell-page {
        padding: 4rem 1.5rem;
    }

    .sell-page-full {
        padding: 6rem 1.5rem 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-center {
        align-items: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blog Styles */
.blog-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-card-date {
    font-weight: 500;
}

.blog-card-author {
    font-weight: 500;
}

.blog-card-meta::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gray-400);
    border-radius: 50%;
    display: none;
}

.blog-card-date::after {
    content: '·';
    margin-left: 0.75rem;
    color: var(--gray-400);
}

.blog-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--gray-700);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.blog-card-link:hover {
    transform: translateX(4px);
}

/* Article Styles */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-back {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.article-back:hover {
    color: var(--black);
}

.article-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.article-author {
    font-weight: 600;
}

.article-date {
    font-weight: 500;
}

.article-author::after {
    content: '·';
    margin-left: 1rem;
    color: var(--gray-400);
}

.article-content {
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--black);
    font-weight: 600;
}

.article-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.cta-button:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
}

.cta-divider {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.cta-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    transition: opacity 0.2s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.article-related {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-related h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.related-links a:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--black);
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-weight: 400;
}

.faq-answer a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    opacity: 0.7;
}

/* Recent Articles Section */
.recent-articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.recent-articles .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.recent-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .blog-header {
        padding: 8rem 1.5rem 3rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 6rem;
        gap: 2rem;
    }

    .article {
        padding: 6rem 1.5rem 4rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

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

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .recent-articles {
        padding: 4rem 1.5rem;
    }

    .recent-articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.hero, .stat-item, .service-item {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth transitions */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

button, a {
    transition: all 0.2s ease;
}
