/* ==========================================================
   SERVICE DETAILS  |  sd- prefix  |  zero conflicts
   public/assets/css/service-details.css
   ========================================================== */

/* ── Section padding ──────────────────────────────────────── */
.sd-section-pad { padding-top: 80px; padding-bottom: 80px; }

/* ── Block center header ──────────────────────────────────── */
.sd-block-center { text-align: center; max-width: 700px; margin: 0 auto 8px; }

/* ══════════════════════════════════════════════════════════
   BLOCK 1 — 2-col layout: image+content LEFT, sidebar RIGHT
══════════════════════════════════════════════════════════ */
.sd-main-row {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* ── Hero image — fills column, square-ish crop ───────────── */
.sd-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 32px;
}

/* ── Intro text ───────────────────────────────────────────── */
.sd-intro-title { font-size: 26px; font-weight: 800; line-height: 1.35; margin-bottom: 16px; color: #111827; }
.sd-intro-p     { font-size: 15px; line-height: 1.85; color: #4b5563; margin-bottom: 14px; }

/* ── Section block ────────────────────────────────────────── */
.sd-block { margin-top: 48px; }

.sd-block-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; color: #14b8a6;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.sd-block-label img { width: 15px; height: 15px; }
.sd-block-title { font-size: 22px; font-weight: 800; color: #111827; margin-bottom: 8px; line-height: 1.3; }
.sd-block-desc  { font-size: 14px; color: #6b7280; line-height: 1.7; margin-bottom: 0; }

/* ── Deliver grid ─────────────────────────────────────────── */
.sd-deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }

.sd-deliver-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 22px 20px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sd-deliver-card:hover { border-color: #14b8a6; box-shadow: 0 6px 24px rgba(20,184,166,.1); transform: translateY(-3px); }

.sd-deliver-icon-wrap {
    width: 46px; height: 46px; background: #f0fdf9;
    border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px;
}
.sd-deliver-icon-wrap i { font-size: 21px; color: #14b8a6; }
.sd-deliver-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.sd-deliver-desc  { font-size: 12.5px; color: #6b7280; line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════════
   SIDEBAR — balanced with image width
══════════════════════════════════════════════════════════ */
.sd-right {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sd-sidebar-inner { display: flex; flex-direction: column; gap: 20px; }

/* Services List — matches image column width, clean lines */
.sd-sidebar-services {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.sd-sidebar-card-head {
    background: #0f172a;
    padding: 15px 20px;
    display: flex; align-items: center; gap: 10px;
}
.sd-sidebar-card-head i  { color: #14b8a6; font-size: 17px; }
.sd-sidebar-card-head h3 { color: #fff; font-size: 14.5px; font-weight: 700; margin: 0; }

.sd-srv-list { list-style: none; padding: 4px 0; margin: 0; }

.sd-srv-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f3f4f6;
    transition: all .2s;
    line-height: 1.4;
}
.sd-srv-list li:last-child a { border-bottom: none; }

.sd-srv-list li a span { flex: 1; }
.sd-srv-list li a i { font-size: 16px; color: #d1d5db; flex-shrink: 0; transition: color .2s, transform .2s; }

.sd-srv-list li a:hover {
    background: #f9fafb;
    color: #14b8a6;
    border-left-color: #14b8a6;
}
.sd-srv-list li a:hover i { color: #14b8a6; transform: translateX(2px); }

/* Active state */
.sd-srv-active a {
    background: #f0fdf9 !important;
    color: #14b8a6 !important;
    font-weight: 700 !important;
    border-left-color: #14b8a6 !important;
}
.sd-srv-active a i { color: #14b8a6 !important; }

/* Contact Card */
.sd-contact-card {
    background: linear-gradient(145deg, #0f172a, #134e4a);
    border-radius: 14px; padding: 24px 20px;
}
.sd-contact-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sd-contact-card p  { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }

.sd-contact-item { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.sd-contact-item-icon { width: 34px; height: 34px; background: rgba(20,184,166,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sd-contact-item-icon i { color: #14b8a6; font-size: 14px; }
.sd-contact-item-text { display: flex; flex-direction: column; }
.sd-contact-item-text small { color: rgba(255,255,255,.4); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.sd-contact-item-text a   { color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s; }
.sd-contact-item-text a:hover { color: #14b8a6; }

.sd-contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; padding: 11px; background: #14b8a6; color: #fff;
    font-weight: 700; font-size: 13px; border-radius: 8px;
    text-decoration: none; margin-top: 16px; transition: background .2s;
}
.sd-contact-btn:hover { background: #0d9488; color: #fff; }

/* Trust Card */
.sd-trust-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px 18px 6px; }
.sd-trust-card h4 { font-size: 12px; font-weight: 800; color: #111827; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.sd-trust-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.sd-trust-item:last-child { border-bottom: none; padding-bottom: 2px; }
.sd-trust-icon { width: 32px; height: 32px; background: #f0fdf9; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sd-trust-icon i { color: #14b8a6; font-size: 14px; }
.sd-trust-text { font-size: 12.5px; font-weight: 600; color: #374151; }

/* ══════════════════════════════════════════════════════════
   FULL-WIDTH DARK BLOCKS (Stats + Pricing)
══════════════════════════════════════════════════════════ */
.sd-full-dark-block {
    background: linear-gradient(135deg, #0f172a 0%, #0d3330 100%);
    padding: 72px 0; text-align: center;
}

/* ── Stats ────────────────────────────────────────────────── */
.sd-stats-header { margin-bottom: 40px; }

.sd-stats-badge {
    display: inline-block; background: rgba(20,184,166,.15); color: #14b8a6;
    border: 1px solid rgba(20,184,166,.3); padding: 4px 16px; border-radius: 30px;
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px;
}
.sd-stats-heading { color: #fff; font-size: 24px; font-weight: 700; margin: 0; }

.sd-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

.sd-stat-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 26px 10px; transition: background .2s;
}
.sd-stat-card:hover { background: rgba(255,255,255,.1); }
.sd-stat-number { display: block; font-size: 32px; font-weight: 800; color: #14b8a6; line-height: 1; margin-bottom: 8px; }
.sd-stat-label  { display: block; color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.sd-stat-sub    { display: block; color: rgba(255,255,255,.45); font-size: 11px; }

/* ── Pricing ──────────────────────────────────────────────── */
.sd-pricing-badge {
    display: inline-block; background: rgba(20,184,166,.15); color: #14b8a6;
    border: 1px solid rgba(20,184,166,.3); padding: 4px 16px; border-radius: 30px;
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px;
}
.sd-pricing-heading { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.sd-pricing-sub     { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; max-width: 520px; margin: 0 auto 36px; }
.sd-pricing-sub strong { color: #14b8a6; }

.sd-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 860px; margin: 0 auto 24px; text-align: left; }

.sd-plan-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 28px 22px;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.sd-plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.25); }
.sd-plan-card--active { background: #14b8a6; border-color: #14b8a6; }

.sd-plan-name     { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.sd-plan-card--active .sd-plan-name { color: rgba(255,255,255,.85); }
.sd-plan-price    { color: #fff; font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.sd-plan-per      { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); }
.sd-plan-divider  { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 16px 0; }

.sd-plan-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.sd-plan-list li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.8); font-size: 13px; padding: 6px 0; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,.07); }
.sd-plan-list li:last-child { border-bottom: none; }
.sd-plan-check { color: #14b8a6; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.sd-plan-card--active .sd-plan-check { color: #fff; }

.sd-plan-btn {
    display: block; text-align: center; padding: 11px; border-radius: 8px;
    font-weight: 700; font-size: 13.5px; text-decoration: none;
    background: rgba(255,255,255,.1); color: #fff;
    border: 1px solid rgba(255,255,255,.18); transition: .25s; margin-top: auto;
}
.sd-plan-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
.sd-plan-card--active .sd-plan-btn { background: #fff; color: #14b8a6; border-color: #fff; }
.sd-plan-card--active .sd-plan-btn:hover { background: #f0fdf9; }

.sd-pricing-note { color: rgba(255,255,255,.35); font-size: 12.5px; margin: 0; }
.sd-pricing-note strong { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   PROCESS — 3×2 card grid, equal height cards
══════════════════════════════════════════════════════════ */
.sd-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sd-process-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sd-process-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 28px rgba(20,184,166,.11);
    transform: translateY(-4px);
}

.sd-process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.sd-process-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    display: flex; align-items: center; justify-content: center;
}
.sd-process-icon i { color: #fff; font-size: 22px; }

.sd-process-num {
    font-size: 52px; font-weight: 900;
    color: #f0fdf9; line-height: 1;
    /* faint green tint instead of grey */
}

.sd-process-title { font-size: 15.5px; font-weight: 700; color: #111827; margin-bottom: 9px; }
.sd-process-desc  { font-size: 13px; color: #6b7280; line-height: 1.75; margin: 0; flex: 1; }

/* ══════════════════════════════════════════════════════════
   TWO-COL COMPARE CARDS (Influencer vs Celebrity Gifting)
══════════════════════════════════════════════════════════ */
.sd-two-col-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sd-compare-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s, transform .25s;
}
.sd-compare-card:hover {
    box-shadow: 0 8px 32px rgba(20,184,166,.1);
    transform: translateY(-3px);
}
.sd-compare-card--alt {
    border-color: #14b8a6;
    background: #f0fdf9;
}

.sd-compare-head {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #e5e7eb;
}
.sd-compare-card--alt .sd-compare-head { border-bottom-color: #a7f3d0; }

.sd-compare-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.sd-compare-icon i { color: #fff; font-size: 24px; }

.sd-compare-head h4 {
    font-size: 18px; font-weight: 800;
    color: #111827; margin-bottom: 6px;
}
.sd-compare-head p {
    font-size: 13.5px; color: #6b7280;
    line-height: 1.65; margin: 0;
}

.sd-compare-list {
    list-style: none; padding: 20px 28px; margin: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.sd-compare-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; color: #374151;
    font-weight: 500; padding: 7px 0;
    border-bottom: 1px solid #f3f4f6;
}
.sd-compare-list li:last-child { border-bottom: none; }
.sd-compare-list li i { color: #14b8a6; font-size: 15px; flex-shrink: 0; }

.sd-compare-tag {
    margin: 0 28px 24px;
    background: rgba(20,184,166,.08);
    border: 1px solid rgba(20,184,166,.2);
    color: #0d7a5f;
    font-size: 12px; font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .sd-two-col-compare { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PLATFORMS SECTION — 3×2 icon cards
══════════════════════════════════════════════════════════ */
.sd-platforms-section { background: #f8faf9; }

.sd-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sd-platform-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sd-platform-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 28px rgba(20,184,166,.1);
    transform: translateY(-4px);
}

.sd-platform-icon {
    width: 62px; height: 62px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    transition: transform .25s;
}
.sd-platform-card:hover .sd-platform-icon { transform: scale(1.1); }

.sd-platform-name {
    font-size: 15px; font-weight: 700;
    color: #111827; margin-bottom: 8px;
}
.sd-platform-desc {
    font-size: 13px; color: #6b7280;
    line-height: 1.65; margin: 0;
}

/* ══════════════════════════════════════════════════════════
   CASE STUDIES — 2-col, equal height cards
══════════════════════════════════════════════════════════ */
.sd-cases-section { background: #f8faf9; }

.sd-case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.sd-case-card2 {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}
.sd-case-card2:hover { box-shadow: 0 10px 36px rgba(0,0,0,.09); transform: translateY(-3px); }

.sd-case-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.sd-case-img2 { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s; }
.sd-case-card2:hover .sd-case-img2 { transform: scale(1.04); }

.sd-case-tag {
    position: absolute; top: 12px; left: 12px;
    background: #14b8a6; color: #fff;
    padding: 4px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
}

.sd-case-body2 { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.sd-case-title2 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 9px; line-height: 1.4; }
.sd-case-desc2  { font-size: 13px; color: #6b7280; line-height: 1.75; margin-bottom: 14px; flex: 1; }

.sd-case-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.sd-result-badge { background: #f0fdf9; color: #0d7a5f; border: 1px solid #a7f3d0; padding: 3px 11px; border-radius: 20px; font-size: 11px; font-weight: 700; }

.sd-case-channels { font-size: 11.5px; color: #9ca3af; display: flex; align-items: center; gap: 5px; margin-top: auto; }
.sd-case-channels i { color: #14b8a6; }

/* ══════════════════════════════════════════════════════════
   FAQ — custom accordion, theme-coloured (no Bootstrap blue)
══════════════════════════════════════════════════════════ */
.sd-faq-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}

.sd-faq-right {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sd-faq-list { display: flex; flex-direction: column; gap: 0; }

.sd-faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.sd-faq-item:first-child { border-top: 1px solid #e5e7eb; }

.sd-faq-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 18px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-align: left;
    transition: color .2s;
}
.sd-faq-btn:hover { color: #14b8a6; }
.sd-faq-btn--open { color: #14b8a6; }

/* Open state: highlight row background */
.sd-faq-item:has(.sd-faq-btn--open) {
    border-radius: 0;
}

.sd-faq-chevron {
    font-size: 20px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform .28s ease, color .2s;
}
.sd-faq-btn--open .sd-faq-chevron {
    transform: rotate(180deg);
    color: #14b8a6;
}

.sd-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .28s ease;
    padding: 0 4px;
}
.sd-faq-body--open {
    max-height: 400px;
    padding: 0 4px 18px;
}
.sd-faq-body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   THINK DIGITAL FORM — same height as FAQ, rounded card
══════════════════════════════════════════════════════════ */
.sd-think-form-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 32px 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,.07);
}

.sd-think-title {
    font-size: 30px; font-weight: 900;
    color: #111827; margin-bottom: 4px; line-height: 1.15;
}
.sd-think-title span { color: #14b8a6; }

.sd-think-sub {
    font-size: 14px; font-weight: 600;
    color: #374151; margin-bottom: 28px;
}

.sd-think-form { display: flex; flex-direction: column; }

.sd-tf-group {
    position: relative;
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 2px;
}
.sd-tf-group:focus-within { border-bottom-color: #14b8a6; }

.sd-tf-group input {
    width: 100%; border: none; outline: none;
    background: transparent;
    padding: 16px 0 14px;
    font-size: 14px; color: #111827;
    transition: color .2s;
}
.sd-tf-group input::placeholder { color: #9ca3af; }

/* ── Aesthetic dropdown ───────────────────────────────────── */
.sd-tf-select-wrap { cursor: pointer; }

.sd-tf-select {
    width: 100%; border: none; outline: none;
    background: transparent;
    padding: 16px 32px 14px 0;
    font-size: 14px;
    color: #9ca3af;   /* placeholder grey when default selected */
    appearance: none; -webkit-appearance: none;
    cursor: pointer;
    transition: color .2s;
}
.sd-tf-select:focus { color: #111827; }
.sd-tf-select option { color: #111827; background: #fff; padding: 10px 14px; font-size: 14px; }
.sd-tf-select option:first-child { color: #9ca3af; }
.sd-tf-select option:checked { background: #f0fdf9; color: #14b8a6; }
/* When a real value is chosen, darken text */
.sd-tf-select.sd-selected { color: #111827; }

.sd-tf-arrow {
    position: absolute; right: 2px; top: 50%;
    transform: translateY(-50%);
    color: #9ca3af; font-size: 20px;
    pointer-events: none;
    transition: transform .25s, color .2s;
}
.sd-tf-group:focus-within .sd-tf-arrow { color: #14b8a6; transform: translateY(-50%) rotate(180deg); }

.sd-tf-submit {
    margin-top: 28px; width: 100%;
    padding: 15px; background: #14523e;
    color: #fff; font-size: 15px; font-weight: 700;
    border: none; border-radius: 8px; cursor: pointer;
    letter-spacing: .02em;
    transition: background .25s, transform .2s;
}
.sd-tf-submit:hover { background: #0d3d2d; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   CTA BAND — GreenHonchos exact: teal bg, diagonal lines,
   white bordered button flush right
══════════════════════════════════════════════════════════ */
.sd-cta-band {
    background: linear-gradient(135deg, #0d4f3c 0%, #156b51 60%, #0f5944 100%);
    overflow: hidden;
    position: relative;
}

.sd-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 52px 80px;
    gap: 48px;
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

.sd-cta-band-left { flex: 1; }

.sd-cta-band-title {
    font-size: 28px; font-weight: 800;
    color: #fff; line-height: 1.25;
    margin-bottom: 10px;
}

.sd-cta-band-desc {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin: 0; line-height: 1.6;
}

.sd-cta-band-right { flex-shrink: 0; }

.sd-cta-band-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 20px 44px;
    background: #fff;
    color: #14523e;
    font-size: 15px; font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid #fff;
    transition: background .25s, color .25s, transform .2s;
}
.sd-cta-band-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}
.sd-cta-band-btn i { font-size: 18px; }

/* Diagonal decorative lines — right half only */
.sd-cta-deco {
    position: absolute;
    inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.sd-cta-deco span {
    position: absolute;
    display: block;
    top: -60%; bottom: -60%;
    width: 1.5px;
    background: rgba(255,255,255,.07);
    transform: rotate(-30deg);
    transform-origin: center center;
}
.sd-cta-deco span:nth-child(1) { right: 38%; }
.sd-cta-deco span:nth-child(2) { right: 43%; background: rgba(255,255,255,.05); }
.sd-cta-deco span:nth-child(3) { right: 33%; }
.sd-cta-deco span:nth-child(4) { right: 28%; background: rgba(255,255,255,.04); }
.sd-cta-deco span:nth-child(5) { right: 23%; background: rgba(255,255,255,.05); }
.sd-cta-deco span:nth-child(6) { right: 18%; background: rgba(255,255,255,.03); }
.sd-cta-deco span:nth-child(7) { right: 48%; background: rgba(255,255,255,.04); }
.sd-cta-deco span:nth-child(8) { right: 13%; background: rgba(255,255,255,.03); }

/* Space below CTA band */
.sd-cta-spacer { height: 80px; background: #f5f5f0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .sd-main-row  { grid-template-columns: 1fr 300px; gap: 36px; }
    .sd-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .sd-faq-row   { grid-template-columns: 1fr 360px; gap: 40px; }
}

@media (max-width: 991px) {
    .sd-main-row         { grid-template-columns: 1fr; }
    .sd-right            { position: static; }
    .sd-stats-grid       { grid-template-columns: repeat(3, 1fr); }
    .sd-plans-grid       { grid-template-columns: repeat(3, 1fr); }
    .sd-process-grid     { grid-template-columns: repeat(2, 1fr); }
    .sd-case-grid        { grid-template-columns: repeat(2, 1fr); }
    .sd-faq-row          { grid-template-columns: 1fr; gap: 48px; }
    .sd-faq-right        { position: static; }
    .sd-cta-band-inner   { padding: 44px 40px; }
    .sd-cta-band-title   { font-size: 24px; }
}

@media (max-width: 767px) {
    .sd-hero-img         { height: 240px; }
    .sd-intro-title      { font-size: 21px; }
    .sd-deliver-grid     { grid-template-columns: 1fr; }
    .sd-stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sd-stat-number      { font-size: 26px; }
    .sd-process-grid     { grid-template-columns: 1fr; }
    .sd-case-grid        { grid-template-columns: 1fr; }
    .sd-plans-grid       { grid-template-columns: 1fr; gap: 14px; }
    .sd-cta-band-inner   { flex-direction: column; align-items: flex-start; padding: 40px 28px; gap: 28px; }
    .sd-cta-band-title   { font-size: 22px; }
    .sd-cta-band-btn     { width: 100%; justify-content: center; }
    .sd-think-form-wrap  { padding: 28px 22px; border-radius: 16px; }
    .sd-think-title      { font-size: 26px; }
    .sd-cta-spacer       { height: 50px; }
}

@media (max-width: 480px) {
    .sd-stats-grid { grid-template-columns: 1fr 1fr; }
    .sd-process-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar Stats Widget ─────────────────────────── */
.sd-sidebar-stats {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.sd-sidebar-stats h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0d4f45;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0fdf4;
}

.sd-sidebar-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sd-sidebar-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sd-sidebar-stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #14b8a6;
    line-height: 1;
}

.sd-sidebar-stat-label {
    font-size: 13px;
    color: #64748b;
    text-align: right;
    max-width: 55%;
    line-height: 1.4;
}

/* ── Make sidebar stretch full height of the row ─── */
.sd-main-row {
    align-items: stretch;
}

.sd-right {
    display: flex;
    flex-direction: column;
}

.sd-sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 24px;
}

/* ── Sticky sidebar so it follows scroll ────────── */
.sd-sticky-wrap {
    position: sticky;
    top: 100px;
}