/* =============================================================================
   Web Inclusion – Inner Pages Stylesheet
   About, Contact (and future inner pages)
   ============================================================================= */

/* =============================================================================
   ABOUT – Lead section
   ============================================================================= */
.about-lead-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 72px;
    align-items: start;
}

.about-lead-main h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 24px;
}

.about-lead-main p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-lead-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.aside-block {
    padding: 22px 20px;
    border-bottom: 0.5px solid var(--border);
}

.aside-block:last-child { border-bottom: none; }

.aside-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
}

.aside-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* =============================================================================
   ABOUT – Credentials
   ============================================================================= */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.credential-card {
    padding: 26px 22px;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    background: #fff;
    transition: box-shadow 0.2s var(--ease);
}

.credential-card:hover {
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.cred-sector {
    font-size: 13.5px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cred-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* =============================================================================
   ABOUT – History / Timeline
   ============================================================================= */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.history-intro h2 {
    font-size: clamp(20px, 2.5vw, 32px);
    margin-bottom: 20px;
}

.history-intro p {
    font-size: 14.5px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    padding: 22px 0 22px 24px;
    border-left: 0.5px solid var(--border-mid);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 28px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 1px var(--blue);
}

.tl-year {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.tl-text {
    font-size: 13.5px;
    color: #444;
    line-height: 1.7;
}

/* =============================================================================
   ABOUT – Principles
   ============================================================================= */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 64px;
    margin-top: 40px;
}

.principle-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.principle-item p:last-child {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

/* =============================================================================
   CONTACT – Layout
   ============================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
}

.contact-form-col h2 {
    font-size: clamp(20px, 2.5vw, 30px);
    margin-bottom: 14px;
}

.contact-form-intro {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

/* --- CF7 wrapper / overrides --- */
.cf7-wrapper .wpcf7 { margin: 0; }

.cf7-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CF7 field groups */
.cf7-wrapper .wpcf7-form p {
    margin: 0;
}

/* All text inputs and textarea */
.cf7-wrapper input[type="text"],
.cf7-wrapper input[type="email"],
.cf7-wrapper input[type="tel"],
.cf7-wrapper input[type="url"],
.cf7-wrapper select,
.cf7-wrapper textarea,
.wi-fallback-form input[type="text"],
.wi-fallback-form input[type="email"],
.wi-fallback-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--sans);
    font-size: 14px;
    color: #1A1A1A;
    background: #fff;
    border: 0.5px solid var(--border-mid);
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.cf7-wrapper input:focus,
.cf7-wrapper textarea:focus,
.wi-fallback-form input:focus,
.wi-fallback-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21, 96, 160, 0.10);
}

.cf7-wrapper textarea,
.wi-fallback-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* CF7 labels */
.cf7-wrapper label,
.wi-fallback-form label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.wi-fallback-form .opt {
    font-weight: 400;
    color: #999;
}

/* CF7 submit button */
.cf7-wrapper input[type="submit"],
.cf7-wrapper .wpcf7-submit {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 13px 28px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s var(--ease);
    display: inline-block;
    width: auto;
}

.cf7-wrapper input[type="submit"]:hover,
.cf7-wrapper .wpcf7-submit:hover {
    background: #1A6BB5;
}

/* CF7 validation */
.cf7-wrapper .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #C0392B;
    margin-top: 4px;
    display: block;
}

.cf7-wrapper .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    font-size: 13.5px;
    border-radius: 3px;
    border: 0.5px solid;
}

.cf7-wrapper .wpcf7-mail-sent-ok {
    background: #EAF7F0;
    border-color: #27AE60;
    color: #1E8449;
}

.cf7-wrapper .wpcf7-mail-sent-ng,
.cf7-wrapper .wpcf7-aborted {
    background: #FDEDEC;
    border-color: #E74C3C;
    color: #C0392B;
}

.cf7-wrapper .wpcf7-spam-blocked {
    background: #FEF9E7;
    border-color: #F1C40F;
    color: #7D6608;
}

/* Fallback form */
.wi-fallback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row { display: flex; flex-direction: column; }

.cf7-notice {
    font-size: 13px;
    color: #666;
    background: var(--off-white);
    border: 0.5px solid var(--border);
    border-radius: 3px;
    padding: 14px 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cf7-notice a { color: var(--blue); text-decoration: underline; }
.cf7-notice code { font-size: 12px; background: rgba(0,0,0,0.05); padding: 1px 5px; border-radius: 2px; }

/* --- Contact details column --- */
.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.contact-detail-block {
    padding: 22px 20px;
    border-bottom: 0.5px solid var(--border);
}

.detail-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 7px;
}

