/* ArgumentWerk — wild-horse-988.css */
/* last edited manually – some props grouped by feel, not alphabet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* ============================================================
   TOKENS / RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #31343B;
    --accent: #77A9B4;
    --accent-dk: #6A98A2;
    --grey-bg: #F0F5F8;
    --white: #ffffff;
    --body-txt: #5A6168;
    --muted: #8A9097;
    --hairline: #E3E8EC;
    --gold: #F2BE1F;
    --on-dark: #C9CDD2;
    --radius-sm: 2px;
    --container: 1200px;
    --nav-h: 74px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Open Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-txt);
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.txt-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mt-24 {
    margin-top: 24px;
}

/* eyebrow label */
.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 12px;
}

.eyebrow::after {
    content: " —";
}

/* standard CTA button */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.btn:hover {
    background: var(--accent-dk);
}

.btn-dark {
    background: var(--ink);
}

.btn-dark:hover {
    background: #23262d;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* section header unit */
.section-hdr {
    margin-bottom: 48px;
}

.section-hdr h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-hdr p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--body-txt);
    max-width: 560px;
}

.section-hdr.two-col {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.section-hdr.two-col .hdr-left {
    flex: 0 0 auto;
    max-width: 440px;
}

.section-hdr.two-col .hdr-right {
    flex: 1;
    padding-top: 56px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-head {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--ink);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.site-head .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .wordmark {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3px;
}

/* Hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all .25s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Off-canvas nav */
.offcanvas {
    position: fixed;
    top: var(--nav-h);
    right: -300px;
    width: 280px;
    height: calc(100vh - var(--nav-h));
    background: var(--ink);
    transition: right .3s ease;
    z-index: 998;
    padding: 32px 24px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.offcanvas.open {
    right: 0;
}

.offcanvas a {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color .2s;
}

.offcanvas a:hover {
    color: var(--accent);
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 997;
}

.overlay.open {
    display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../media/hero.webp');
    background-size: cover;
    background-position: center;
    filter: saturate(0.35) brightness(0.72);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(49, 52, 59, .32);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 32px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 18px;
    display: block;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    max-width: 720px;
    margin-bottom: 32px;
}

.hero h1 span {
    color: var(--accent);
}

/* ============================================================
   PLATFORM STRIP  (replaces logo strip)
   ============================================================ */
.platform-strip {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--hairline);
}

.platform-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.65;
}

.platform-item i {
    font-size: 1.5rem;
}

/* ============================================================
   WHY SECTION  — 4 course cards on grey
   ============================================================ */
.why {
    background: var(--grey-bg);
    padding: 96px 0;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.svc-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: saturate(0.7);
}

.svc-card__body {
    padding: 24px 20px 28px;
}

.svc-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.svc-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--body-txt);
    line-height: 1.4;
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   ABOUT — 50/50 split
   ============================================================ */
.about-split {
    display: flex;
    min-height: 520px;
}

.about-split .img-half {
    flex: 1;
    background-image: url('../media/about.webp');
    background-size: cover;
    background-position: center;
    filter: saturate(0.75);
    min-height: 440px;
}

