/*
|--------------------------------------------------------------------------
| COLOR SYSTEM
|--------------------------------------------------------------------------
*/
:root {
    --dark: #111111;
    --dark-soft: #181818;
    --gold: #c9a24d;
    --gold-dark: #a67c1f;
    --gold-light: #f4e4bd;
    --cream: #f8f4eb;
    --text: #2b2b2b;
    --muted: #666666;
    --white: #ffffff;
    --border: #eadfca;
    --shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/*
|--------------------------------------------------------------------------
| GLOBAL RESET
|--------------------------------------------------------------------------
*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

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

/*
|--------------------------------------------------------------------------
| TOP NAVIGATION BAR
|--------------------------------------------------------------------------
*/
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: 14px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(201,162,77,0.2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 12px;
    color: #d8d8d8;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.nav {
    display: flex;
    gap: 22px;
    font-size: 14px;
    font-weight: 600;
}

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

/*
|--------------------------------------------------------------------------
| HERO SECTION
|--------------------------------------------------------------------------
*/
.hero {
    background: linear-gradient(135deg, #111111 0%, #2d2415 100%);
    color: var(--white);
    padding: 90px 6% 80px;
}

.hero-inner {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.tag {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 16px;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 22px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: #e8e0d0;
    max-width: 680px;
}

/*
|--------------------------------------------------------------------------
| HERO IMAGE
|--------------------------------------------------------------------------
*/
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/*
|--------------------------------------------------------------------------
| HERO NOTE
|--------------------------------------------------------------------------
*/
.hero-note {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 20px;
}

.hero-note h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}

.hero-note p {
    margin: 0;
    color: #e8e0d0;
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: #111111;
}

.btn-primary:hover {
    background: #e0bd65;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #111111;
}

/*
|--------------------------------------------------------------------------
| COMMON SECTION STYLE
|--------------------------------------------------------------------------
*/
section {
    padding: 75px 6%;
}

.container {
    max-width: 1150px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 36px;
    margin: 0 0 10px;
    line-height: 1.2;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| GRID SYSTEM
|--------------------------------------------------------------------------
*/
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

/*
|--------------------------------------------------------------------------
| CARD STYLE
|--------------------------------------------------------------------------
*/
.card {
    background: var(--white);
    padding: 30px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card h3 {
    margin-top: 0;
    color: #1e1e1e;
    font-size: 22px;
}

.product-card {
    border-top: 5px solid var(--gold);
}

.small-label {
    display: inline-block;
    background: var(--gold-light);
    color: #7a5a12;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

/*
|--------------------------------------------------------------------------
| TESTIMONIALS SECTION
|--------------------------------------------------------------------------
*/
.testimonials {
    background: #fff;
}

.testimonial-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 24px;
    -webkit-overflow-scrolling: touch;
}

.testimonial-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonial-scroll::-webkit-scrollbar-track {
    background: #f3eadb;
    border-radius: 999px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 999px;
}

.testimonial-card {
    position: relative;
    flex: 0 0 360px;
    width: 360px;
    max-width: 360px;
    min-height: 300px;
    scroll-snap-align: start;
}

.quote {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-top: 0;
}

.testimonial-name {
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 14px;
    color: var(--muted);
    margin-top: 3px;
}

/*
|--------------------------------------------------------------------------
| TESTIMONIAL CTA
|--------------------------------------------------------------------------
*/
.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-cta p {
    color: var(--muted);
}

.testimonial-cta .buttons {
    justify-content: center;
    margin-top: 15px;
}

.micro-note {
    font-size: 13px;
    color: #888 !important;
    margin-top: 10px;
}

/*
|--------------------------------------------------------------------------
| ABOUT SECTION / DARK SECTION
|--------------------------------------------------------------------------
*/
.about {
    background: var(--dark);
    color: var(--white);
}

.about p {
    color: #e8e0d0;
}

.about h2 {
    color: var(--gold);
    font-size: 34px;
    line-height: 1.25;
    margin-top: 0;
}

.about .card {
    color: var(--text);
}

.about .card p {
    color: var(--text) !important;
}

.about .card h3 {
    color: var(--text) !important;
}
/*
|--------------------------------------------------------------------------
| CK ECOSYSTEM SECTION
|--------------------------------------------------------------------------
*/
.ecosystem-section {
    background: var(--cream);
}

.ecosystem-card {
    border-top: 5px solid var(--gold);
}

.ecosystem-card .btn {
    margin-top: 10px;
}

/*
|--------------------------------------------------------------------------
| CONTACT SECTION
|--------------------------------------------------------------------------
*/
.contact {
    background: var(--white);
}

.contact-box {
    background: var(--cream);
    padding: 35px;
    border-radius: 22px;
    border: 1px solid var(--border);
}

.contact p {
    margin: 8px 0;
}

.contact a {
    color: var(--gold-dark);
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| CONTACT BUTTON FIX
|--------------------------------------------------------------------------
*/
.contact .btn-primary {
    color: #111111 !important;
}

.contact .btn-outline {
    color: var(--gold-dark) !important;
}

.contact .btn-outline:hover {
    color: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| ABOUT PAGE - AUTHORITY SNAPSHOT
|--------------------------------------------------------------------------
*/
.about-snapshot {
    background: #fff;
}

.stat-card h3 {
    font-size: 40px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

/*
|--------------------------------------------------------------------------
| ABOUT PAGE - JOURNEY LAYOUT
|--------------------------------------------------------------------------
*/
.journey-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: stretch;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.journey-text .card {
    padding: 26px;
}

.journey-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 20px;
}

.journey-image::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(201,162,77,0.25), transparent 70%);
    bottom: 40px;
    right: 40px;
    z-index: 0;
}

.journey-image::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 80px;
    width: 180px;
    height: 25px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.25), transparent 70%);
    z-index: 0;
}

.journey-image img {
    position: relative;
    z-index: 1;
    max-width: 115%;
    max-height: 600px;
    object-fit: contain;
    transform: translateX(-30px);
    filter:
        drop-shadow(0 30px 60px rgba(0,0,0,0.25))
        brightness(0.98)
        contrast(1.02);
}

/*
|--------------------------------------------------------------------------
| ABOUT PAGE - TIMELINE
|--------------------------------------------------------------------------
*/
.timeline-section {
    background: var(--cream);
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
}

.timeline-item h3 {
    margin: 0 0 8px;
    color: var(--gold-dark);
}

.timeline-item p {
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| ABOUT PAGE - TRACK RECORD
|--------------------------------------------------------------------------
*/
.track-record {
    background: #fff;
}

/*
|--------------------------------------------------------------------------
| ABOUT PAGE - CTA
|--------------------------------------------------------------------------
*/
.about-cta {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    color: var(--gold);
    font-size: 36px;
    margin-top: 0;
}

.about-cta p {
    max-width: 760px;
    margin: 0 auto;
    color: #e8e0d0;
}

.about-cta .buttons {
    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/
footer {
    background: var(--dark);
    color: #d8d8d8;
    text-align: center;
    padding: 38px 6%;
    font-size: 18px;
    line-height: 1.7;
}

footer strong {
    color: var(--gold);
}

footer p {
    margin: 8px 0;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| MOBILE RESPONSIVE - TABLET
|--------------------------------------------------------------------------
*/
@media (max-width: 900px) {
    .hero-inner,
    .grid-2,
    .grid-3,
    .journey-layout {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 40px;
    }

    .nav {
        display: none;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .hero {
        padding: 70px 6% 60px;
    }

    .hero-note {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    section {
        padding: 60px 6%;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .journey-image {
        order: -1;
        justify-content: center;
        padding-right: 0;
    }

    .journey-image img {
        transform: none;
        max-width: 90%;
        max-height: 520px;
    }

    footer {
        font-size: 16px;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE RESPONSIVE - PHONE
|--------------------------------------------------------------------------
*/
@media (max-width: 480px) {
    h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    .testimonial-card {
        flex: 0 0 85%;
        width: 85%;
        max-width: 85%;
    }
}