.detail-value {
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.6;
}

.detail-value a {
    color: var(--blue);
}

.detail-value a:hover {
    text-decoration: underline;
}

.contact-reassurance {
    padding: 22px 20px;
    background: var(--off-white);
}

.contact-reassurance p {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #444;
}

/* =============================================================================
   APPROACH – Intro section
   ============================================================================= */
.approach-intro-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 72px;
    align-items: start;
}

.approach-intro-main h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 24px;
}

.approach-intro-main p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-intro-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.approach-stat {
    padding: 24px 20px;
    border-bottom: 0.5px solid var(--border);
}

.approach-stat:last-child { border-bottom: none; }

.astat-n {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.astat-l {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

/* =============================================================================
   APPROACH – Four steps expanded
   ============================================================================= */
.approach-steps {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-step {
    border: 0.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.step-header {
    padding: 32px 36px 28px;
    border-bottom: 0.5px solid var(--border);
    background: #fff;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 0;
}

.step-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: #ddd;
    letter-spacing: -0.03em;
    grid-row: 1 / 3;
    padding-top: 2px;
    line-height: 1;
}

.step-header h3 {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    line-height: 1.2;
    align-self: end;
    margin-bottom: 5px;
}

.step-strap {
    font-size: 13.5px;
    color: #777;
    line-height: 1.4;
    grid-column: 2;
}

.step-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.step-col {
    padding: 32px 36px;
}

.step-col:first-child {
    border-right: 0.5px solid var(--border);
}

.step-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
}

.step-col p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-col p:last-child { margin-bottom: 0; }

.step-outputs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.step-outputs li {
    font-size: 13.5px;
    color: #333;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.step-outputs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 1px;
    background: var(--blue);
}

.step-note {
    background: var(--off-white);
    border-left: 2px solid var(--blue);
    padding: 14px 16px;
    border-radius: 0 3px 3px 0;
}

.step-note p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* =============================================================================
   APPROACH – Narrative timeline
   ============================================================================= */
.expect-timeline {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expect-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 24px;
    padding-bottom: 0;
}

.expect-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.expect-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px var(--blue);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.expect-line {
    width: 1px;
    flex: 1;
    background: var(--border-mid);
    margin-top: 6px;
    min-height: 40px;
}

.expect-line-none {
    flex: 1;
}

.expect-content {
    padding-bottom: 44px;
}

.expect-when {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.expect-content h4 {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.expect-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

/* =============================================================================
   APPROACH – What we won't do
   ============================================================================= */
.wont-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 0.5px solid var(--border);
    border-left: 0.5px solid var(--border);
    margin-top: 40px;
}

.wont-item {
    padding: 32px 28px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.wont-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wont-item p:last-child {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
}

/* =============================================================================
   APPROACH – First conversation
   ============================================================================= */
.first-conv-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
}

.first-conv-main h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 22px;
}

.first-conv-main p {
    font-size: 14.5px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
}

.conv-block-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}

.conv-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.conv-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.conv-icon {
    color: var(--blue);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1.6;
}

.conv-list li span:last-child {
    font-size: 13.5px;
    color: #333;
    line-height: 1.65;
}

.conv-reassure {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    font-style: italic;
    border-top: 0.5px solid var(--border);
    padding-top: 18px;
}

.first-conv-what {
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 28px 24px;
    position: sticky;
    top: 80px;
}

/* =============================================================================
   Responsive – inner pages
   ============================================================================= */
@media (max-width: 1024px) {
    .about-lead-grid { grid-template-columns: 1fr 280px; gap: 48px; }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .history-grid { gap: 48px; }
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-details-col { position: static; }
    .history-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .about-lead-grid { grid-template-columns: 1fr; gap: 40px; }
    .credentials-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
    .about-lead-grid { grid-template-columns: 1fr 280px; gap: 48px; }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .history-grid { gap: 48px; }
    .approach-intro-grid { grid-template-columns: 1fr 220px; gap: 48px; }
    .first-conv-grid { grid-template-columns: 1fr 280px; gap: 48px; }
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-details-col { position: static; }
    .history-grid { grid-template-columns: 1fr; gap: 40px; }
    .step-body { grid-template-columns: 1fr; }
    .step-col:first-child { border-right: none; border-bottom: 0.5px solid var(--border); }
    .first-conv-grid { grid-template-columns: 1fr; gap: 40px; }
    .first-conv-what { position: static; }
    .wont-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-lead-grid { grid-template-columns: 1fr; gap: 40px; }
    .credentials-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; gap: 28px; }
    .approach-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .step-header {
        grid-template-columns: 40px 1fr;
        padding: 24px 24px 20px;
    }
    .step-col { padding: 24px; }
    .expect-item { grid-template-columns: 20px 1fr; gap: 16px; }
}

