:root {
            /* ROLE-BASED COLOURS FOR THIS TEMPLATE */
            --primary:      #6E421D;   /* Brown */
            --secondary:    #D0DB2A;   /* Green */
            --background:   #f5f7fa;   /* Light grey â page background */
            --neutral:      #777c85;   /* Secondary text, muted labels */
            --text-main:    #1e1f22;   /* Main body text */

            --card-bg:      #ffffff;   /* Cards, forms, panels */
            --card-border:  #c5ccd6;   /* Subtle borders */
            --hero-overlay: rgba(0,0,0,0.55);
            --shape-soft:   rgba(43,179,175,0.10);  /* geometric shapes */
            --shape-strong: rgba(16,19,27,0.06);

            --container-width: 1120px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Poppins", sans-serif;
            background: var(--background);
            color: var(--text-main);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: 8px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 70px 0;
            position: relative;
        }

        .section-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-sub {
            color: var(--neutral);
            margin-bottom: 28px;
            max-width: 640px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            background: var(--secondary);
            color: var(--primary);
        }

        .btn-primary:hover {
            filter: brightness(0.95);
        }

        /* ====================================================== */
        /* GEOMETRIC BACKGROUND SHAPES                           */
        /* ====================================================== */
        .section--with-shapes::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, var(--shape-soft) 0, transparent 50%),
                radial-gradient(circle at bottom right, var(--shape-strong) 0, transparent 55%);
            pointer-events: none;
            z-index: -1;
        }

        /* ====================================================== */
        /* HEADER                                                 */
        /* ====================================================== */
        #header {
            background: var(--secondary);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .header-inner {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            gap: 20px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .logo-text {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .nav {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .nav a {
            font-size: 14px;
            font-weight: 500;
            color: #ffffff;
        }

        .nav a:hover {
            color: var(--primary);
        }

        /* ====================================================== */
        /* HERO â FULL BACKGROUND VIDEO LAYOUT                    */
        /* ====================================================== */

        #hero {
            position: relative;
            height: 680px;
            overflow: hidden;
            color: #ffffff;
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        #hero-video {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Dark overlay */
        #hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.48);
            z-index: 2;
        }

        /* Diagonal colour overlay */
        #hero::before {
            content: "";
            position: absolute;
            top: -25%;
            right: -45%;
            width: 90%;
            height: 170%;
            background: linear-gradient(
                135deg,
                rgba(110,66,29,0.22),
                rgba(110,66,29,0.06)
            );
            transform: skewX(-18deg);
            z-index: 3;
        }

        /* Text block */
.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 560px;
    margin-left: 200px;
}

@media (max-width: 900px) {
    .hero-inner {
        margin-left: 0;
        margin-top: 20px; /* move here */
    }
}
        

        .hero-kicker {
            margin-bottom: 18px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 13px;
        }

        .hero-title {
            margin-bottom: 22px;
            font-size: 40px;
            line-height: 1.2;
        }

        .hero-sub {
            margin-bottom: 32px;
            font-size: 16px;
            max-width: 520px;
line-height: 1.75; /* improves readability */
        }

        #hero .btn-primary {
            margin-top: 16px;
        }

        /* ====================================================== */
        /* ABOUT â ALTERNATING BLOCKS                            */
        /* ====================================================== */

        #about .alt-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;   /* text left, image right */
            gap: 40px;
            align-items: center;
        }

        /* LEFT: TEXT BOX */
        .about-text-block {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 32px 28px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.04);
            border-top: 6px solid var(--primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .about-text-block p {
            margin-top: 20px;
            margin-bottom: 25px;
            line-height: 1.65;
        }

        .about-text-block p:first-child {
            margin-top: 0;
        }

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

        /* RIGHT: IMAGE DIRECTLY ON GREY BACKGROUND */
        .about-image-box {
            background: transparent;
            padding: 0;
            box-shadow: none;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-box img {
            width: 100%;
            max-width: 520px;
            border-radius: 12px;
            object-fit: cover;
        }

        /* ====================================================== */
        /* SERVICES â 4 CORE SERVICES                             */
        /* ====================================================== */
        #services {
            background: #ffffff;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 24px;
        }

        .package-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 22px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
        }

        .package-name {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .package-name::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .package-tagline {
            margin-top: 42px;
            font-size: 15px;
            color: var(--neutral);
            font-style: italic;
            margin-bottom: 12px;
        }

        .package-list {
            list-style: none;
            padding-left: 1.8em;
            margin-top: 18px;
            margin-bottom: 26px;
            font-size: 14px;
        }

        .package-list li {
            position: relative;
            margin-bottom: 10px;
            text-indent: -1.2em;
        }

        .package-list li::before {
		content: "\2022";
            position: absolute;
            left: -1.2em;
            top: 0.1em;
            color: var(--primary);
            font-weight: 700;
        }

        .package-note {
            font-size: 14px;
            color: var(--neutral);
        }

        /* ====================================================== */
        /* HOW WE DIGITISE â TECHNICAL BUT HUMAN                  */
        /* ====================================================== */
        #how-we-digitise .tech-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: flex-start;
        }

        #how-we-digitise h3 {
            margin-bottom: 12px;
            font-size: 20px;
            font-weight: 600;
        }

        #how-we-digitise p {
            font-size: 15px;
            line-height: 1.65;
            margin-bottom: 14px;
        }

        /* ====================================================== */
        /* PRICING â TWO COLUMN LAYOUT WITH PRICE CARDS           */
        /* ====================================================== */
        #pricing {
            background: var(--background);
        }

        .pricing-layout {
            display: grid;
            grid-template-columns: 0.55fr 1.45fr;
            gap: 40px;
            align-items: flex-start;
        }

        .pricing-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 10px;
        }
