/* ============================================================
   Data King Landing Page - site.css
   Based on DESIGN.md specification
   ============================================================ */

/* ---------- Font Face ---------- */
@font-face {
    font-family: 'MHeiHK';
    src: local('MHeiHK'), local('Microsoft JhengHei');
}

/* ---------- Global Resets & Base ---------- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans HK', 'MHeiHK', 'Microsoft JhengHei', 'PingFang HK', sans-serif;
    color: #3D3D3D;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: #3D3D3D;
    margin-top: 0;
    letter-spacing: .02em;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
}

h3 {
    font-size: 20px;
    line-height: 1.5;
}

h4 {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 0;
    display: inline;
}

p {
    color: #3D3D3D;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

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

/* ---------- Primary Button ---------- */
.dk-btn-primary {
    background: linear-gradient(to right, #F1BD1A, #FFDC6D);
    color: #3D3D3D !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.dk-btn-primary:hover {
    box-shadow: 0px 4px 16px rgba(241, 189, 26, 0.4);
    transform: translateY(-1px);
    color: #3D3D3D !important;
    text-decoration: none;
}

.dk-btn-outline {
    background: transparent;
    color: #F1BD1A !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border: 2px solid #F1BD1A;
    border-radius: 50px;
    padding: 10px 28px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dk-btn-outline .dk-whatsapp-icon {
    width: 18px;
    height: 18px;
    color: inherit;
    flex-shrink: 0;
}

.dk-btn-outline:hover {
    background: linear-gradient(to right, #F1BD1A, #FFDC6D);
    color: #3D3D3D !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.dk-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 48px;
    padding-right: 48px;
}

.dk-whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: inherit;
}

/* ---------- Section Header (Shared) ---------- */
.dk-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.dk-pre-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #F1BD1A;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.dk-subtitle {
    color: #3D3D3D;
    font-size: 16px;
    max-width: 680px;
    margin: 12px auto 0;
}

/* ============================================================
   i. HEADER NAVIGATION
   ============================================================ */
.dk-header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dk-header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

/* ============================================================
   ii. HERO SECTION
   ============================================================ */
.dk-hero {
    background: linear-gradient(to bottom, #FFFFFF, #FFF2D5);
    margin-bottom: 0;
}

.dk-hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-hero-text {
    width: 50%;
    padding-right: 40px;
}

.dk-hero-text h1 {
    margin-bottom: 24px;
}

.dk-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.dk-hero-bullets li {
    font-size: 16px;
    color: #3D3D3D;
    margin-bottom: 8px;
    line-height: 1.6;
}

.dk-hero-stats {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.dk-stat-box {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
}

.dk-stat-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.dk-stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.dk-stat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dk-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #F1BD1A;
    line-height: 1.2;
}

.dk-stat-label {
    display: block;
    font-size: 14px;
    color: #3D3D3D;
}

.dk-hero-image {
    width: 50%;
    text-align: center;
}

.dk-hero-image img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   iii. FEATURES / PAIN POINTS SECTION
   ============================================================ */
.dk-features {
    background: #FFFFFF;
}

.dk-features-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
}

/* Card 1: left 1/4, spans both rows */
.dk-feature-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 300px 30px 0 30px;
    position: relative;
    background-image: url('/images/advantage-bg-1.png');
}

.dk-feature-card:nth-child(1) .dk-feature-img {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: auto;
}

/* Card 2: top-right first half (column 2) */
.dk-feature-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    background-image: url('/images/advantage-bg-2.png');
}

.dk-feature-card:nth-child(2) .dk-feature-body,
.dk-feature-card:nth-child(3) .dk-feature-body {
    text-align: center;
}

.dk-feature-card:nth-child(2) .dk-feature-img,
.dk-feature-card:nth-child(3) .dk-feature-img {
    width: 60%;
    margin: 20px auto 0;
}

/* Card 3: top-right second half (column 3) */
.dk-feature-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    background-image: url('/images/advantage-bg-3.png');
}

/* Card 4: bottom-right, spans columns 2–4 */
.dk-feature-card:nth-child(4) {
    grid-column: 2 / 5;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    padding-left: 340px;
    height: 110px;
    position: relative;
    background-image: url('/images/advantage-bg-4.png');
}