/* =============================================================================
   ICON STYLES – inner pages
   ============================================================================= */
.cred-icon {
    font-size: 22px;
    color: var(--blue);
    opacity: 0.75;
    margin-bottom: 12px;
    display: block;
}

.principle-icon {
    font-size: 22px;
    color: var(--blue);
    opacity: 0.75;
    margin-bottom: 12px;
    display: block;
}

.aside-label i,
.detail-label i {
    margin-right: 6px;
    opacity: 0.7;
    font-size: 11px;
}

.step-col-label i {
    margin-right: 6px;
    font-size: 12px;
    opacity: 0.7;
}

.step-header-icon {
    font-size: 18px;
    color: var(--blue);
    opacity: 0.6;
    margin-bottom: 6px;
    display: block;
}

.wont-icon {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 10px;
    display: block;
}

.conv-icon {
    color: var(--blue);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* =============================================================================
   WORK – Intro
   ============================================================================= */
.work-intro-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 72px;
    align-items: start;
}

.work-intro-main h2 {
    font-size: clamp(20px, 2.6vw, 32px);
    margin-bottom: 20px;
}

.work-intro-main p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.work-sector-tags {
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 24px 20px;
}

.sector-tags-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
}

.sector-tag-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sector-tag {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sector-tag i {
    color: var(--blue);
    font-size: 12px;
    width: 14px;
    opacity: 0.8;
}

/* =============================================================================
   WORK – Featured case studies
   ============================================================================= */
.cs-featured {
    border: 0.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 36px;
    background: #fff;
}

.cs-featured-header {
    padding: 36px 36px 28px;
    border-bottom: 0.5px solid var(--border);
}

.cs-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.cs-icon {
    font-size: 24px;
    color: var(--blue);
    opacity: 0.8;
    flex-shrink: 0;
}

.cs-sector-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.8;
}

.cs-featured-header h3 {
    font-family: var(--sans);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.015em;
    line-height: 1.3;
    margin-bottom: 14px;
}

.cs-summary {
    font-size: 14.5px;
    color: #444;
    line-height: 1.8;
    max-width: 700px;
}

.cs-featured-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
}

.cs-col {
    padding: 30px 36px;
}

.cs-col:first-child {
    border-right: 0.5px solid var(--border);
}

.cs-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-col-label i {
    font-size: 11px;
    color: var(--blue);
    opacity: 0.7;
}

.cs-col p {
    font-size: 13.5px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 14px;
}

.cs-col p:last-child { margin-bottom: 0; }

.cs-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-bottom: 0.5px solid var(--border);
    background: var(--off-white);
}

