/* ============================================================
   WP Maintenance UK - WordPress Care Plans
   style.css
   Font: DM Sans | Palette: Navy #1a2b4a | Copper #c07a3a
   ============================================================ */

/* ----- RESET & VARIABLES ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #1a2b4a;
    --navy-dark:   #111e35;
    --navy-mid:    #243660;
    --copper:      #c07a3a;
    --copper-dark: #a86528;
    --copper-light:#f5e9db;
    --white:       #ffffff;
    --off-white:   #f8f7f4;
    --light-grey:  #f2f4f7;
    --mid-grey:    #e2e6ed;
    --text-dark:   #1a2b4a;
    --text-body:   #374151;
    --text-muted:  #6b7280;
    --success:     #16a34a;
    --error:       #dc2626;
    --radius:      10px;
    --radius-lg:   16px;
    --shadow-sm:   0 2px 8px rgba(26,43,74,.08);
    --shadow-md:   0 6px 24px rgba(26,43,74,.12);
    --shadow-lg:   0 16px 48px rgba(26,43,74,.16);
    --transition:  0.25s ease;
    --font:        'DM Sans', sans-serif;
    --max-w:       1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- UTILITIES ------------------------------------------ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-light  { background: var(--light-grey); }
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy); color: var(--white); }
.section-copper-light { background: var(--copper-light); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header-light h2,
.section-header-light .section-intro { color: var(--white); }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 10px;
}
.label-copper { color: var(--copper); }

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header-light h2 { color: var(--white); }

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.section-header-light .section-intro { color: rgba(255,255,255,0.8); }

/* ----- BUTTONS -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}
.btn-primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }

.btn-copper {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}
.btn-copper:hover { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-full { width: 100%; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ----- NAVIGATION ----------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--mid-grey);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar { padding: 0; }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}
.nav-links a:hover { background: var(--light-grey); color: var(--navy); }
.nav-links .nav-blog {
    background: var(--navy);
    color: var(--white);
    padding: 7px 16px;
}
.nav-links .nav-blog:hover { background: var(--copper); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ----- HERO ----------------------------------------------- */
.hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--copper);
}
.shape-1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: 5%; }
.shape-3 { width: 200px; height: 200px; top: 50%; right: 20%; opacity: 0.04; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
    position: relative;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb-nav a:hover { color: var(--copper); }
.breadcrumb-nav span[aria-current] { color: rgba(255,255,255,0.9); }

.hero-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}
.form-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-card-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ----- FORMS ---------------------------------------------- */
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}
.form-group label span { color: var(--copper); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(192,122,58,0.15);
}
.form-group textarea { resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-consent {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}
.form-consent a { color: var(--copper); text-decoration: underline; }

.form-success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: var(--success);
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.form-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: var(--error);
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.form-error a { color: var(--error); text-decoration: underline; }

/* ----- TWO COLUMN GRID ------------------------------------ */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.two-col-reversed { direction: rtl; }
.two-col-reversed > * { direction: ltr; }

.content-block p {
    margin-bottom: 16px;
    color: var(--text-body);
    line-height: 1.75;
}
.content-block p:last-child { margin-bottom: 24px; }
.content-block h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Care Pillars */
.care-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pillar-card {
    background: var(--white);
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all var(--transition);
}
.pillar-card:hover { border-color: var(--copper); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--copper-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--copper);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ----- PLANS GRID ----------------------------------------- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.plan-card {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.plan-card:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-4px); }
.plan-card-featured {
    background: var(--white);
    border-color: var(--copper);
    color: var(--text-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transform: translateY(-8px);
}
.plan-card-featured:hover { transform: translateY(-12px); }

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--copper);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 8px;
}
.plan-card-featured .plan-tier { color: var(--copper); }

.plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.plan-card-featured .plan-name { color: var(--navy); }

.plan-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}
.plan-card-featured .plan-desc { color: var(--text-muted); }