.dk-feature-card:nth-child(4) .dk-feature-img {
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    position: absolute;
    top: -20px;
    left: 90px;
    height: 130px;
}

.dk-feature-card:nth-child(4) .dk-feature-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.dk-feature-card {
    background-color: #FFFFFF;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.dk-feature-card:hover {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dk-feature-img {
    width: 100%;
    height: auto;
    display: block;
}

.dk-feature-body {
    padding: 20px 24px 24px;
}

.dk-feature-body h3 {
    margin-bottom: 8px;
}

.dk-feature-body p {
    margin-bottom: 0;
    color: #3D3D3D;
}

/* ============================================================
   iv. PROCESS TIMELINE SECTION
   ============================================================ */
.dk-timeline-wrapper {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-timeline-container {
    position: relative;
}

.dk-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #FFF3D7;
    transform: translateX(-50%);
}

.dk-timeline-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.dk-timeline-step:last-child {
    margin-bottom: 0;
}

.dk-timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: url('/images/icon/target.svg') center / contain no-repeat;
    z-index: 1;
}

.dk-timeline-image {
    width: 45%;
}

.dk-timeline-image img {
    border-radius: 12px;
    width: 100%;
}

.dk-timeline-card {
    width: 45%;
    background: #F9F9F9;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
}

.dk-step-tag {
    display: inline-block;
    color: #F1BD1A;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.dk-timeline-card h3 {
    margin-bottom: 8px;
}

.dk-timeline-card p {
    margin-bottom: 16px;
}

.dk-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dk-tag {
    display: inline-block;
    background: transparent;
    border: 1px solid #F1BD1A;
    color: #3D3D3D;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 10px;
}

.dk-tag.dk-tag-highlight {
    background: linear-gradient(to left, #F1BD1A, #FFDC6D);
}

/* ============================================================
   v. COMPARISON TABLE SECTION
   ============================================================ */
.dk-comparison {
    background: linear-gradient(to bottom, #FFF2D5, #FFFFFF);
}

.dk-comparison-wrapper {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-table-container {
    border-radius: 16px;
    box-shadow: 10px 10px 30px 0px rgba(241, 189, 26, 0.15);
    overflow: hidden;
}

.dk-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background: #FFFFFF;
}

.dk-comparison-table thead th {
    background: #FFFFFF;
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    color: #3D3D3D;
    border-bottom: 2px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
}

.dk-comparison-table thead th:last-child {
    border-right: none;
}

.dk-comparison-table thead th:first-child {
    text-align: left;
}

.dk-comparison-table tbody td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
    vertical-align: middle;
    color: #3D3D3D;
    background: #FFFFFF;
    height: 85px;
}

.dk-comparison-table tbody td:last-child {
    border-right: none;
}

.dk-comparison-table tbody tr:last-child td {
    border-bottom: none;
    background: #FFF4DC !important;
}

.dk-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: #3D3D3D;
}

.dk-comparison-table tbody td .dk-cell-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dk-comparison-table tbody td .dk-cell-content span:last-child {
    flex: 1;
}

/* Highlighted column (Data King) */
.dk-highlight-col {
    background: #FFF4DC !important;
    border-left: 2px solid #F1BD1A !important;
    border-right: 2px solid #F1BD1A !important;
    font-weight: 700;
}

.dk-comparison-table thead th.dk-highlight-col {
    border-top: 2px solid #F1BD1A;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(to bottom right, #FFDC6D, #F1BD1A) !important;
}

.dk-comparison-table tbody tr td.dk-highlight-col {
    border-bottom: 2px solid #F1BD1A !important;
}

.dk-comparison-table tbody tr:last-child td.dk-highlight-col {
    border-bottom: 2px solid #F1BD1A !important;
    border-radius: 0 0 16px 16px;
}

.dk-th-icon {
    display: inline-block;
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-right: 4px;
}

.dk-td-icon {
    display: inline-block;
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-right: 4px;
}

.dk-check {
    display: inline-block;
    font-size: 27px;
    color: #4CAF50;
    font-weight: 700;
    margin-right: 4px;
    flex-shrink: 0;
}

