/* ========================================
   Lucas Nygaard Theme - Main Stylesheet
   Design tokens from Figma
   ======================================== */

:root {
    --color-primary: #060712;
    --color-text: #4a5565;
    --color-muted: #99a1af;
    --color-border: #f3f4f6;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg: #ffffff;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 56px;
    --radius-full: 9999px;

    --shadow-card: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);

    --container-width: 1440px;
    --container-padding: 100px;
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.15;
}

/* ========================================
   Layout
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 48px 0;
}

@media (min-width: 1440px) {
    .container {
        padding: 0;
    }
}

/*++++++++++++++++++++++++++++++++*/

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #1a1a2e;
    opacity: 1;
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    opacity: 1;
}

.btn-pill {
    border-radius: var(--radius-full);
}

.btn-rounded {
    border-radius: var(--radius-sm);
}

.btn-lg {
    font-size: 16px;
    padding: 16px 32px;
    font-weight: 600;
}

.btn-xl {
    font-size: 18px;
    padding: 22px 39px;
    font-weight: 600;
    line-height: 28px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn svg,
.btn .btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Arrow icon for inline links */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.link-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ========================================
   Pill / Tag
   ======================================== */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 23px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.pill-light {
    background-color: var(--color-border);
    color: var(--color-primary);
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-border);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

/* ========================================
   Header / Navigation
======================================== */

/* BASE (mobile-first) */
.site-header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
	 overflow: visible;
}

/* FULL WIDTH di mobile */
.site-header .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
	 overflow: visible;
}

/* NAVBAR MOBILE (default) */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;
    background: var(--color-white);

    /* penting: hilangkan gaya desktop */
    border: none;
    border-radius: 0;
    box-shadow: none;

    border-bottom: 1px solid var(--color-border);
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 24px;
}

/* NAV LINKS (hidden mobile) */
.nav-links {
    display: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 20px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* BUTTON (hidden mobile) */
.btn {
    display: none;
}

/* HAMBURGER */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;

    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

/* hamburger clean (2 garis) */
.nav-toggle span {
    width: 20px;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    display: block;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-4px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(4px);
}
/* DESKTOP */
@media (min-width: 1024px) {

    .site-header {
        padding: 24px 0 48px;
        background: transparent;
        overflow: visible;
    }

    .site-header .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 24px;
        position: relative; /* 🔥 penting */
    }

    .navbar {
        position: relative;
        z-index: 10;

        /* 🔥 TRIK UTAMA */
        width: calc(100% + 48px);
        left: -24px;

        padding: 16px 32px;

        border-radius: var(--radius-full);
        border: 1px solid rgba(0,0,0,0.06);

        background: var(--color-white);

        box-shadow:
            0 24px 80px rgba(0,0,0,0.12),
            0 10px 30px rgba(0,0,0,0.06);
    }
}
/* ========================================
   Services Grid
   ======================================== */

.services {
    padding: 48px 0;
}

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

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 242px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.625;
    color: var(--color-text);
}

/* ========================================
   Trusted By / Brands Section
   ======================================== */

.trusted {
    padding: 48px 0;
}

.trusted-inner {
    background: var(--color-black);
    border-radius: var(--radius-2xl);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.trusted-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.trusted-text {
    max-width: 518px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.trusted-text h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
}

.trusted-text p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--color-muted);
}

.trusted-text .link-arrow {
    color: var(--color-white);
}

/* =========================
   GLOBAL SAFETY (WAJIB)
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================
   WRAPPER FIX
========================= */
.trusted,
.trusted-inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 🔥 container HARUS bebas */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;

    overflow: visible; /* 🔥 INI KUNCI */
}
/* =========================
   MAIN LOGOS (ATAS)
========================= */
.trusted-logos-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 544px;
}

/* =========================
   LOGO CARD
========================= */
.trusted-logo {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    padding: 16px;
    min-width: 0; /* penting biar tidak overflow */
}