/* ====================================================== */
/* PRICING â IMAGE STACK                                  */
/* ====================================================== */

.pricing-image-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;                    /* space between the images */
}

.pricing-image-stack img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}


        .pricing-column {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 20px 22px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
            font-size: 15px;
        }

        .pricing-card-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 6px;
        }

        .pricing-card-sub {
            font-size: 14px;
            color: var(--neutral);
            margin-bottom: 12px;
        }

        .pricing-lines {
            margin-bottom: 10px;
        }

        .pricing-line {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .pricing-line strong {
            font-weight: 600;
        }

        .pricing-hint {
            font-size: 13px;
            color: var(--neutral);
            margin-top: 6px;
        }

        .pricing-footnote {
            font-size: 13px;
            color: var(--neutral);
            margin-top: 10px;
            line-height: 1.6;
        }

        .pricing-footnote span {
            font-weight: 600;
        }

        /* ====================================================== */
        /* INDUSTRIES GRID                                       */
        /* ====================================================== */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 18px;
            margin-top: 10px;
        }

        .industry-pill {
            background: var(--card-bg);
            border-radius: 999px;
            padding: 10px 14px;
            font-size: 14px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0,0,0,0.04);
            border: 1px solid var(--card-border);
        }

        /* ====================================================== */
        /* TESTIMONIALS                                          */
        /* ====================================================== */
        #testimonials {
            background: #ffffff;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
        }

        .case-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
            font-size: 14px;
        }

        .case-label {
            font-size: 13px;
            color: var(--neutral);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 4px;
        }

        .case-title {
            font-weight: 600;
            margin-bottom: 8px;
        }

        .case-quote {
            font-style: italic;
            margin-bottom: 10px;
        }

        .case-name {
            font-weight: 500;
            color: var(--text-main);
        }

        .reviews-link {
            margin-top: 24px;
            font-size: 14px;
            color: var(--neutral);
        }

        .reviews-link a {
            color: var(--primary);
            text-decoration: underline;
        }

        /* ====================================================== */
        /* CTA BAND                                              */
        /* ====================================================== */
      #cta {
     background: rgba(208,219,42,0.55); /* softer version of your green */
    color: #1e1f22; /* dark text for contrast */
}


        .cta-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
            justify-content: space-between;
        }

        .cta-text {
            max-width: 520px;
        }

        .cta-sub {
            font-size: 14px;
            color: #777c85;
            margin-top: 4px;
        }

        /* ====================================================== */
        /* CONTACT                                                */
        /* ====================================================== */
        #contact .contact-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 40px;
        }

        .contact-details p {
            margin-bottom: 18px;
        }

        .contact-image {
            max-width: 360px;
            margin-top: 16px;
        }

        form {
            background: var(--card-bg);
            padding: 22px;
            border-radius: 10px;
            box-shadow: 0 10px 24px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
        }

        input,
        textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 16px;
            border-radius: 6px;
            border: 1px solid var(--card-border);
            font-size: 14px;
            font-family: "Poppins", sans-serif;
        }

        textarea {
            resize: vertical;
        }

        /* ====================================================== */
        /* FOOTER                                                */
        /* ====================================================== */
        #footer {
            background: var(--secondary);
            color: var(--neutral);
            padding: 24px 0;
            text-align: center;
            margin-top: 40px;
            font-size: 14px;
        }

        #footer a {
            color: var(--primary);
        }

        /* ====================================================== */
        /* COLOUR PALETTE (REFERENCE ONLY)                       */
        /* ====================================================== */
        #colour-palette {
            padding: 40px 0 70px 0;
            background: var(--background);
        }

        .colour-guide-inner {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .colour-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 18px;
        }

        .colour-block {
            flex: 1 1 160px;
            padding: 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            color: #ffffff;
        }

        .colour-block span {
            display: block;
            font-weight: 400;
            font-size: 13px;
            margin-top: 4px;
            opacity: 0.95;
        }

        /* ====================================================== */
        /* RESPONSIVE                                             */
        /* ====================================================== */
        @media (max-width: 900px) {

#contact .contact-grid {
    grid-template-columns: 1fr !important;
}