.cs-outcome {
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.cs-outcome:nth-child(2n) { border-right: none; }
.cs-outcome:nth-last-child(-n+2) { border-bottom: none; }

.cs-outcome i {
    color: #27AE60;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-outcome span {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.cs-caps {
    padding: 16px 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cs-cap-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    margin-right: 4px;
    white-space: nowrap;
}

.cs-cap-tag {
    font-size: 11.5px;
    color: var(--blue);
    background: rgba(21, 96, 160, 0.07);
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

/* =============================================================================
   WORK – Case study card grid
   ============================================================================= */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.cs-card {
    padding: 28px 26px;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    background: #fff;
    transition: box-shadow 0.2s var(--ease);
}

.cs-card:hover {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.cs-card-icon {
    font-size: 24px;
    color: var(--blue);
    opacity: 0.75;
    margin-bottom: 12px;
    display: block;
}

.cs-card-sector {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.cs-card h4 {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    line-height: 1.35;
    margin-bottom: 14px;
}

.cs-card p {
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}

.cs-card-result {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    border-top: 0.5px solid var(--border);
    padding-top: 14px;
    margin-top: 4px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.cs-card-result i {
    color: var(--blue);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

.cs-card .cs-caps {
    padding: 12px 0 0;
    margin-top: 4px;
}

/* =============================================================================
   WORK – Confidentiality note
   ============================================================================= */
.confidentiality-note {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    max-width: 760px;
}

.conf-icon {
    font-size: 32px;
    color: var(--blue);
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 4px;
}

.confidentiality-note h3 {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.confidentiality-note p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.confidentiality-note p:last-child { margin-bottom: 0; }

/* =============================================================================
   WORK – Step header adjustment for icon
   ============================================================================= */
.step-header {
    padding: 32px 36px 28px;
    border-bottom: 0.5px solid var(--border);
    background: #fff;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: start;
    gap: 0;
}

.step-header-text { padding-top: 0; }

/* =============================================================================
   Responsive – work page
   ============================================================================= */
@media (max-width: 1024px) {
    .work-intro-grid { grid-template-columns: 1fr 240px; gap: 48px; }
    .cs-featured-body { grid-template-columns: 1fr; }
    .cs-col:first-child { border-right: none; border-bottom: 0.5px solid var(--border); }
}

@media (max-width: 768px) {
    .work-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .cs-grid { grid-template-columns: 1fr; }
    .cs-featured-header { padding: 24px 24px 20px; }
    .cs-col { padding: 22px 24px; }
    .cs-caps { padding: 14px 24px; }
    .cs-outcomes { grid-template-columns: 1fr; }
    .cs-outcome { border-right: none; }
    .cs-outcome:nth-last-child(-n+2) { border-bottom: 0.5px solid var(--border); }
    .cs-outcome:last-child { border-bottom: none; }
    .confidentiality-note { flex-direction: column; gap: 16px; }
}

/* =============================================================================
   PRIVACY POLICY
   ============================================================================= */
.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 72px;
    align-items: start;
}

/* --- Main content --- */
.privacy-main {
    max-width: 680px;
}

.policy-block {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 0.5px solid var(--border);
}

.policy-block:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.policy-block h2 {
    font-size: clamp(18px, 2.2vw, 26px);
    margin-bottom: 18px;
    padding-top: 0;
}

.policy-block h3 {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0;
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-block h3 i {
    color: var(--blue);
    font-size: 13px;
    opacity: 0.75;
}

.policy-block p {
    font-size: 14.5px;
    color: #333;
    line-height: 1.85;
    margin-bottom: 16px;
}

.policy-block p:last-child { margin-bottom: 0; }

.policy-block strong {
    font-weight: 600;
    color: #1A1A1A;
}

.policy-list {
    margin: 12px 0 16px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 1px;
    background: var(--blue);
}

/* Rights list variant */
.policy-rights li {
    padding-left: 0;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-rights li:first-child { border-top: 0.5px solid var(--border); }
.policy-rights li::before { display: none; }

.rights-label {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 7px;
}

.rights-label i {
    color: var(--blue);
    font-size: 11px;
    width: 13px;
    opacity: 0.75;
}

/* Cookie table */
.policy-table-wrapper {
    margin: 16px 0 20px;
    overflow-x: auto;
    border: 0.5px solid var(--border);
    border-radius: 4px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.policy-table thead {
    background: var(--off-white);
    border-bottom: 0.5px solid var(--border);
}

.policy-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.policy-table td {
    padding: 12px 16px;
    color: #333;
    line-height: 1.6;
    border-bottom: 0.5px solid var(--border);
    vertical-align: top;
}

.policy-table tr:last-child td { border-bottom: none; }

.policy-table code {
    font-size: 12px;
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 2px;
    font-family: monospace;
}

/* Contact box */
.policy-contact-box {
    background: var(--off-white);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.policy-contact-box p {
    font-size: 13.5px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.policy-contact-box i {
    color: var(--blue);
    font-size: 12px;
    opacity: 0.75;
    width: 14px;
}

.policy-contact-box a {
    color: var(--blue);
}

.policy-contact-box a:hover {
    text-decoration: underline;
}

/* Last updated */
.policy-last-updated {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 0;
}

.policy-last-updated i {
    color: #bbb;
    font-size: 14px;
}

.policy-last-updated p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

/* --- Sidebar --- */
.privacy-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-nav-block,
.privacy-summary-block,
.privacy-contact-block {
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 20px;
}

.privacy-nav-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.privacy-nav-title i {
    font-size: 11px;
    color: var(--blue);
    opacity: 0.7;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.privacy-nav li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    padding: 7px 0;
    border-bottom: 0.5px solid var(--border);
    transition: color 0.2s;
}

.privacy-nav li:last-child a { border-bottom: none; }

.privacy-nav li a:hover { color: var(--blue); }

.privacy-nav i {
    font-size: 9px;
    color: var(--blue);
    opacity: 0.5;
}

.privacy-summary-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.privacy-summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.privacy-summary-list i {
    color: #27AE60;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-contact-block p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}

.privacy-contact-btn {
    display: block;
    text-align: center;
    font-size: 13px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .privacy-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .privacy-contact-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .privacy-sidebar {
        grid-template-columns: 1fr;
    }
    .privacy-contact-block {
        grid-column: auto;
    }
}