.about-split .dark-panel {
    flex: 1;
    background: var(--ink);
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-split .dark-panel .eyebrow {
    color: var(--accent);
}

.about-split .dark-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-split .dark-panel p {
    color: var(--on-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-split .dark-panel .btn {
    margin-top: 8px;
}

/* ============================================================
   TESTIMONIAL FEATURE
   ============================================================ */
.testimonials {
    padding: 96px 0;
    background: var(--white);
}

.testimonials .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testi-left {
    position: relative;
}

.testi-ghost {
    position: absolute;
    inset: 0;
    background-image: url('../media/testi-ghost.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    border-radius: 4px;
}

.testi-left .section-hdr {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.testi-left .section-hdr h2 {
    max-width: 380px;
}

.testi-card {
    position: relative;
    border: 2px solid var(--accent);
    border-radius: 4px;
    padding: 36px 36px 48px;
    background: var(--white);
}

.quote-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 52px;
    height: 52px;
    background: var(--ink);
    border-radius: 0 4px 0 52px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px 10px;
}

.quote-badge i {
    color: var(--accent);
    font-size: 1rem;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testi-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.testi-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 28px;
}

.testi-tail {
    position: absolute;
    bottom: -18px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 0px solid transparent;
    border-top: 18px solid var(--accent);
}

.testi-author {
    position: absolute;
    bottom: -52px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
}

.testi-meta {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

/* ============================================================
   REVIEW CAROUSEL
   ============================================================ */
.reviews {
    background: var(--grey-bg);
    padding: 104px 0;
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 56px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .35s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 28px 28px 56px;
    position: relative;
}

.review-card .big-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: .3;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.review-stars {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-bottom: 12px;
}

.review-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.review-verified {
    font-size: 0.7rem;
    color: var(--muted);
    margin-left: 6px;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--body-txt);
    font-style: italic;
}

.review-glogo {
    position: absolute;
    bottom: 18px;
    right: 18px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.review-tail {
    position: absolute;
    bottom: -14px;
    left: 28px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 0 solid transparent;
    border-top: 14px solid var(--hairline);
}

.review-footer {
    position: absolute;
    bottom: -42px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-monogram {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.review-id .rname {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.review-id .rdate {
    font-size: 0.72rem;
    color: var(--muted);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--hairline);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all .2s;
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 56px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hairline);
    cursor: pointer;
    transition: background .2s;
}

.carousel-dots span.active {
    background: var(--accent);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: 96px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.price-card {
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    transition: box-shadow .2s;
}

.price-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.price-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
}

.price-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.price-amount sup {
    font-size: 1.1rem;
    vertical-align: super;
}

.price-period {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 28px;
    margin-top: 4px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--body-txt);
}

.price-features .check-icon {
    flex-shrink: 0;
}

/* ============================================================
   CONTACT  (grey bg)
   ============================================================ */
.contact-sect {
    background: var(--grey-bg);
    padding: 96px 0;
}

.contact-sect .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.15;
}

.contact-info .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-tile {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-detail .value {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
}

.contact-halftone {
    position: relative;
}

.contact-halftone::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.12;
    pointer-events: none;
}

/* form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 40px 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
    background: var(--ink);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.site-foot::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: 320px;
    height: 260px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160' fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Crect x='10' y='80' width='50' height='70'/%3E%3Crect x='70' y='50' width='60' height='100'/%3E%3Crect x='140' y='65' width='50' height='85'/%3E%3Crect x='85' y='30' width='30' height='25'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
}

.foot-brand .logo-wrap {
    margin-bottom: 20px;
}

.foot-brand p {
    color: var(--on-dark);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 280px;
}

.foot-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.foot-icon-tile {
    width: 34px;
    height: 34px;
    background: var(--accent);
    color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.foot-contact-row span {
    color: var(--on-dark);
    font-size: 0.85rem;
    line-height: 1.5;
}

.foot-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.foot-col h4::after {
    content: " —";
    color: var(--accent);
}

.foot-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.foot-col ul li a {
    color: var(--muted);
    font-size: 0.87rem;
    transition: color .2s;
}

.foot-col ul li a:hover {
    color: var(--accent);
}

.foot-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.foot-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    transition: all .2s;
}

.foot-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.foot-bottom {
    background: rgba(0, 0, 0, .18);
    margin-top: 56px;
    padding: 18px 0;
}

.foot-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.foot-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
}

.foot-bottom a {
    color: var(--muted);
    font-size: 0.8rem;
    transition: color .2s;
}

.foot-bottom a:hover {
    color: var(--accent);
}

.foot-bottom-links {
    display: flex;
    gap: 20px;
}

/* ============================================================
   COOKIES GDPR BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 3px solid var(--accent);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    color: var(--on-dark);
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 700px;
}

.cookie-banner p a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ============================================================
   PAGE-SPECIFIC: ABOUT / INNER PAGES
   ============================================================ */
.page-hero {
    background: var(--ink);
    padding: 72px 0 60px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--on-dark);
    font-size: 1.05rem;
    max-width: 540px;
}

.content-section {
    padding: 80px 0;
}

.content-section.bg-grey {
    background: var(--grey-bg);
}

.prose h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin: 40px 0 16px;
    line-height: 1.2;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 10px;
}

.prose p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.prose ul,
.prose ol {
    margin: 12px 0 20px 0;
    padding-left: 24px;
}

.prose ul li,
.prose ol li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
}

/* values grid on about page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.value-item {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 28px 24px;
}

.value-item i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--body-txt);
    line-height: 1.6;
}

/* team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 28px 24px;
    text-align: center;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--body-txt);
    margin-top: 12px;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split .dark-panel {
        padding: 48px 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 560px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .testimonials .container {
        grid-template-columns: 1fr;
    }

    .contact-sect .container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-split {
        flex-direction: column;
    }

    .about-split .img-half {
        min-height: 280px;
    }

    .section-hdr.two-col {
        flex-direction: column;
        gap: 16px;
    }

    .section-hdr.two-col .hdr-right {
        padding-top: 0;
    }

    .cards-row {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
    }

    .foot-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* old hero v1 – removed, keeping comment as breadcrumb */
/* .hero-v1 { height: 900px; } */

/* TODO: fix mobile nav z-index on sub-pages */