form {
    width: 100%;
}

.contact-details {
    width: 100%;
}

            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav {
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            #hero {
                padding: 100px 0 80px 0;
                height: auto;
            }

            .hero-inner {
                margin-left: 0;
            }

            #about .alt-grid,
            .packages-grid,
            #how-we-digitise .tech-grid,
            .pricing-layout,
            .contact-grid,
            .cases-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .packages-grid {
                gap: 18px;
            }

            .contact-image {
                max-width: 100%;
            }

            .cta-inner {
                align-items: flex-start;
            }

            .pricing-image img {
                height: 260px;
            }

.pricing-image-stack img {
    max-height: 240px;            /* prevents images becoming too tall */
    object-fit: cover;
}

        }

.btn-nav {
    padding: 8px 16px;
    background: var(--primary);
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    filter: brightness(1.1);
    color: #ffffff !important;
}

#about,
#services,
#pricing,
#testimonials,
#contact {
    scroll-margin-top: 40px;
}
.reviews-link {
    font-size: 18px;      /* bigger text */
    font-weight: 600;     /* bold */
    margin-top: 40px;     /* more spacing */
    text-align: center;   /* centres the line */
}

.reviews-link a {
    color: var(--primary);
    font-size: 18px;      /* match parent size */
    font-weight: 700;     /* heavier for emphasis */
    text-decoration: underline;
}