/* =========================
   LOGO IMAGE
========================= */
.trusted-logo img {
    width: 100%;
    height: auto;
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

/* =========================
   GRID BAWAH (DEFAULT DESKTOP)
========================= */
.trusted-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
    .trusted-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

/* =========================
   MOBILE (FIX UTAMA)
========================= */
@media (max-width: 640px) {
    .trusted-logos-main {
        grid-template-columns: 1fr;
    }

    .trusted-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trusted-logo {
        height: 72px;
        padding: 10px;
    }

    .trusted-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}
/* ========================================
   Problem Section
   ======================================== */

.problem {
    padding: 48px 0;
}

.problem-header {
    text-align: center;
    margin-bottom: 48px;
}

.problem-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
}

.problem-header p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text);
    max-width: 746px;
    margin: 20px auto 0;
}

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

.problem-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.problem-card .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ========================================
   Approach Section
   ======================================== */

.approach {
    padding: 48px 0;
}

.approach-top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.approach-left {
    flex: 0 0 auto;
    max-width: 653px;
}

.approach-left h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
}

.approach-right {
    flex: 1;
}

.approach-right > p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--color-text);
    margin-bottom: 16px;
}

.approach-right .highlight {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.625;
    color: var(--color-primary);
}

.approach-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-top: 24px;
}

.approach-box p {
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-text);
    margin-bottom: 12px;
}

.approach-box p:last-child {
    margin-bottom: 0;
}

.approach-last {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.625;
    color: var(--color-primary);
    margin-top: 24px;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.57;
    color: var(--color-text);
}

/* ========================================
   Case Studies Section
   ======================================== */

.case-studies {
    padding: 48px 0;
}

.case-studies-header {
    margin-bottom: 48px;
}

.case-studies-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.case-studies-header p {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 16px;
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
}

.case-study-image {
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-content .tag {
    align-self: flex-start;
    margin-bottom: 24px;
}

.case-study-content h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.case-study-content .role {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text);
    margin-top: 8px;
    line-height: 32px;
}

.case-study-content .description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    margin-top: 24px;
}

.case-study-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text);
    line-height: 20px;
}

.case-study-content .btn {
    margin-top: 28px;
    align-self: flex-start;
    border-radius: var(--radius-sm);
    padding: 16px 32px;
    font-size: 14px;
}

.case-studies-footer {
    text-align: center;
    margin-top: 48px;
}

.case-studies-footer .btn {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
}

/* ========================================
   Brand Properties
   ======================================== */

.brand-properties {
    padding: 48px 0;
}

.brand-properties-header {
    text-align: center;
    margin-bottom: 48px;
}

.brand-properties-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 24px;
}

.brand-properties-header > p {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 24px;
}

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

.brand-property-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.brand-property-image {
    height: 256px;
    overflow: hidden;
    background: var(--color-border);
}

.brand-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-property-content {
    padding: 40px 55px;
}

.brand-property-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.brand-property-content p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--color-text);
    margin-top: 24px;
}

.brand-property-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
}

.brand-property-link .icon-circle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-property-accent {
    height: 4px;
    background: var(--color-primary);
}

.brand-properties-cta {
    text-align: center;
    margin-top: 48px;
    padding: 48px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.brand-properties-cta p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    padding: 48px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-slide.active {
    display: grid;
    opacity: 1;
}

.testimonial-slide.fading-out {
    display: grid;
    opacity: 0;
}

.testimonial-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
}

.testimonial-image-wrapper .testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-card);
}

.testimonial-badge-check {
    display: flex;
    align-items: center;
}

.testimonial-badge-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 24px;
}

.testimonial-badge-label {
    font-size: 12px;
    color: var(--color-text);
    line-height: 16px;
}

.testimonial-content {
    padding-left: 48px;
}

.testimonial-quote-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 29px;
}

.testimonial-quote-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 28px;
}

.testimonial-author-role {
    font-size: 14px;
    color: var(--color-text);
    line-height: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.testimonial-dot.active {
    width: 48px;
    border-radius: 4px;
    background: var(--color-primary);
}

/* ========================================
   Assessment / Quiz
   ======================================== */

.assessment {
    padding: 48px 0;
}

.assessment-header {
    text-align: center;
    margin-bottom: 48px;
}

.assessment-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 16px;
}

.assessment-header p {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 16px;
}

.quiz-container {
    max-width: 896px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 52px;
}

.quiz-progress {
    margin-bottom: 32px;
}