.plan-features {
    flex: 1;
    margin-bottom: 28px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.plan-card-featured .plan-features li { color: var(--text-body); border-bottom-color: var(--mid-grey); }

.plan-features .feature-na { opacity: 0.4; }

.tick, .cross {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.tick { background: rgba(22,163,74,0.2); color: #16a34a; }
.tick::after { content: '✓'; }
.cross { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.cross::after { content: '×'; }
.plan-card-featured .cross { background: var(--mid-grey); color: var(--text-muted); }

.plan-cta { margin-top: auto; }

.plans-note {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.plans-note a { color: var(--copper); text-decoration: underline; }

/* ----- COMPARISON TABLE ----------------------------------- */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}
.comparison-table th {
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table .th-featured { background: var(--copper); }

.comparison-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--mid-grey);
    color: var(--text-body);
    text-align: center;
    vertical-align: middle;
}
.comparison-table td:first-child { text-align: left; color: var(--text-dark); font-weight: 500; }

.comparison-table .td-featured { background: rgba(192,122,58,0.06); }
.comparison-table .row-category td {
    background: var(--light-grey);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    text-align: left;
    padding: 10px 20px;
}
.comparison-table tbody tr:hover td { background: var(--off-white); }
.comparison-table tbody tr:hover .td-featured { background: rgba(192,122,58,0.1); }

.comparison-table tfoot td {
    padding: 20px;
    border-bottom: none;
    background: var(--light-grey);
    text-align: center;
}

.tick-sm, .cross-sm {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.tick-sm { background: #dcfce7; color: #16a34a; }
.tick-sm::after { content: '✓'; }
.cross-sm { background: #fee2e2; color: #dc2626; }
.cross-sm::after { content: '×'; }

/* ----- REASONS GRID --------------------------------------- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reason-card {
    background: var(--white);
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}
.reason-card:hover { border-color: var(--copper); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reason-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--copper);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.reason-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.reason-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ----- WOOCOMMERCE SECTION -------------------------------- */
.woo-features { display: flex; flex-direction: column; gap: 24px; }
.woo-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.woo-icon {
    width: 48px;
    height: 48px;
    background: var(--copper-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    flex-shrink: 0;
}
.woo-icon svg { width: 22px; height: 22px; }
.woo-feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.woo-feature-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ----- AGENCY SECTION ------------------------------------- */
.agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.agency-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 16px;
}
.agency-content p:last-of-type { margin-bottom: 24px; }

.agency-benefits { display: flex; flex-direction: column; gap: 20px; }
.agency-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.agency-benefit:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.ab-icon {
    width: 44px;
    height: 44px;
    background: var(--copper-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    flex-shrink: 0;
}
.ab-icon svg { width: 20px; height: 20px; }
.agency-benefit h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.agency-benefit p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ----- HOW IT WORKS --------------------------------------- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}
.step-item {
    text-align: center;
    padding: 0 16px;
}
.step-num {
    width: 56px;
    height: 56px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(192,122,58,0.35);
}
.step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.step-item p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--mid-grey);
    margin-top: 27px;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    border: 5px solid transparent;
    border-left-color: var(--copper);
}

/* ----- FAQ ------------------------------------------------ */
.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--copper); }

.faq-question {
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background var(--transition);
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--copper);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item[open] .faq-question { background: var(--off-white); }
.faq-item[open] .faq-question::after { content: '+'; transform: rotate(45deg); }

.faq-answer {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--mid-grey);
}
.faq-answer p { padding-top: 16px; }

/* ----- ENQUIRY SECTION ------------------------------------ */
.enquiry-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.enquiry-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.enquiry-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.enquiry-promises {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.enquiry-promises li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.enquiry-promises li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(192,122,58,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--copper);
    flex-shrink: 0;
    font-weight: 700;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--copper);
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity var(--transition);
}
.contact-link:hover { opacity: 0.8; }
.contact-link svg { width: 18px; height: 18px; }

.enquiry-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.enquiry-form .form-group label { color: var(--navy); }

/* ----- FOOTER --------------------------------------------- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 56px;
    padding: 56px 24px 48px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer-logo {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h3 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--copper); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-tags { font-size: 0.78rem; }

/* ----- BACK TO TOP ---------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--copper-dark); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ----- RESPONSIVE ----------------------------------------- */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 24px; }
    .plan-card-featured { transform: none; }
    .plan-card-featured:hover { transform: translateY(-4px); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .step-connector { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 480px; }
    .enquiry-inner { grid-template-columns: 1fr; gap: 40px; }
    .two-col-grid { grid-template-columns: 1fr; }
    .two-col-reversed { direction: ltr; }
    .agency-grid { grid-template-columns: 1fr; }
    .care-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--mid-grey);
        padding: 16px 24px;
        gap: 6px;
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px 14px; border-radius: 8px; width: 100%; }
    .nav-toggle { display: flex; }
    .site-header { position: sticky; }

    .hero { padding: 56px 0 64px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }

    .reasons-grid { grid-template-columns: 1fr; }
    .care-pillars { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .enquiry-form-wrap { padding: 24px 20px; }

    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 1.8rem; }
    .footer-nav { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.82rem; }
    .back-to-top { bottom: 16px; right: 16px; }
}

/* ----- UK LOCATIONS GRID ---------------------------------- */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { display: flex; flex-direction: column; gap: 10px; background: var(--white); border: 1.5px solid var(--mid-grey); border-radius: var(--radius-lg); padding: 24px 20px; transition: all var(--transition); text-decoration: none; color: inherit; }
.location-card:hover { border-color: var(--copper); background: var(--copper-light, #f5e9db); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lc-icon { width: 44px; height: 44px; background: var(--light-grey); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--copper); flex-shrink: 0; }
.lc-icon svg { width: 20px; height: 20px; }
.location-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.location-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
@media (max-width: 1024px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .locations-grid { grid-template-columns: 1fr; } }

/* ----- ACCESSIBILITY -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 4px; }