.dk-cross {
    display: inline-block;
    font-size: 27px;
    color: #FF5722;
    font-weight: 700;
    margin-right: 4px;
    flex-shrink: 0;
    vertical-align: middle;
}

.dk-triangle {
    display: inline-block;
    width: 27px;
    height: 27px;
    font-size: 0;
    background: url('/images/icon/triangle.svg') center / contain no-repeat;
    margin-right: 4px;
    flex-shrink: 0;
    vertical-align: middle;
}

/* Mobile comparison cards */
.dk-comparison-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dk-mobile-compare-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 24px;
}

.dk-mobile-compare-card h3 {
    margin-bottom: 16px;
    text-align: center;
}

.dk-mobile-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dk-mobile-compare-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #EAEAEA;
    font-size: 14px;
    color: #3D3D3D;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dk-mobile-compare-card ul li:last-child {
    border-bottom: none;
}

.dk-mobile-compare-card ul li strong {
    display: block;
    margin-bottom: 2px;
    width: 100%;
}

.dk-li-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.dk-li-header .dk-td-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dk-li-body {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding-left: 30px;
    /* indent when no icon (matches icon 20px + gap 4px) */
}

.dk-li-body:has(.dk-check),
.dk-li-body:has(.dk-cross),
.dk-li-body:has(.dk-triangle) {
    padding-left: 0;
}

.dk-li-body .dk-check,
.dk-li-body .dk-cross {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    flex-shrink: 0;
    margin-right: 6px;
    margin-top: 2px;
}

.dk-li-body .dk-triangle {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 6px;
    margin-top: 2px;
}