/* ====================================================== */
/* V3 MULTI-PAGE ADDITIONS                                */
/* Uses the existing Phoenix colours, spacing and cards.  */
/* ====================================================== */
.nav-item { position: relative; }
.nav-dropdown { position: absolute; top: 100%; left: -12px; min-width: 230px; padding: 10px 0; background: #fff; border: 1px solid var(--card-border); border-radius: 8px; box-shadow: 0 12px 28px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 8px 14px; color: var(--text-main); white-space: nowrap; }
.nav-dropdown a:hover, .nav-dropdown a:focus { color: var(--primary); background: var(--background); }
.nav-toggle { display: none; }
.mobile-menu { display: none; }
/* ====================================================== */
/* SERVICE PAGE HERO â SUBTLE BROWN WOVEN TEXTURE         */
/* CSS-only texture: no additional image or dependency.   */
/* ====================================================== */
.page-hero {
  padding: 74px 0;
  background-color: #6e421d;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0, rgba(255,255,255,.022) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.025) 0, rgba(0,0,0,.025) 1px, transparent 1px, transparent 5px),
    linear-gradient(125deg, #4f2b12 0%, #6e421d 52%, #98683f 100%);
  color: #fff;
}
.page-hero h1 { max-width: 800px; font-size: clamp(34px, 5vw, 52px); line-height: 1.15; margin-bottom: 18px; }
.page-hero p { max-width: 760px; font-size: 18px; }
.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: start; }
.content-grid > aside > img { width: 100%; height: auto; object-fit: contain; }
.content-card { background: var(--card-bg); padding: 28px; border-radius: 10px; border-top: 5px solid var(--primary); box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.content-card h2, .content-card h3 { margin: 0 0 14px; }
.content-card > h2:not(:first-child), .content-card > h3:not(:first-child) { margin-top: 28px; }
.content-card p + p, .content-card ul + p { margin-top: 16px; }
.content-card ul { margin: 14px 0 0 22px; }
.content-card li { margin-bottom: 8px; }
.service-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.service-link { display: inline-block; color: var(--primary); font-weight: 600; text-decoration: underline; }
.related-grid, .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.related-card, .blog-card { background: #fff; padding: 22px; border-radius: 10px; border-top: 5px solid var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,.05); }
.related-card h3, .blog-card h2 { margin-bottom: 10px; }
.related-card h3 a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
/* Last amended: 31/08/2026 — three delivery choices; personal handover and collection are prioritised. */
.delivery-options-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.delivery-safety-note { max-width: 820px; margin: 28px auto 0; padding: 16px 20px; background: #fff; border-left: 5px solid var(--primary); border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,.05); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 28px; }
.process-card, .faq-item { background: #fff; padding: 24px; border-radius: 10px; border-top: 5px solid var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,.05); }
.process-card h3, .faq-item h2 { margin-bottom: 10px; }
.faq-list { display: grid; gap: 20px; max-width: 940px; margin: 30px auto 0; }
.faq-item p + p { margin-top: 12px; }
.breadcrumb { font-size: 14px; margin-bottom: 18px; opacity: .9; }
.breadcrumb a { text-decoration: underline; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 2000; background: #fff; color: #000; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

/* ====================================================== */
/* COOKIE CONSENT                                        */
/* Optional Google advertising cookies remain disabled   */
/* until the visitor actively accepts them.               */
/* ====================================================== */
.cookie-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: linear-gradient(125deg, #4f2b12, #6e421d 60%, #855630);
  color: #fff;
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}
.cookie-panel[hidden] { display: none; }
.cookie-panel h2 { margin-bottom: 7px; font-size: 20px; }
.cookie-panel p { font-size: 14px; line-height: 1.55; }
.cookie-panel a { color: #fff; text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.cookie-button {
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 9px 15px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cookie-button--accept { background: var(--secondary); border-color: var(--secondary); color: var(--primary); }
.cookie-settings { border: 0; padding: 0; background: transparent; color: var(--primary); font: inherit; text-decoration: underline; cursor: pointer; }

.footer-business { font-weight: 600; color: var(--primary); }
.footer-contact { margin: 5px 0; }

@media (prefers-reduced-motion: reduce) {
  #hero-video { display: none; }
  #hero { background: center / cover no-repeat url("../../images/stack5.png"); }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-help { font-size: 13px; color: var(--neutral); margin: -9px 0 15px; }
@media (max-width: 1050px) {
  .section { padding: 52px 0; }
  .header-inner { flex-direction: row; align-items: center; padding: 10px 16px; min-height: 66px; }
  .header-left { flex: 1 1 auto; min-width: 0; }
  .header-logo { height: 42px; flex: 0 0 auto; }
  .logo-text { font-size: 14px; line-height: 1.2; letter-spacing: .02em; }
  .nav-desktop { display: none; }
  .mobile-menu { display: block; position: relative; flex: 0 0 auto; }
  .mobile-menu summary { list-style: none; cursor: pointer; padding: 8px 13px; border-radius: 6px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 600; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu[open] summary { filter: brightness(1.08); }
  .mobile-nav-panel { position: absolute; top: calc(100% + 9px); right: 0; width: min(310px, calc(100vw - 32px)); max-height: calc(100vh - 92px); overflow-y: auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: #fff; border: 1px solid var(--card-border); border-radius: 8px; box-shadow: 0 14px 30px rgba(0,0,0,.16); }
  .mobile-nav-panel a { display: block; padding: 9px 10px; color: var(--text-main); font-size: 14px; border-radius: 5px; }
  .mobile-nav-panel a:hover, .mobile-nav-panel a:focus { color: var(--primary); background: var(--background); }
  .mobile-nav-label { padding: 10px 10px 3px; color: var(--neutral); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-nav-service { padding-left: 22px !important; }
  .page-hero { padding: 52px 0; }
  .page-hero p { font-size: 16px; }
  .content-grid, .related-grid, .blog-grid, .process-grid, .delivery-options-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { gap: 26px; }
  .content-grid > aside { width: 100%; max-width: 700px; min-width: 0; margin: 0 auto; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 42px 0; }
  .header-inner { gap: 10px; }
  .header-logo { height: 36px; }
  .logo-text { font-size: 12px; }
  .page-hero { padding: 42px 0; }
  .page-hero h1 { font-size: 32px; }
  .content-card, .related-card, .blog-card { padding: 20px; }
  .process-grid, .delivery-options-grid { grid-template-columns: 1fr; }
  .process-card, .faq-item { padding: 20px; }
}