.quiz-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.quiz-progress-info span {
    font-size: 14px;
    color: var(--color-text);
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.3s;
}

.quiz-question {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--color-white);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 28px;
    text-align: left;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--color-primary);
    background: var(--color-border);
}

.quiz-option.selected {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.quiz-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.4;
}

.quiz-option.selected svg {
    opacity: 1;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-result {
    text-align: center;
    padding: 32px 0;
}

.quiz-result h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.quiz-result p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 32px;
}

/* ========================================
   Pricing / Services Section
   ======================================== */

.pricing {
    padding: 48px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-top: 16px;
}

.pricing-header > p {
    font-size: 16px;
    color: var(--color-text);
    margin-top: 16px;
}

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

.pricing-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card-header {
    margin-bottom: 28px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-price .amount {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--color-primary);
}

.pricing-price .period {
    font-size: 14px;
    color: var(--color-text);
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 4px;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text);
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ========================================
   Real Impact / Stats
   ======================================== */

.impact {
    padding: 64px 0;
    background: var(--color-primary);
}

.impact h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.impact-stat .value {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    color: var(--color-white);
}

.impact-stat .label {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 24px;
}

/* ========================================
   Insights / Blog
   ======================================== */

.insights {
    padding: 48px 0;
}

.insights-header {
    margin-bottom: 48px;
}

.insights-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.insights-header p {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 16px;
}

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

.insight-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.insight-card-image {
    height: 256px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card-content {
    padding: 24px;
}

.insight-card-content .tag {
    margin-bottom: 16px;
}

.insight-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 16px;
}

.insight-card-content .link-arrow {
    font-size: 14px;
    color: var(--color-text);
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: 48px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-header h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
}

.about-header > p {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 16px;
}

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

.about-stat {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.about-stat .value {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: var(--color-primary);
}

.about-stat .label {
    font-size: 16px;
    color: var(--color-text);
    line-height: 24px;
}

.about-stat .tag {
    margin-bottom: 8px;
}

.about-stat--dark {
    background-color: var(--color-primary);
}

.about-stat--dark .value {
    color: var(--color-white);
}

.about-stat--dark .label {
    color: var(--color-muted);
}

.tag--on-dark {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.about-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.about-actions .btn {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.625;
    color: var(--color-text);
    max-width: 638px;
    margin: 32px auto 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.cta-buttons .btn {
    font-size: 18px;
    padding: 22px 39px;
    line-height: 28px;
    border-radius: var(--radius-sm);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--color-border);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--color-text);
    line-height: 28px;
}

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

.footer-links a {
    font-size: 16px;
    color: var(--color-text);
    line-height: 24px;
}

.footer-links a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.footer-bottom {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-muted);
}

/* ========================================
   SVG Icons (inline)
   ======================================== */

.icon-arrow-right {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.icon-check {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.icon-arrow-up-right {
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --container-padding: 40px;
    }

    .hero h1 {
        font-size: 64px;
        letter-spacing: -2px;
    }

    .trusted-top {
        flex-direction: column;
    }

    .trusted-logos-main {
        width: 100%;
    }

    .trusted-text h2,
    .problem-header h2,
    .approach-left h2,
    .case-studies-header h2,
    .brand-properties-header h2,
    .testimonials-header h2,
    .assessment-header h2,
    .insights-header h2,
    .about-header h2,
    .cta-section h2 {
        font-size: 40px;
    }

    .trusted-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .approach-top {
        flex-direction: column;
    }

    .case-study-card {
        grid-template-columns: 1fr;
    }

    .case-study-image {
        height: 300px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding-left: 0;
    }

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

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 50px;
        letter-spacing: -1px;
    }

    .hero-image img {
        height: 300px;
    }

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

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

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

    .brand-properties-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        margin-top: 8px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    .navbar .btn {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

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

    .quiz-container {
        padding: 24px;
    }

    .quiz-question {
        font-size: 22px;
    }

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

    .impact-stat .value {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 42px;
    }

    .trusted-inner {
        padding: 24px;
        border-radius: var(--radius-xl);
    }

    .trusted-logos-main {
        grid-template-columns: 1fr;
    }

    .trusted-logos-grid {
        grid-template-columns: 1fr 1fr;
    }
}
