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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    line-height: 1.2em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.85;
}

.btn,
.process-card,
.service-card {
    will-change: transform;
}

.btn-dark {
    background: #000;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #000;
}

.btn-small {
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-inner {
    width: 100%;
    max-width: 960px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 50px;
    height: auto;
}

.header-title {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

/* Hero */
.hero {
    background: #fff;
    padding: 80px 20px 150px;
    display: flex;
    justify-content: center;
}

.hero-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: #595959;
    max-width: 600px;
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    background: #1c1c1c;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.value-prop-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-headline {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.value-desc {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
    max-width: 700px;
}

.value-tagline {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

/* How We Work */
.how-we-work {
    background: #1c1c1c;
    padding: 80px 20px 40px;
    display: flex;
    justify-content: center;
}

.how-we-work-inner {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

/* Process Cards */
.process-cards {
    background: #1c1c1c;
    padding: 40px 20px 80px;
    display: flex;
    justify-content: center;
}

.process-cards-inner {
    max-width: 960px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-card {
    background: #111;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1 / 1;
    position: relative;
}

.process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.process-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.process-card-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

/* How It Works Detail */
.how-it-works-detail {
    background: #1c1c1c;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
}

.how-it-works-detail-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.detail-text p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    max-width: 600px;
}

/* What We Do */
.what-we-do {
    background: #1c1c1c;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #333;
}

.what-we-do-header {
    max-width: 960px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    max-width: 960px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #111;
    border-radius: 20px;
    padding: 40px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.service-icon {
    width: 100px;
    height: auto;
}

.service-labels {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-label-short {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.service-label-full {
    font-size: 11px;
    color: #999;
}

/* Callout */
.callout {
    background: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.callout-inner {
    max-width: 500px;
    text-align: center;
}

.callout-text {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #1c1c1c;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
}

.cta-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-headline {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.cta-desc {
    font-size: 14px;
    color: #999;
}

.cta-email {
    font-size: 14px;
    color: #0099ff;
    text-decoration: underline;
}

.cta-email:hover {
    color: #0088ff;
}

/* Footer Philosophy */
.footer-philosophy {
    background: #1c1c1c;
    padding: 100px 20px 80px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
}

.footer-philosophy-inner {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.philosophy-headline {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.philosophy-sub {
    font-size: 12px;
    color: #999;
}

/* Footer */
.footer {
    background: #1c1c1c;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
}

.footer-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 75px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.footer-logo-dcla {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-logo-akrunx {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-divider {
    width: 1px;
    height: 80px;
    background: #333;
    flex-shrink: 0;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

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

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.footer-links a:hover {
    color: #fff;
}

/* ==================== */
/* Responsive - Tablet  */
/* ==================== */
@media (max-width: 1199px) {
    .hero-headline {
        font-size: 38px;
    }

    .value-headline {
        font-size: 30px;
    }

    .process-card {
        aspect-ratio: auto;
        min-height: 230px;
    }

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

    .service-card {
        min-height: 360px;
    }

    .cta-headline {
        font-size: 30px;
    }
}

/* ==================== */
/* Responsive - Mobile  */
/* ==================== */
@media (max-width: 809px) {
    .header-title {
        display: none;
    }

    .hero {
        padding: 40px 20px 80px;
    }

    .hero-headline {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .value-headline {
        font-size: 24px;
    }

    .value-desc {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .process-cards-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-card {
        aspect-ratio: auto;
        min-height: 200px;
        padding: 24px;
    }

    .detail-item {
        flex-direction: column;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 300px;
        padding: 24px;
    }

    .service-icon {
        width: 100px;
    }

    .callout-text {
        font-size: 16px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-headline {
        font-size: 24px;
    }

    .philosophy-headline {
        font-size: 18px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
        background: #333;
    }
}

/* ========================= */
/* Terms & Privacy Page Styles */
/* ========================= */
.page-content {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.page-content-inner {
    max-width: 700px;
    width: 100%;
}

.page-content h1 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.page-content h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-top: 40px;
    margin-bottom: 12px;
}

.page-content p {
    font-size: 14px;
    color: #595959;
    line-height: 1.7;
    margin-bottom: 16px;
}

.page-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 14px;
    color: #595959;
    line-height: 1.7;
    margin-bottom: 6px;
}

.page-content a {
    color: #0099ff;
    text-decoration: underline;
}

.page-content a:hover {
    color: #0088ff;
}