.dk-mobile-compare-highlight {
    border: 2px solid #F1BD1A;
    background: #FFF2D5;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   vi. CASE STUDIES SECTION
   ============================================================ */
.dk-cases {
    background: #FFFFFF;
}

.dk-cases-wrapper {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dk-case-card {
    background: #FFF2D5;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.dk-case-card:hover {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.dk-case-logo {
    width: 100%;
    line-height: 0;
}

.dk-case-logo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.dk-case-body {
    padding: 20px 24px 24px;
}

.dk-case-industry {
    font-size: 13px;
    font-weight: 700;
    color: #D4A017;
    margin-bottom: 4px;
}

.dk-case-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.dk-case-card p {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* ============================================================
   vii. PLANS / CONTACT SECTION
   ============================================================ */
.dk-plans {
    background: #FAFAFA;
}

.dk-plans-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dk-plans-stack {
    width: 100%;
    max-width: 1000px;
}

.dk-plan-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.dk-plan-card:hover {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
}

.dk-plan-card:last-child {
    margin-bottom: 0;
}

.dk-plan-icon {
    flex: 0 0 15%;
    text-align: center;
}

.dk-plan-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.dk-plan-content {
    flex: 0 0 60%;
    padding: 0 24px;
}

.dk-plan-content h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.dk-plan-content>p {
    font-size: 16px;
    margin-bottom: 12px;
}

.dk-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dk-plan-features li {
    font-size: 14px;
    color: #3D3D3D;
    margin-bottom: 4px;
}

.dk-plan-price {
    flex: 0 0 20%;
    text-align: left;
}

.dk-price-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    margin-bottom: 12px;
}

.dk-price-label {
    color: #3D3D3D;
}

.dk-price-value {
    color: #F1BD1A;
    font-size: 23px;
}

/* ============================================================
   viii. FOOTER SECTION
   ============================================================ */
.dk-footer {
    background: #FFF2D5;
    border-top: 1px solid #EAEAEA;
}

.dk-footer-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 48px;
}

.dk-footer-logo {
    height: auto;
    width: 100%;
    max-width: 364px;
    flex-shrink: 0;
}

.dk-footer-brand {
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
}

.dk-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.dk-footer-text {
    text-align: left;
}

.dk-footer-text p {
    margin: 0;
    color: #3D3D3D;
}

.dk-footer-text p:first-child {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.6;
}

.dk-footer-text p:last-child {
    font-size: 25px;
}

.dk-footer-cta {
    text-align: left;
}

/* ============================================================
   RESPONSIVE - Mobile Breakpoint (768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 18px;
    }

    body {
        font-size: 15px;
    }

    /* Header */
    .dk-header-wrapper {
        padding: 16px 5%;
    }

    .dk-header-logo {
        height: 48px;
    }

    /* Hero */
    .dk-hero-wrapper {
        flex-direction: column-reverse;
        padding: 40px 5%;
        text-align: center;
    }

    .dk-hero-text {
        width: 100%;
        padding-right: 0;
    }

    .dk-hero-image {
        width: 100%;
        margin-bottom: 24px;
    }

    .dk-hero-bullets {
        text-align: left;
        display: inline-block;
    }

    .dk-hero-stats {
        flex-direction: column;
    }

    .dk-stat-box {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .dk-stat-top {
        gap: 6px;
    }

    .dk-stat-label {
        flex: 1;
        text-align: left;
    }

    /* Features */
    .dk-features-wrapper {
        padding: 40px 5%;
    }

    .dk-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
    }

    /* Card 1: full width, row 1 */
    .dk-feature-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
        background-image: url('/images/advantage-bg-m-1.png');
    }

    /* Cards 2 & 3: share row 2 */
    .dk-feature-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        background-image: url('/images/advantage-bg-m-2.png');
    }

    .dk-feature-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        background-image: url('/images/advantage-bg-m-3.png');
    }

    /* Card 4: full width, row 3 */
    .dk-feature-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
        flex-direction: column;
        height: auto;
        padding: 130px 30px 20px 30px;
        background-image: url('/images/advantage-bg-m-4.png');
    }

    .dk-feature-card:nth-child(4) .dk-feature-img {
        max-width: 70%;
        top: -15px;
        height: auto;
        margin: auto;
        left: auto;
    }

    .dk-feature-card:nth-child(4) .dk-feature-body {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Timeline */
    .dk-timeline-wrapper {
        padding: 40px 5%;
    }

    .dk-timeline-line {
        display: none;
    }

    .dk-timeline-dot {
        display: none;
    }

    .dk-timeline-dot-hidden {
        display: none !important;
    }

    .dk-timeline-step::before {
        display: none;
    }

    .dk-timeline-step {
        flex-direction: column;
        margin-bottom: 40px;
        background: #F9F9F9;
        border-radius: 12px;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
        overflow: visible;
        position: relative;
    }

    .dk-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 40px;
        background: #FFF3D7;
        z-index: 2;
    }

    .dk-timeline-step .dk-timeline-dot {
        display: block;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translate(-50%, 100%);
        width: 36px;
        height: 36px;
        z-index: 1;
    }

    .dk-timeline-step.dk-step-img-right {
        flex-direction: column;
    }

    .dk-timeline-step .dk-timeline-card {
        order: 1;
    }

    .dk-timeline-step .dk-timeline-image {
        order: 2;
    }

    .dk-timeline-image {
        width: 100%;
        margin-bottom: 0;
    }

    .dk-timeline-card {
        width: 100%;
        margin-bottom: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    /* Comparison */
    .dk-comparison {
        background: none;
    }

    .dk-comparison-wrapper {
        padding: 40px 5%;
    }

    /* Case Studies */
    .dk-cases-wrapper {
        padding: 40px 5%;
    }

    .dk-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Plans */
    .dk-plans-wrapper {
        padding: 40px 5%;
    }

    .dk-plan-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px;
    }

    .dk-plan-icon {
        margin-bottom: 16px;
        text-align: left;
    }

    .dk-plan-content {
        padding: 0;
        margin-bottom: 16px;
    }

    .dk-plan-price {
        text-align: left;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    /* Footer */
    .dk-footer-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .dk-footer-brand {
        padding-left: 0;
        justify-content: center;
    }

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

    .dk-footer-text {
        text-align: center;
    }

    .dk-footer-text p:first-child {
        font-size: 25px;
    }

    .dk-footer-text p:last-child {
        font-size: 25px;
    }

    .dk-footer-cta {
        text-align: center;
        width: 100%;
    }

    .dk-footer-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   Small Body Text
   ============================================================ */
.dk-body-small {
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================================
   Primary Colour Text
   ============================================================ */
.dk-text-primary {
    color: #F1BD1A;
}

/* ============================================================
   Smooth Scroll
   ============================================================ */
html {
    scroll-behavior: smooth;
}