/* =========================================================
   ANDERSON DIGITAL SOLUTIONS
   COMPLETE WEBSITE STYLESHEET
   CHUNK 1 OF 6
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --navy: #102c3e;
    --navy-dark: #071a27;
    --navy-deep: #04111a;
    --navy-light: #1e455c;

    --steel: #8299a1;
    --steel-dark: #61777f;
    --steel-light: #b8c6ca;

    --charcoal: #292d30;
    --text: #40474c;
    --light-text: #69747a;

    --white: #ffffff;
    --off-white: #f7f9fa;
    --light-gray: #edf1f3;
    --border: #dbe2e5;

    --success: #24734f;
    --error: #a83d3d;

    --shadow-small:
        0 4px 16px rgba(10, 31, 44, 0.08);

    --shadow-medium:
        0 14px 40px rgba(10, 31, 44, 0.12);

    --shadow-large:
        0 24px 70px rgba(10, 31, 44, 0.18);

    --shadow-dark:
        0 30px 80px rgba(0, 0, 0, 0.35);

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 24px;
    --radius-extra-large: 34px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-width: 320px;

    background: var(--white);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

main {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--navy);
    color: var(--white);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;

    padding: 12px 18px;

    background: var(--white);
    border-radius: var(--radius-small);

    color: var(--navy);
    font-weight: 800;
    text-decoration: none;

    box-shadow: var(--shadow-medium);

    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 94px;
    padding: 10px 7%;

    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow-small);

    backdrop-filter: blur(14px);

    transition:
        min-height 0.25s ease,
        padding 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.scrolled {
    min-height: 76px;

    padding-top: 5px;
    padding-bottom: 5px;

    box-shadow:
        0 12px 30px rgba(10, 31, 44, 0.13);
}

.logo-link {
    display: flex;
    align-items: center;

    width: 360px;
    max-width: 42%;

    text-decoration: none;
}

.header-logo {
    width: 100%;
    max-width: 360px;
    height: 72px;

    object-fit: contain;
    object-position: left center;

    transition: height 0.25s ease;
}

.site-header.scrolled .header-logo {
    height: 60px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

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

.main-nav a {
    position: relative;

    color: var(--navy);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.main-nav a:not(.nav-button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    background: var(--steel);

    content: "";

    transition: width 0.2s ease;
}

.main-nav a:not(.nav-button):hover::after,
.main-nav a.active:not(.nav-button)::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--steel);
}

.nav-button {
    padding: 12px 20px;

    background: var(--navy);
    border-radius: var(--radius-small);

    color: var(--white) !important;

    box-shadow:
        0 9px 24px rgba(16, 44, 62, 0.18);
}

.nav-button:hover {
    background: var(--navy-light);
    color: var(--white) !important;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;
    padding: 10px;

    background: transparent;
    border: 0;
    border-radius: var(--radius-small);
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 3px;
    margin: 5px 0;

    background: var(--navy);
    border-radius: 20px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   GENERAL BUTTONS
========================================================= */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    min-height: 54px;
    padding: 14px 28px;

    border: 2px solid transparent;
    border-radius: var(--radius-small);

    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.hero-primary-button {
    background: var(--white);
    color: var(--navy);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-primary-button:hover {
    background: #dce7eb;

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.36);
}

.hero-primary-button span {
    font-size: 21px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.hero-primary-button:hover span {
    transform: translateX(5px);
}

.hero-secondary-button {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.42);

    color: var(--white);

    backdrop-filter: blur(8px);
}

.hero-secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}


/* =========================================================
   HOMEPAGE HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 94px);

    overflow: hidden;

    background: var(--navy-dark);
    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(130, 153, 161, 0.24),
            transparent 33%
        ),
        radial-gradient(
            circle at 16% 78%,
            rgba(30, 69, 92, 0.34),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #071822 0%,
            #0d2b3d 50%,
            #163c51 100%
        );
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85),
            transparent 95%
        );
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(5px);
    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    right: -110px;

    width: 520px;
    height: 520px;

    background:
        radial-gradient(
            circle,
            rgba(183, 203, 210, 0.13),
            transparent 68%
        );

    animation:
        glow-drift 10s ease-in-out infinite;
}

.hero-glow-two {
    bottom: -240px;
    left: -130px;

    width: 620px;
    height: 620px;

    background:
        radial-gradient(
            circle,
            rgba(83, 124, 146, 0.14),
            transparent 70%
        );

    animation:
        glow-drift 13s ease-in-out infinite reverse;
}

.hero-container {
    position: relative;
    z-index: 4;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.98fr);

    gap: 72px;
    align-items: center;

    width: min(1440px, 100%);
    min-height: calc(100vh - 165px);

    margin: auto;
    padding: 90px 7% 70px;
}

.hero-copy {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;
    padding: 9px 14px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50px;

    color: #d4e1e6;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;

    background: #b9ccd3;
    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(185, 204, 211, 0.09);

    animation:
        badge-pulse 2.2s ease-in-out infinite;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 28px;

    color: var(--white);

    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 span {
    display: block;

    margin-top: 10px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #aabfc7,
            #ffffff
        );

    background-size: 200% auto;
    background-clip: text;

    color: transparent;

    animation:
        text-shimmer 6s linear infinite;
}

.hero-description {
    max-width: 690px;
    margin-bottom: 38px;

    color: #cad8de;

    font-size: 19px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-bottom: 46px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proof-item strong {
    color: var(--white);
    font-size: 15px;
}

.proof-item span {
    color: #92aab4;
    font-size: 12px;
}

.proof-divider {
    width: 1px;
    height: 38px;

    background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 590px;
}

.visual-orbit {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.visual-orbit-one {
    width: 590px;
    height: 590px;

    animation:
        orbit-spin 28s linear infinite;
}

.visual-orbit-two {
    width: 430px;
    height: 430px;

    animation:
        orbit-spin 20s linear infinite reverse;
}

.hero-image-frame {
    position: relative;
    z-index: 3;

    width: min(100%, 590px);
    padding: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.04)
        );

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;

    box-shadow: var(--shadow-dark);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

    backdrop-filter: blur(14px);

    animation:
        hero-float 6s ease-in-out infinite;
}

.hero-mockup-image {
    width: 100%;
    height: auto;

    border-radius: 22px;

    object-fit: cover;
}

.hero-image-frame::after {
    position: absolute;
    inset: 10px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;

    content: "";

    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 220px;
    padding: 15px 17px;

    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 13px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(14px);
}

.hero-image-badge-top {
    top: 66px;
    right: -18px;

    animation:
        badge-float 5s ease-in-out infinite;
}

.hero-image-badge-bottom {
    bottom: 62px;
    left: -26px;

    animation:
        badge-float 5.8s ease-in-out infinite reverse;
}

.hero-image-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 38px;
    height: 38px;

    background: var(--navy);
    border-radius: 9px;

    color: var(--white);
    font-weight: 900;
}

.hero-image-badge strong,
.hero-image-badge span {
    display: block;
}

.hero-image-badge strong {
    color: var(--navy);
    font-size: 13px;
}

.hero-image-badge div span {
    color: #74858d;
    font-size: 10px;
}


/* =========================================================
   HERO INDUSTRY STRIP
========================================================= */

.hero-bottom-strip {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    background: rgba(5, 20, 29, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(14px);
}

.hero-bottom-strip span {
    padding: 20px 15px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    color: #9fb2ba;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.hero-bottom-strip span:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.hero-bottom-strip span:last-child {
    border-right: 0;
}


/* =========================================================
   HERO ANIMATION CLASSES
========================================================= */

.hero-animate {
    opacity: 0;

    animation:
        hero-enter 0.85s
        cubic-bezier(0.2, 0.75, 0.25, 1)
        forwards;
}

.hero-delay-1 {
    animation-delay: 0.12s;
}

.hero-delay-2 {
    animation-delay: 0.24s;
}

.hero-delay-3 {
    animation-delay: 0.36s;
}

.hero-delay-4 {
    animation-delay: 0.48s;
}


/* =========================================================
   END OF CHUNK 1
   CHUNK 2 GOES DIRECTLY UNDER THIS LINE
========================================================= */
/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section,
.process-section,
.pricing-section,
.faq-section {
    padding: 100px 8%;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 60px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--steel);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.pricing-subheading h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-size: clamp(34px, 4.5vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.section-heading p,
.pricing-subheading p {
    max-width: 700px;
    margin: auto;

    color: var(--light-text);

    font-size: 18px;
}

.light-heading h2 {
    color: var(--white);
}

.light-heading p {
    color: #d5e0e4;
}

.light-label {
    color: var(--steel-light);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(38px);

    transition:
        opacity 0.75s ease,
        transform 0.75s
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}

.stagger-group .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger-group .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.stagger-group .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.stagger-group .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.stagger-group .reveal:nth-child(6) {
    transition-delay: 0.4s;
}

.stagger-group .reveal:nth-child(7) {
    transition-delay: 0.48s;
}

.stagger-group .reveal:nth-child(8) {
    transition-delay: 0.56s;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--white);
}

.card-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.service-card {
    position: relative;

    min-height: 275px;
    padding: 34px;

    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--navy),
            var(--steel)
        );

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.service-card::after {
    position: absolute;
    right: -45px;
    bottom: -45px;

    width: 135px;
    height: 135px;

    background:
        radial-gradient(
            circle,
            rgba(130, 153, 161, 0.14),
            transparent 68%
        );

    border-radius: 50%;

    content: "";

    transition: transform 0.35s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1.7);
}

.service-card:hover {
    border-color: var(--steel-light);

    box-shadow: var(--shadow-medium);

    transform: translateY(-7px);
}

.card-number {
    margin-bottom: 42px;

    color: var(--steel);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;

    color: var(--navy);

    font-size: 23px;
    line-height: 1.2;
}

.service-card p {
    position: relative;
    z-index: 2;

    color: var(--light-text);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    position: relative;

    padding: 105px 8%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );

    color: var(--white);
}

.industries-section::before {
    position: absolute;
    top: -250px;
    right: -250px;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(130, 153, 161, 0.14),
            transparent 70%
        );

    border-radius: 50%;

    content: "";
}

.industries-section::after {
    position: absolute;
    bottom: -320px;
    left: -260px;

    width: 650px;
    height: 650px;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 50%;

    content: "";
}

.industry-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}

.industry-card {
    min-height: 310px;
    padding: 28px 24px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-medium);

    backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.24);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);

    transform: translateY(-6px);
}

.industry-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;
    margin-bottom: 26px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    color: var(--steel-light);

    font-size: 23px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.17);

    transform:
        rotate(-6deg)
        scale(1.08);
}

.industry-card h3 {
    margin-bottom: 13px;

    color: var(--white);

    font-size: 21px;
    line-height: 1.2;
}

.industry-card p {
    color: #c8d5da;

    font-size: 15px;
}


/* =========================================================
   WHY ANDERSON
========================================================= */

.why-section {
    background:
        linear-gradient(
            180deg,
            var(--off-white),
            #ffffff
        );
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    max-width: 1050px;
    margin: auto;
}

.benefit-card {
    position: relative;

    padding: 36px;

    overflow: hidden;

    background: var(--white);
    border-left: 4px solid var(--steel);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.benefit-card::after {
    position: absolute;
    top: -60px;
    right: -60px;

    width: 150px;
    height: 150px;

    background:
        radial-gradient(
            circle,
            rgba(130, 153, 161, 0.1),
            transparent 70%
        );

    border-radius: 50%;

    content: "";
}

.benefit-card:hover {
    border-color: var(--navy-light);

    box-shadow: var(--shadow-medium);

    transform: translateY(-5px);
}

.benefit-number {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 28px;

    color: var(--steel);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.benefit-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: var(--navy);

    font-size: 23px;
}

.benefit-card p {
    position: relative;
    z-index: 2;

    color: var(--light-text);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    max-width: 1100px;
    margin: auto;
}

.process-step {
    position: relative;

    padding: 38px 32px;

    overflow: hidden;

    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.process-step::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--steel),
            var(--navy)
        );

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    border-color: var(--steel-light);

    box-shadow: var(--shadow-medium);

    transform: translateY(-5px);
}

.step-number {
    display: block;

    margin-bottom: 30px;

    color: var(--steel);

    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.process-step h3 {
    margin-bottom: 14px;

    color: var(--navy);

    font-size: 24px;
}

.process-step p {
    color: var(--light-text);
}


/* =========================================================
   RESULTS
========================================================= */

.results-section {
    position: relative;

    padding: 105px 8%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0b2434,
            #244b61
        );

    color: var(--white);
}

.results-section::before {
    position: absolute;
    top: -180px;
    left: -180px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08),
            transparent 70%
        );

    border-radius: 50%;

    content: "";
}

.results-section::after {
    position: absolute;
    right: -160px;
    bottom: -260px;

    width: 600px;
    height: 600px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    content: "";
}

.results-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;
    align-items: center;

    max-width: 1180px;
    margin: auto;
}

.results-copy h2 {
    margin-bottom: 24px;

    color: var(--white);

    font-size: clamp(36px, 4.5vw, 54px);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.results-copy p {
    margin-bottom: 32px;

    color: #d2dfe4;

    font-size: 18px;
}

.results-button {
    background: var(--white);
    color: var(--navy);
}

.results-button:hover {
    background: var(--steel-light);
}

.results-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.result-card {
    min-height: 160px;
    padding: 28px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);

    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);

    transform: translateY(-5px);
}

.result-card strong,
.result-card span {
    display: block;
}

.result-card strong {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 29px;
}

.result-card span {
    color: #c5d5db;

    font-size: 14px;
}


/* =========================================================
   END OF CHUNK 2
   CHUNK 3 GOES DIRECTLY UNDER THIS LINE
========================================================= */
/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: var(--off-white);
}

.pricing-grid,
.care-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
    align-items: stretch;

    max-width: 1180px;
    margin: auto;
}

.pricing-card,
.care-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 38px 32px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.pricing-card:hover,
.care-card:hover {
    border-color: var(--steel-light);

    box-shadow: var(--shadow-medium);

    transform: translateY(-6px);
}

.featured-package,
.care-featured {
    border: 2px solid var(--steel);

    box-shadow: var(--shadow-large);

    transform: translateY(-12px);
}

.featured-package:hover,
.care-featured:hover {
    transform: translateY(-18px);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;

    padding: 7px 16px;

    background: var(--navy);
    border-radius: 30px;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;

    transform: translateX(-50%);
}

.package-name {
    margin-bottom: 14px;

    color: var(--steel);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pricing-card h3 {
    min-height: 60px;
    margin-bottom: 18px;

    color: var(--navy);

    font-size: 24px;
    line-height: 1.25;
}

.price {
    margin-bottom: 18px;

    color: var(--charcoal);

    font-size: 27px;
    font-weight: 800;
}

.package-description {
    min-height: 84px;
    margin-bottom: 24px;

    color: var(--light-text);

    font-size: 14px;
}

.pricing-card ul,
.care-card ul {
    margin-bottom: 32px;
    padding: 0;

    list-style: none;
}

.pricing-card li,
.care-card li {
    position: relative;

    margin-bottom: 13px;
    padding-left: 25px;

    color: var(--light-text);
}

.pricing-card li::before,
.care-card li::before {
    position: absolute;
    top: 0;
    left: 0;

    color: var(--steel);

    content: "✓";

    font-weight: 800;
}

.pricing-button {
    display: block;

    margin-top: auto;
    padding: 14px 20px;

    border: 2px solid var(--navy);
    border-radius: var(--radius-small);

    color: var(--navy);

    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.pricing-button:hover {
    background: var(--navy);
    color: var(--white);

    transform: translateY(-2px);
}

.primary-price-button {
    background: var(--navy);
    color: var(--white);
}

.primary-price-button:hover {
    background: var(--navy-light);
}

.pricing-subheading {
    max-width: 780px;
    margin: 110px auto 50px;

    text-align: center;
}

.monthly-price {
    display: flex;
    align-items: baseline;
    gap: 6px;

    margin: 12px 0 22px;

    color: var(--navy);
}

.monthly-price strong {
    font-size: 44px;
    line-height: 1;
}

.monthly-price span {
    color: var(--light-text);

    font-weight: 700;
}

.care-card > p {
    min-height: 74px;
    margin-bottom: 22px;

    color: var(--light-text);
}


/* =========================================================
   ADD-ON SERVICES
========================================================= */

.addons-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    max-width: 1180px;
    margin: auto;
}

.addon-card {
    padding: 25px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.addon-card:hover {
    border-color: var(--steel-light);

    box-shadow: var(--shadow-medium);

    transform: translateY(-5px);
}

.addon-card h3 {
    min-height: 52px;
    margin-bottom: 14px;

    color: var(--navy);

    font-size: 18px;
    line-height: 1.3;
}

.addon-card strong {
    color: var(--steel);

    font-size: 15px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    margin-bottom: 16px;
    padding: 0 24px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--steel-light);

    box-shadow: var(--shadow-medium);
}

.faq-item summary {
    position: relative;

    padding: 22px 44px 22px 0;

    color: var(--navy);

    cursor: pointer;

    font-size: 18px;
    font-weight: 800;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 0;

    color: var(--steel);

    content: "+";

    font-size: 27px;
    font-weight: 400;

    transform: translateY(-50%);

    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform:
        translateY(-50%)
        rotate(45deg);
}

.faq-item p {
    padding: 0 0 24px;

    color: var(--light-text);
}


/* =========================================================
   FINAL CALL TO ACTION
========================================================= */

.final-cta-section {
    position: relative;

    padding: 100px 8%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #071a27,
            #1e455c
        );

    color: var(--white);
    text-align: center;
}

.final-cta-section::before {
    position: absolute;
    top: -180px;
    right: -140px;

    width: 480px;
    height: 480px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.1),
            transparent 68%
        );

    border-radius: 50%;

    content: "";
}

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;
}

.final-cta-content h2 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(38px, 5vw, 60px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.final-cta-content p {
    max-width: 760px;
    margin: 0 auto 34px;

    color: #d6e2e7;

    font-size: 18px;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;

    padding: 105px 8%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy-light)
        );

    color: var(--white);
}

.contact-section::after {
    position: absolute;
    right: -220px;
    bottom: -300px;

    width: 650px;
    height: 650px;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    content: "";
}

.contact-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 70px;
    align-items: start;

    max-width: 1180px;
    margin: auto;
}

.contact-copy h2 {
    margin-bottom: 23px;

    color: var(--white);

    font-size: clamp(36px, 4.5vw, 54px);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-copy > p {
    margin-bottom: 32px;

    color: #d7e2e6;

    font-size: 18px;
}

.contact-benefits {
    display: grid;
    gap: 13px;

    margin-bottom: 35px;
}

.contact-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #d7e2e6;

    font-weight: 700;
}

.contact-benefits span {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 28px;
    height: 28px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    color: var(--white);
}

.contact-details {
    padding-top: 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.16);

    color: #d7e2e6;
}

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

.contact-details a,
.footer-cta a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover,
.footer-cta a:hover {
    color: var(--steel-light);
    text-decoration: underline;
}

.contact-form {
    padding: 38px;

    background: var(--white);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-large);
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading h3 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 27px;
}

.form-heading p {
    color: var(--light-text);

    font-size: 14px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    outline: none;

    color: var(--charcoal);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--steel);

    box-shadow:
        0 0 0 4px rgba(130, 153, 161, 0.16);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--error);

    box-shadow:
        0 0 0 4px rgba(168, 61, 61, 0.1);
}

.submit-button {
    width: 100%;
    min-height: 54px;

    background: var(--navy);
    border: 0;
    border-radius: var(--radius-small);

    color: var(--white);

    font-size: 16px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.submit-button:hover {
    background: var(--navy-light);

    transform: translateY(-2px);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.7;

    transform: none;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    padding: 0 8px;

    color: var(--light-text);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--error);
}


/* =========================================================
   END OF CHUNK 3
   CHUNK 4 GOES DIRECTLY UNDER THIS LINE
========================================================= */
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 65px 8% 24px;

    background: #06151f;
    color: var(--white);
}

.footer-container {
    display: grid;

    grid-template-columns:
        1.35fr
        0.7fr
        0.9fr
        1fr;

    gap: 55px;

    max-width: 1220px;
    margin: auto;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    width: 210px;
    height: 115px;
    margin-bottom: 18px;

    object-fit: contain;
    object-position: left center;
}

.footer-brand p,
.footer-cta p {
    color: #a8bbc2;

    font-size: 14px;
}

.footer-navigation,
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-navigation h3,
.footer-cta h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 15px;
}

.footer-navigation a,
.footer-cta a {
    margin-bottom: 10px;

    color: #a8bbc2;

    font-size: 14px;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-navigation a:hover,
.footer-cta a:hover {
    color: var(--white);

    transform: translateX(3px);
}

.footer-cta p {
    margin-bottom: 18px;
}

.footer-bottom {
    max-width: 1220px;
    margin: 45px auto 0;
    padding-top: 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    color: #81959d;

    font-size: 13px;
    text-align: center;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    background: var(--navy);
    border:
        1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    color: var(--white);

    opacity: 0;
    pointer-events: none;

    box-shadow:
        0 12px 30px rgba(7, 26, 39, 0.3);

    transform: translateY(14px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-light);

    transform: translateY(-3px);
}


/* =========================================================
   PORTFOLIO HERO
========================================================= */

.portfolio-hero {
    position: relative;

    padding: 170px 8% 120px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #071a27,
            #163c51
        );

    color: var(--white);
}

.portfolio-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;
}

.portfolio-hero-glow {
    position: absolute;
    top: -180px;
    right: -100px;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183, 203, 210, 0.18),
            transparent 68%
        );
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;

    text-align: center;
}

.portfolio-hero h1 {
    margin: 18px 0 26px;

    color: var(--white);

    font-size: clamp(48px, 6vw, 76px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.portfolio-hero p {
    max-width: 760px;
    margin: 0 auto 40px;

    color: #d7e3e8;

    font-size: 20px;
    line-height: 1.8;
}

.portfolio-hero-buttons,
.portfolio-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}


/* =========================================================
   PORTFOLIO GRID
========================================================= */

.portfolio-section {
    padding: 110px 8%;

    background: #f6f8fa;
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 42px;

    max-width: 1280px;
    margin: auto;
}

.portfolio-card {
    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow:
        0 18px 50px rgba(10, 31, 44, 0.1);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--steel-light);

    box-shadow:
        0 30px 75px rgba(10, 31, 44, 0.16);

    transform: translateY(-10px);
}


/* =========================================================
   MINI BROWSER FRAME
========================================================= */

.portfolio-browser {
    overflow: hidden;

    background: #dce4e8;
    border-bottom: 1px solid var(--border);
}

.mini-browser-top {
    display: flex;
    align-items: center;
    gap: 14px;

    height: 36px;
    padding: 0 14px;

    background: #e9eef1;
    border-bottom:
        1px solid rgba(10, 31, 44, 0.08);
}

.mini-browser-dots {
    display: flex;
    gap: 5px;
}

.mini-browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9aaab2;
}

.mini-browser-address {
    flex: 1;

    padding: 4px 10px;

    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;

    color: #6e7d84;

    font-size: 9px;
    text-align: center;
}

.mini-site {
    min-height: 360px;

    overflow: hidden;
}

.mini-site-header {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 54px;
    padding: 10px 18px;

    background: rgba(255, 255, 255, 0.97);
}

.dark-mini-header {
    background: #15191c;
}

.mini-brand,
.government-name,
.nonprofit-name,
.dispensary-name {
    margin-right: auto;

    color: #182f3e;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.mini-brand span,
.government-name span,
.nonprofit-name span,
.dispensary-name span {
    display: block;

    margin-top: 3px;

    color: #7c919a;

    font-size: 6px;
    letter-spacing: 0.14em;
}

.dark-mini-header .mini-brand {
    color: var(--white);
}

.mini-navigation {
    display: flex;
    gap: 7px;
}

.mini-navigation span {
    width: 19px;
    height: 3px;

    background: #a2b0b7;
    border-radius: 10px;
}

.light-mini-nav span {
    background: rgba(255, 255, 255, 0.42);
}

.mini-header-button {
    padding: 7px 10px;

    background: var(--navy);
    border-radius: 5px;

    color: var(--white);

    font-size: 7px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   MINI HERO LAYOUT
========================================================= */

.mini-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(120px, 0.9fr);

    align-items: center;

    min-height: 235px;
    padding: 34px 28px;

    overflow: hidden;
}

.mini-hero-copy {
    position: relative;
    z-index: 2;
}

.mini-hero-copy small {
    display: block;

    margin-bottom: 10px;

    color: inherit;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.8;
}

.mini-hero-copy h4 {
    max-width: 250px;
    margin-bottom: 12px;

    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.mini-hero-copy p {
    max-width: 250px;
    margin-bottom: 18px;

    font-size: 9px;
    line-height: 1.55;

    opacity: 0.84;
}

.mini-hero-actions {
    display: flex;
    gap: 8px;
}

.mini-hero-actions span {
    padding: 8px 11px;

    border-radius: 4px;

    font-size: 7px;
    font-weight: 800;
}

.mini-hero-actions span:first-child {
    background: var(--white);
    color: var(--navy);
}

.mini-hero-actions span:last-child {
    border: 1px solid currentColor;
}

.mini-feature-row,
.nonprofit-program-row {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    background: #f7f9fa;
    border-top: 1px solid var(--border);
}

.mini-feature-row div,
.nonprofit-program-row div {
    padding: 14px 10px;

    border-right: 1px solid var(--border);

    text-align: center;
}

.mini-feature-row div:last-child,
.nonprofit-program-row div:last-child {
    border-right: 0;
}

.mini-feature-row strong,
.mini-feature-row span,
.nonprofit-program-row strong,
.nonprofit-program-row span {
    display: block;
}

.mini-feature-row strong,
.nonprofit-program-row strong {
    color: var(--navy);

    font-size: 11px;
}

.mini-feature-row span,
.nonprofit-program-row span {
    color: #7a8b92;

    font-size: 6px;
}


/* =========================================================
   ROOFING PREVIEW
========================================================= */

.roofing-site {
    background: #f7f9fa;
}

.roofing-mini-hero {
    background:
        linear-gradient(
            135deg,
            #16354a,
            #4c7289
        );

    color: var(--white);
}

.roof-shape {
    position: absolute;
    top: 37px;
    right: 18px;

    width: 150px;
    height: 84px;

    background: #dde5e9;

    clip-path:
        polygon(
            50% 0,
            100% 50%,
            85% 50%,
            85% 100%,
            15% 100%,
            15% 50%,
            0 50%
        );

    opacity: 0.96;
}

.roof-house {
    position: absolute;
    right: 45px;
    bottom: 28px;

    width: 95px;
    height: 82px;

    background: #f7f9fa;
    border-radius: 3px;

    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.18);
}

.roof-house::before {
    position: absolute;
    top: 25px;
    left: 20px;

    width: 22px;
    height: 40px;

    background: #9db0b9;

    content: "";
}

.roof-house::after {
    position: absolute;
    top: 25px;
    right: 16px;

    width: 28px;
    height: 20px;

    background: #bfd0d7;

    content: "";
}


/* =========================================================
   AUTOMOTIVE PREVIEW
========================================================= */

.automotive-site {
    background: #171b1e;
}

.auto-brand span {
    color: #d14f45;
}

.red-button {
    background: #b93e35;
}

.automotive-mini-hero {
    background:
        linear-gradient(
            135deg,
            #15191c,
            #32383c
        );

    color: var(--white);
}

.auto-speed-lines {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            155deg,
            transparent 0 25px,
            rgba(255, 255, 255, 0.025) 26px 28px
        );
}

.car-graphic {
    position: relative;

    width: 180px;
    height: 100px;

    margin-left: auto;
}

.car-body {
    position: absolute;
    right: 0;
    bottom: 18px;

    width: 170px;
    height: 46px;

    background:
        linear-gradient(
            90deg,
            #9d2f29,
            #d14e45
        );

    border-radius: 30px 40px 14px 16px;
}

.car-window {
    position: absolute;
    top: 18px;
    right: 46px;

    width: 86px;
    height: 36px;

    background: #c8d4da;

    clip-path:
        polygon(
            22% 0,
            78% 0,
            100% 100%,
            0 100%
        );
}

.car-wheel {
    position: absolute;
    bottom: 4px;

    width: 28px;
    height: 28px;

    background: #0b0c0d;
    border: 5px solid #555d61;
    border-radius: 50%;
}

.wheel-one {
    left: 24px;
}

.wheel-two {
    right: 20px;
}

.auto-service-strip,
.retail-category-row,
.dispensary-category-row {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: #21272a;
}

.auto-service-strip span,
.retail-category-row span,
.dispensary-category-row span {
    padding: 12px 8px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    color: #c8d0d4;

    font-size: 7px;
    text-align: center;
}


/* =========================================================
   END OF CHUNK 4
   CHUNK 5 GOES DIRECTLY UNDER THIS LINE
========================================================= */
/* =========================================================
   GOVERNMENT PREVIEW
========================================================= */

.government-site {
    background: #f7fafc;
}

.government-top-bar {
    padding: 6px 18px;

    background: #153e63;

    color: var(--white);

    font-size: 6px;
    letter-spacing: 0.08em;
    text-align: center;
}

.government-seal,
.nonprofit-logo,
.leaf-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 900;
}

.government-seal {
    background: #1d5d90;
    color: var(--white);
}

.government-nav span {
    background: #7f99aa;
}

.government-hero {
    padding: 34px 30px;

    background:
        linear-gradient(
            135deg,
            #e8f0f5,
            #cbdce7
        );
}

.government-hero small {
    color: #2f648b;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.government-hero h4 {
    max-width: 360px;
    margin: 8px 0 10px;

    color: #173e63;

    font-size: 27px;
    letter-spacing: -0.04em;
}

.government-hero p {
    max-width: 390px;

    color: #5f7480;

    font-size: 9px;
}

.government-search {
    display: flex;

    margin-top: 22px;

    overflow: hidden;

    background: var(--white);
    border-radius: 6px;

    box-shadow:
        0 8px 20px rgba(23, 62, 99, 0.12);
}

.government-search span {
    flex: 1;

    padding: 10px;

    color: #98a7ae;

    font-size: 7px;
}

.government-search button {
    padding: 0 17px;

    background: #1d5d90;
    border: 0;

    color: var(--white);

    font-size: 7px;
    font-weight: 800;
}

.government-links {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: var(--white);
}

.government-links div {
    padding: 16px 8px;

    border-right: 1px solid var(--border);

    color: #34546a;

    font-size: 7px;
    font-weight: 800;
    text-align: center;
}

.government-links div:last-child {
    border-right: 0;
}

.government-links span {
    display: block;

    margin-bottom: 5px;

    color: #1d5d90;

    font-size: 14px;
}


/* =========================================================
   RETAIL PREVIEW
========================================================= */

.retail-site {
    background: #171412;
}

.retail-age-bar,
.dispensary-age-bar {
    padding: 6px;

    font-size: 6px;
    letter-spacing: 0.1em;
    text-align: center;
}

.retail-age-bar {
    background: #5d3c21;
    color: #d7c5aa;
}

.retail-brand {
    color: #f2d4a6 !important;
}

.retail-brand span {
    color: #ad8b63;
}

.gold-button {
    background: #a56d2f;
}

.retail-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(140px, 0.9fr);

    align-items: center;

    min-height: 235px;
    padding: 34px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #2d2118,
            #6f4a29
        );

    color: var(--white);
}

.retail-glow {
    position: absolute;
    right: -50px;
    bottom: -80px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216, 167, 101, 0.23),
            transparent 70%
        );
}

.gold-actions span:first-child {
    background: #c58d47;
    color: #24170e;
}

.retail-product-display {
    position: relative;

    height: 150px;
}

.product-box {
    position: absolute;
    bottom: 15px;

    width: 48px;

    border-radius: 5px 5px 2px 2px;

    box-shadow:
        0 16px 24px rgba(0, 0, 0, 0.25);
}

.product-box::before {
    position: absolute;
    top: 14px;
    right: 8px;
    left: 8px;

    height: 3px;

    background: rgba(255, 255, 255, 0.55);

    content: "";
}

.product-one {
    left: 10px;

    height: 95px;

    background: #b57a36;
}

.product-two {
    left: 60px;

    height: 125px;

    background: #d2b27e;
}

.product-three {
    left: 112px;

    height: 80px;

    background: #784a27;
}

.retail-category-row {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    background: #201a16;
}


/* =========================================================
   NONPROFIT PREVIEW
========================================================= */

.nonprofit-site {
    background: #f7faf8;
}

.nonprofit-logo {
    background: #2f7f58;
    color: var(--white);
}

.nonprofit-name {
    color: #214c36;
}

.nonprofit-nav span {
    background: #88a99a;
}

.green-button {
    background: #2f7f58;
}

.nonprofit-hero {
    position: relative;

    min-height: 235px;
    padding: 34px 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dceee5,
            #8fc5a6
        );

    color: #173f2b;
}

.community-circles {
    position: absolute;
    right: 35px;
    bottom: 25px;

    width: 170px;
    height: 140px;
}

.community-circles span {
    position: absolute;

    border-radius: 50%;
}

.community-circles span:nth-child(1) {
    top: 0;
    left: 35px;

    width: 80px;
    height: 80px;

    background: rgba(255, 255, 255, 0.72);
}

.community-circles span:nth-child(2) {
    bottom: 0;
    left: 0;

    width: 88px;
    height: 88px;

    background: rgba(47, 127, 88, 0.28);
}

.community-circles span:nth-child(3) {
    right: 0;
    bottom: 2px;

    width: 95px;
    height: 95px;

    background: rgba(255, 255, 255, 0.5);
}

.green-actions span:first-child {
    background: #2f7f58;
    color: var(--white);
}


/* =========================================================
   DISPENSARY PREVIEW
========================================================= */

.dispensary-site {
    background: #f5f7f1;
}

.dispensary-age-bar {
    background: #203f28;
    color: #d9e8d7;
}

.dispensary-header {
    background: #edf3e8;
}

.leaf-logo {
    background: #466e3d;
    color: var(--white);
}

.dispensary-name {
    color: #2c5331;
}

.dispensary-nav span {
    background: #819b7b;
}

.forest-button {
    background: #466e3d;
}

.dispensary-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(125px, 0.9fr);

    align-items: center;

    min-height: 235px;
    padding: 34px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dfead7,
            #94b684
        );

    color: #24482b;
}

.dispensary-rings {
    position: absolute;
    right: -60px;
    bottom: -70px;

    width: 250px;
    height: 250px;

    border:
        1px solid rgba(49, 93, 50, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 32px rgba(49, 93, 50, 0.06),
        0 0 0 64px rgba(49, 93, 50, 0.04);
}

.forest-actions span:first-child {
    background: #466e3d;
    color: var(--white);
}

.dispensary-product {
    position: relative;
    z-index: 2;

    width: 100px;
    margin: auto;
}

.jar-lid {
    width: 76px;
    height: 18px;
    margin: 0 auto;

    background: #273c28;
    border-radius: 6px 6px 2px 2px;
}

.product-jar {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 92px;
    height: 105px;
    margin: auto;

    background:
        linear-gradient(
            135deg,
            #f4f6eb,
            #b7c9aa
        );

    border:
        2px solid rgba(36, 72, 43, 0.25);
    border-radius: 10px 10px 16px 16px;

    color: #355f3a;

    font-size: 20px;
    font-weight: 900;

    box-shadow:
        0 18px 30px rgba(36, 72, 43, 0.2);
}

.dispensary-category-row {
    background: #315339;
}


/* =========================================================
   PORTFOLIO TEXT CONTENT
========================================================= */

.portfolio-card-content {
    padding: 34px;
}

.portfolio-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 18px;
}

.portfolio-type {
    display: block;

    margin-bottom: 7px;

    color: var(--steel);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.portfolio-card h3 {
    color: var(--navy);

    font-size: 29px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.portfolio-number {
    color: #d6dee2;

    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.portfolio-card-content > p {
    margin-bottom: 24px;

    color: var(--light-text);

    line-height: 1.75;
}

.portfolio-features {
    margin-bottom: 28px;

    list-style: none;
}

.portfolio-features li {
    position: relative;

    padding: 9px 0 9px 24px;

    border-bottom: 1px solid #edf1f3;

    color: #56646b;

    font-size: 14px;
}

.portfolio-features li::before {
    position: absolute;
    left: 0;

    color: var(--steel);

    content: "✓";

    font-weight: 900;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--navy);

    font-weight: 800;
    text-decoration: none;
}

.portfolio-link span {
    transition: transform 0.2s ease;
}

.portfolio-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   PORTFOLIO PROCESS
========================================================= */

.portfolio-process-section {
    padding: 105px 8%;

    background:
        linear-gradient(
            135deg,
            #0a2231,
            #1f475e
        );

    color: var(--white);
}

.portfolio-process-section .section-heading h2 {
    color: var(--white);
}

.portfolio-process-section .section-heading p {
    color: #d2dfe4;
}

.portfolio-process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    max-width: 1120px;
    margin: auto;
}

.portfolio-process-card {
    padding: 34px;

    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);

    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.portfolio-process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);

    transform: translateY(-5px);
}

.portfolio-process-card > span {
    display: block;

    margin-bottom: 28px;

    color: var(--steel-light);

    font-size: 34px;
    font-weight: 900;
}

.portfolio-process-card h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 23px;
}

.portfolio-process-card p {
    color: #c7d5db;
}


/* =========================================================
   PORTFOLIO CTA
========================================================= */

.portfolio-cta-section {
    padding: 115px 8%;

    background:
        linear-gradient(
            135deg,
            #102c3e,
            #204d68
        );

    color: var(--white);
    text-align: center;
}

.portfolio-cta-content {
    max-width: 850px;
    margin: auto;
}

.portfolio-cta-content h2 {
    margin: 24px 0;

    color: var(--white);

    font-size: clamp(42px, 5vw, 62px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.portfolio-cta-content p {
    margin-bottom: 38px;

    color: #d5e1e6;

    font-size: 19px;
    line-height: 1.75;
}


/* =========================================================
   END OF CHUNK 5
   CHUNK 6 GOES DIRECTLY UNDER THIS LINE
========================================================= */
/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes hero-enter {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes hero-float {

    0%,
    100% {
        transform:
            perspective(1200px)
            rotateY(-5deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1200px)
            rotateY(-5deg)
            rotateX(2deg)
            translateY(-12px);
    }

}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes orbit-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes glow-drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, 20px);
    }

}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(185, 204, 211, 0.09);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(185, 204, 211, 0.03);
    }

}

@keyframes text-shimmer {

    from {
        background-position: 0 center;
    }

    to {
        background-position: 200% center;
    }

}

@keyframes mobile-hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1150px) {

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);

        gap: 40px;

        padding-right: 5%;
        padding-left: 5%;
    }

    .hero-image-badge-top {
        right: 0;
    }

    .hero-image-badge-bottom {
        left: 0;
    }

    .industry-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .addons-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

    .site-header {
        padding-right: 5%;
        padding-left: 5%;
    }

    .logo-link {
        width: 300px;
    }

    .main-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 90px;
        padding-bottom: 80px;

        text-align: center;
    }

    .hero-copy {
        max-width: 800px;
        margin: auto;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        min-height: 620px;
    }

    .hero-image-frame {
        transform: none;

        animation:
            mobile-hero-float 6s ease-in-out infinite;
    }

    .card-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .results-container {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .results-copy p {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;

        max-width: 760px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    html {
        scroll-padding-top: 90px;
    }

    .site-header {
        min-height: 78px;
        padding: 8px 5%;
    }

    .site-header.scrolled {
        min-height: 70px;
    }

    .logo-link {
        width: 255px;
        max-width: calc(100% - 65px);
    }

    .header-logo {
        height: 60px;
    }

    .site-header.scrolled .header-logo {
        height: 54px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        right: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        max-height: 0;
        padding: 0 6%;

        overflow: hidden;

        background: rgba(255, 255, 255, 0.99);
        border-bottom: 1px solid var(--border);

        opacity: 0;

        box-shadow:
            0 20px 35px rgba(10, 31, 44, 0.13);

        pointer-events: none;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease;
    }

    .main-nav.open {
        max-height: 620px;

        padding-top: 14px;
        padding-bottom: 20px;

        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 5px;

        border-bottom: 1px solid var(--border);

        text-align: center;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav .nav-button {
        width: auto;
        margin-top: 12px;
        padding: 13px 20px;

        border-bottom: 0;
    }

    .section,
    .process-section,
    .pricing-section,
    .industries-section,
    .results-section,
    .contact-section,
    .faq-section,
    .final-cta-section,
    .portfolio-section,
    .portfolio-process-section,
    .portfolio-cta-section {
        padding: 80px 6%;
    }

    .industry-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .pricing-grid,
    .care-grid,
    .portfolio-process-grid {
        grid-template-columns: 1fr;
    }

    .featured-package,
    .care-featured,
    .featured-package:hover,
    .care-featured:hover {
        transform: none;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 650px) {

    .logo-link {
        width: 220px;
    }

    .header-logo {
        height: 54px;
    }

    .site-header.scrolled .header-logo {
        height: 50px;
    }

    .hero-container {
        padding: 70px 6% 60px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-badge {
        justify-content: center;

        font-size: 10px;
    }

    .hero-buttons,
    .final-cta-buttons,
    .portfolio-hero-buttons,
    .portfolio-cta-buttons {
        flex-direction: column;
    }

    .hero-buttons .button,
    .final-cta-buttons .button,
    .portfolio-hero-buttons .button,
    .portfolio-cta-buttons .button {
        width: 100%;
    }

    .hero-proof {
        flex-direction: column;
        gap: 16px;
    }

    .proof-divider {
        width: 75px;
        height: 1px;
    }

    .hero-visual {
        min-height: auto;
        padding-top: 20px;
    }

    .visual-orbit {
        display: none;
    }

    .hero-image-frame {
        padding: 6px;

        border-radius: 20px;
    }

    .hero-mockup-image {
        border-radius: 15px;
    }

    .hero-image-frame::after {
        inset: 6px;

        border-radius: 15px;
    }

    .hero-image-badge {
        display: none;
    }

    .hero-bottom-strip {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hero-bottom-strip span:last-child {
        grid-column: 1 / -1;
    }

    .card-grid,
    .industry-grid,
    .results-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .industry-card {
        min-height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-form {
        padding: 27px 21px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        width: 190px;
        height: 100px;
        margin-right: auto;
        margin-left: auto;

        object-position: center;
    }

    .footer-navigation,
    .footer-cta {
        align-items: center;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }

    .portfolio-hero {
        padding: 135px 7% 90px;
    }

    .portfolio-hero h1 {
        font-size: 46px;
    }

    .portfolio-hero p {
        font-size: 17px;
    }

    .mini-site {
        min-height: 315px;
    }

    .mini-site-header {
        gap: 8px;
        padding: 9px 10px;
    }

    .mini-navigation {
        display: none;
    }

    .mini-hero,
    .retail-hero,
    .dispensary-hero {
        grid-template-columns: 1fr;

        min-height: 250px;
        padding: 28px 20px;
    }

    .roof-shape,
    .roof-house,
    .car-graphic,
    .retail-product-display,
    .community-circles,
    .dispensary-product {
        display: none;
    }

    .government-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mini-feature-row,
    .nonprofit-program-row {
        grid-template-columns: 1fr;
    }

    .mini-feature-row div,
    .nonprofit-program-row div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .portfolio-card-content {
        padding: 26px 22px;
    }

    .portfolio-card h3 {
        font-size: 24px;
    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .hero-animate {
        opacity: 1;

        transform: none;
    }

}/* =========================================================
   UPGRADED PORTFOLIO — DESKTOP + MOBILE MOCKUPS
========================================================= */

.upgraded-portfolio-section {
    background:
        linear-gradient(
            180deg,
            #f7f9fa,
            #eef3f5
        );
}

.upgraded-portfolio-grid {
    gap: 48px;
}

.upgraded-project-card {
    position: relative;
    overflow: visible;
}

.project-ribbon {
    position: absolute;
    top: 22px;
    left: -10px;
    z-index: 20;

    padding: 9px 18px;

    background: var(--navy);
    border-radius: 0 30px 30px 0;

    color: var(--white);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow:
        0 10px 25px rgba(7, 26, 39, 0.25);
}

.nonprofit-ribbon {
    background: #2f7f58;
}

.project-price-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 20;

    padding: 9px 14px;

    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;

    color: var(--navy);

    font-size: 11px;
    font-weight: 900;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(10px);
}

.premium-price-badge {
    color: #173e63;
}

.device-showcase {
    position: relative;

    min-height: 440px;
    padding: 58px 28px 34px;

    overflow: hidden;

    border-radius: 20px 20px 0 0;
}

.device-showcase::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.55;
}

.roofing-showcase {
    background:
        linear-gradient(
            135deg,
            #cfdde4,
            #eaf1f4
        );
}

.automotive-showcase {
    background:
        linear-gradient(
            135deg,
            #25292c,
            #4b5155
        );
}

.government-showcase {
    background:
        linear-gradient(
            135deg,
            #d9e6ef,
            #eef4f8
        );
}

.retail-showcase {
    background:
        linear-gradient(
            135deg,
            #3a2b20,
            #7b5532
        );
}

.nonprofit-showcase {
    background:
        linear-gradient(
            135deg,
            #dceee5,
            #a7d0b8
        );
}

.dispensary-showcase {
    background:
        linear-gradient(
            135deg,
            #dbe7d3,
            #9fbd8f
        );
}


/* =========================================================
   DESKTOP DEVICE
========================================================= */

.desktop-device {
    position: relative;
    z-index: 3;

    width: calc(100% - 80px);

    overflow: hidden;

    background: #dbe3e7;
    border: 8px solid #17232b;
    border-radius: 16px;

    box-shadow:
        0 28px 50px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.upgraded-project-card:hover .desktop-device {
    transform:
        translateY(-6px)
        rotateX(1deg);

    box-shadow:
        0 36px 70px rgba(0, 0, 0, 0.3);
}

.desktop-device-top {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 30px;
    padding: 0 12px;

    background: #e7ecef;
}

.device-dots {
    display: flex;
    gap: 5px;
}

.device-dots span {
    width: 7px;
    height: 7px;

    background: #98a8af;
    border-radius: 50%;
}

.device-address {
    flex: 1;

    padding: 4px 10px;

    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;

    color: #74858d;

    font-size: 8px;
    text-align: center;
}

.desktop-screen {
    min-height: 300px;
}


/* =========================================================
   PHONE DEVICE
========================================================= */

.phone-device {
    position: absolute;
    right: 18px;
    bottom: 22px;
    z-index: 6;

    width: 112px;
    height: 230px;

    padding: 10px 7px 14px;

    background: #151b1f;
    border: 3px solid #26343c;
    border-radius: 22px;

    box-shadow:
        0 24px 38px rgba(0, 0, 0, 0.32);

    transform:
        rotate(4deg)
        translateY(0);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.upgraded-project-card:hover .phone-device {
    transform:
        rotate(1deg)
        translateY(-10px)
        scale(1.03);

    box-shadow:
        0 34px 55px rgba(0, 0, 0, 0.38);
}

.phone-speaker {
    width: 34px;
    height: 4px;
    margin: 0 auto 6px;

    background: #43525a;
    border-radius: 20px;
}

.phone-screen {
    height: 190px;

    overflow: hidden;

    background: var(--white);
    border-radius: 13px;
}

.phone-home-bar {
    width: 34px;
    height: 4px;
    margin: 7px auto 0;

    background: #5e6c73;
    border-radius: 20px;
}

.phone-demo-header {
    padding: 10px 8px;

    background: var(--white);

    color: var(--navy);

    font-size: 8px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.phone-demo-header span {
    display: block;

    margin-top: 3px;

    color: var(--steel);

    font-size: 5px;
    letter-spacing: 0.12em;
}

.phone-demo-hero {
    padding: 18px 9px;

    text-align: center;
}

.phone-demo-hero small {
    display: block;

    margin-bottom: 7px;

    font-size: 5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.phone-demo-hero strong {
    display: block;

    margin-bottom: 12px;

    font-size: 13px;
    line-height: 1.1;
}

.phone-demo-button {
    display: inline-block;

    padding: 7px 9px;

    border-radius: 4px;

    font-size: 6px;
    font-weight: 900;
}

.phone-demo-block {
    width: calc(100% - 18px);
    height: 28px;
    margin: 8px auto;

    border-radius: 5px;
}

.phone-demo-lines {
    display: grid;
    gap: 5px;

    padding: 0 9px;
}

.phone-demo-lines span {
    height: 4px;

    background: #dce4e8;
    border-radius: 20px;
}


/* =========================================================
   SHARED DEMO HEADER
========================================================= */

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

    min-height: 48px;
    padding: 9px 15px;
}

.demo-logo {
    margin-right: auto;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.05;
}

.demo-logo span {
    display: block;

    margin-top: 3px;

    font-size: 5px;
    letter-spacing: 0.12em;
}

.demo-nav-lines {
    display: flex;
    gap: 6px;
}

.demo-nav-lines span {
    width: 17px;
    height: 3px;

    background: #9baab1;
    border-radius: 20px;
}

.light-demo-lines span {
    background: rgba(255, 255, 255, 0.42);
}

.demo-header-button {
    padding: 7px 10px;

    border-radius: 4px;

    font-size: 6px;
    font-weight: 900;
}

.demo-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(120px, 0.9fr);

    align-items: center;

    min-height: 205px;
    padding: 28px 24px;

    overflow: hidden;
}

.demo-copy {
    position: relative;
    z-index: 3;
}

.demo-copy small {
    display: block;

    margin-bottom: 8px;

    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.demo-copy h3 {
    max-width: 230px;
    margin-bottom: 10px;

    font-size: 22px;
    line-height: 1.02;
}

.demo-copy p {
    max-width: 230px;
    margin-bottom: 16px;

    font-size: 8px;
    line-height: 1.5;
}

.demo-buttons {
    display: flex;
    gap: 7px;
}

.demo-buttons span {
    padding: 7px 10px;

    border-radius: 4px;

    font-size: 6px;
    font-weight: 900;
}


/* =========================================================
   ROOFING DESIGN
========================================================= */

.roofing-demo-header {
    background: var(--white);
    color: var(--navy);
}

.roofing-demo-header .demo-header-button {
    background: var(--navy);
    color: var(--white);
}

.roofing-demo-hero {
    background:
        linear-gradient(
            135deg,
            #15354a,
            #557a90
        );

    color: var(--white);
}

.roofing-demo-hero .demo-buttons span:first-child {
    background: var(--white);
    color: var(--navy);
}

.roofing-demo-hero .demo-buttons span:last-child {
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.roofing-illustration {
    position: relative;

    height: 135px;
}

.roofing-roof {
    position: absolute;
    top: 12px;
    right: 5px;

    width: 130px;
    height: 70px;

    background: #dfe7eb;

    clip-path:
        polygon(
            50% 0,
            100% 50%,
            84% 50%,
            84% 100%,
            16% 100%,
            16% 50%,
            0 50%
        );
}

.roofing-house {
    position: absolute;
    right: 31px;
    bottom: 4px;

    width: 82px;
    height: 72px;

    background: #f7f9fa;

    border-radius: 3px;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.2);
}

.demo-stat-row {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    background: #f6f8fa;
}

.demo-stat-row div {
    padding: 12px 8px;

    border-right: 1px solid var(--border);

    text-align: center;
}

.demo-stat-row strong,
.demo-stat-row span {
    display: block;
}

.demo-stat-row strong {
    color: var(--navy);

    font-size: 10px;
}

.demo-stat-row span {
    color: var(--light-text);

    font-size: 5px;
}

.roofing-phone .phone-demo-hero {
    background:
        linear-gradient(
            135deg,
            #17364b,
            #5e8094
        );

    color: var(--white);
}

.roofing-phone .phone-demo-button {
    background: var(--white);
    color: var(--navy);
}

.roofing-phone .phone-demo-block {
    background: #dce8ed;
}


/* =========================================================
   AUTOMOTIVE DESIGN
========================================================= */

.auto-demo-header {
    background: #15191c;
    color: var(--white);
}

.auto-demo-logo span {
    color: #d24c43;
}

.auto-button {
    background: #b33b34;
    color: var(--white);
}

.auto-demo-hero {
    background:
        linear-gradient(
            135deg,
            #15191c,
            #353b3f
        );

    color: var(--white);
}

.auto-background-lines {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            155deg,
            transparent 0 24px,
            rgba(255, 255, 255, 0.025) 25px 27px
        );
}

.auto-demo-buttons span:first-child {
    background: #bd4038;
    color: var(--white);
}

.auto-demo-buttons span:last-child {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.auto-illustration {
    position: relative;

    width: 155px;
    height: 95px;

    margin-left: auto;
}

.auto-car-body {
    position: absolute;
    right: 0;
    bottom: 18px;

    width: 150px;
    height: 42px;

    background:
        linear-gradient(
            90deg,
            #962f2a,
            #dc5147
        );

    border-radius: 28px 35px 12px 14px;
}

.auto-car-window {
    position: absolute;
    top: 19px;
    right: 37px;

    width: 74px;
    height: 31px;

    background: #c4d0d5;

    clip-path:
        polygon(
            22% 0,
            76% 0,
            100% 100%,
            0 100%
        );
}

.auto-wheel {
    position: absolute;
    bottom: 4px;

    width: 24px;
    height: 24px;

    background: #08090a;
    border: 4px solid #5a6267;
    border-radius: 50%;
}

.auto-wheel-one {
    left: 24px;
}

.auto-wheel-two {
    right: 18px;
}

.auto-services-row {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: #21272a;
}

.auto-services-row span {
    padding: 11px 6px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    color: #c7d0d4;

    font-size: 6px;
    text-align: center;
}

.auto-phone-screen {
    background: #1c2225;
}

.auto-phone-header {
    background: #14181a;
    color: var(--white);
}

.auto-phone-header span {
    color: #cf4c44;
}

.auto-phone-hero {
    background:
        linear-gradient(
            135deg,
            #252a2d,
            #40484c
        );

    color: var(--white);
}

.auto-phone-button {
    background: #bf4038;
    color: var(--white);
}

.auto-phone-block {
    background: #4a5256;
}

.light-phone-lines span {
    background: #495257;
}


/* =========================================================
   GOVERNMENT DESIGN
========================================================= */

.government-official-bar {
    padding: 5px 12px;

    background: #173e63;

    color: var(--white);

    font-size: 5px;
    text-align: center;
}

.government-demo-header {
    background: var(--white);
}

.government-demo-seal {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;

    background: #1d5d90;
    border-radius: 50%;

    color: var(--white);

    font-size: 7px;
    font-weight: 900;
}

.government-demo-logo {
    color: #173e63;
}

.government-demo-logo span {
    color: #718894;
}

.government-demo-lines span {
    background: #8298a6;
}

.government-demo-hero {
    padding: 28px 24px;

    background:
        linear-gradient(
            135deg,
            #e8f0f5,
            #c8dce8
        );
}

.government-demo-hero small {
    color: #2d648b;

    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.government-demo-hero h3 {
    margin: 7px 0 8px;

    color: #173e63;

    font-size: 22px;
}

.government-demo-hero p {
    color: #5f7682;

    font-size: 8px;
}

.government-demo-search {
    display: flex;

    margin-top: 18px;

    overflow: hidden;

    background: var(--white);
    border-radius: 5px;

    box-shadow:
        0 7px 18px rgba(23, 62, 99, 0.12);
}

.government-demo-search span {
    flex: 1;

    padding: 9px;

    color: #92a1a8;

    font-size: 6px;
}

.government-demo-search strong {
    padding: 9px 14px;

    background: #1d5d90;

    color: var(--white);

    font-size: 6px;
}

.government-demo-links {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: var(--white);
}

.government-demo-links div {
    padding: 11px 6px;

    border-right: 1px solid var(--border);

    text-align: center;
}

.government-demo-links strong,
.government-demo-links span {
    display: block;
}

.government-demo-links strong {
    color: #1d5d90;

    font-size: 11px;
}

.government-demo-links span {
    color: #426277;

    font-size: 5px;
}

.government-phone-bar {
    padding: 4px;

    background: #173e63;

    color: var(--white);

    font-size: 5px;
    text-align: center;
}

.government-phone-header {
    color: #173e63;
}

.government-phone-header span {
    color: #718894;
}

.government-phone-hero {
    background:
        linear-gradient(
            135deg,
            #e7f0f5,
            #c5dce9
        );

    color: #173e63;
}

.government-phone-button {
    background: #1d5d90;
    color: var(--white);
}

.government-phone-links {
    display: grid;
    gap: 5px;

    padding: 8px;
}

.government-phone-links span {
    padding: 6px;

    background: #e7eef2;
    border-radius: 4px;

    color: #365a70;

    font-size: 6px;
    text-align: center;
}


/* =========================================================
   RETAIL DESIGN
========================================================= */

.retail-age-notice {
    padding: 5px;

    background: #5d3d22;

    color: #ddc7a8;

    font-size: 5px;
    text-align: center;
}

.retail-demo-header {
    background: #171412;
}

.retail-demo-logo {
    color: #f1d2a1;
}

.retail-demo-logo span {
    color: #a98a65;
}

.retail-demo-lines span {
    background: rgba(255, 255, 255, 0.35);
}

.retail-button {
    background: #a56d2f;
    color: var(--white);
}

.retail-demo-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(130px, 0.9fr);

    align-items: center;

    min-height: 205px;
    padding: 28px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #2d2118,
            #6f4a29
        );

    color: var(--white);
}

.retail-demo-glow {
    position: absolute;
    right: -45px;
    bottom: -70px;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(
            circle,
            rgba(216, 167, 101, 0.22),
            transparent 70%
        );

    border-radius: 50%;
}

.retail-demo-buttons span:first-child {
    background: #c58d47;
    color: #25170e;
}

.retail-demo-buttons span:last-child {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.retail-products {
    position: relative;

    height: 130px;
}

.retail-product {
    position: absolute;
    bottom: 12px;

    width: 40px;

    border-radius: 5px 5px 2px 2px;

    box-shadow:
        0 14px 22px rgba(0, 0, 0, 0.25);
}

.product-a {
    left: 8px;

    height: 78px;

    background: #b87835;
}

.product-b {
    left: 52px;

    height: 105px;

    background: #d2b17c;
}

.product-c {
    left: 96px;

    height: 68px;

    background: #754826;
}

.retail-demo-categories {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    background: #201a16;
}

.retail-demo-categories span {
    padding: 10px 6px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    color: #d4c2ad;

    font-size: 6px;
    text-align: center;
}

.retail-phone-screen {
    background: #211914;
}

.retail-phone-age {
    padding: 4px;

    background: #5d3d22;

    color: #ddc7a8;

    font-size: 5px;
    text-align: center;
}

.retail-phone-header {
    background: #181411;
    color: #efcf9d;
}

.retail-phone-header span {
    color: #9c7c57;
}

.retail-phone-hero {
    background:
        linear-gradient(
            135deg,
            #38271b,
            #77532f
        );

    color: var(--white);
}

.retail-phone-button {
    background: #b47736;
    color: var(--white);
}

.retail-phone-block {
    background: #6a4b2e;
}

.retail-phone-lines span {
    background: #5c4430;
}


/* =========================================================
   NONPROFIT DESIGN
========================================================= */

.nonprofit-demo-header {
    background: var(--white);
}

.nonprofit-demo-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;

    background: #2f7f58;
    border-radius: 50%;

    color: var(--white);

    font-size: 7px;
    font-weight: 900;
}

.nonprofit-demo-name {
    color: #214c36;
}

.nonprofit-demo-name span {
    color: #668b78;
}

.nonprofit-demo-lines span {
    background: #85a493;
}

.nonprofit-button {
    background: #2f7f58;
    color: var(--white);
}

.nonprofit-demo-hero {
    position: relative;

    min-height: 205px;
    padding: 28px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dceee5,
            #8fc5a6
        );

    color: #173f2b;
}

.nonprofit-circles {
    position: absolute;
    right: 30px;
    bottom: 16px;

    width: 145px;
    height: 120px;
}

.nonprofit-circles span {
    position: absolute;

    border-radius: 50%;
}

.nonprofit-circles span:nth-child(1) {
    top: 0;
    left: 28px;

    width: 66px;
    height: 66px;

    background: rgba(255, 255, 255, 0.72);
}

.nonprofit-circles span:nth-child(2) {
    bottom: 0;
    left: 0;

    width: 74px;
    height: 74px;

    background: rgba(47, 127, 88, 0.28);
}

.nonprofit-circles span:nth-child(3) {
    right: 0;
    bottom: 1px;

    width: 80px;
    height: 80px;

    background: rgba(255, 255, 255, 0.48);
}

.nonprofit-demo-buttons span:first-child {
    background: #2f7f58;
    color: var(--white);
}

.nonprofit-demo-buttons span:last-child {
    border: 1px solid #2f7f58;
}

.nonprofit-demo-programs {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    background: var(--white);
}

.nonprofit-demo-programs div {
    padding: 11px 7px;

    border-right: 1px solid var(--border);

    text-align: center;
}

.nonprofit-demo-programs strong,
.nonprofit-demo-programs span {
    display: block;
}

.nonprofit-demo-programs strong {
    color: #2f7f58;

    font-size: 7px;
}

.nonprofit-demo-programs span {
    color: #71867b;

    font-size: 5px;
}

.nonprofit-phone-header {
    color: #214c36;
}

.nonprofit-phone-header span {
    color: #668b78;
}

.nonprofit-phone-hero {
    background:
        linear-gradient(
            135deg,
            #dceee5,
            #8fc5a6
        );

    color: #173f2b;
}

.nonprofit-phone-button {
    background: #2f7f58;
    color: var(--white);
}

.nonprofit-phone-options {
    display: grid;
    gap: 5px;

    padding: 8px;
}

.nonprofit-phone-options span {
    padding: 6px;

    background: #e2f0e8;
    border-radius: 4px;

    color: #2f6a4c;

    font-size: 6px;
    text-align: center;
}


/* =========================================================
   DISPENSARY DESIGN
========================================================= */

.dispensary-age-notice {
    padding: 5px;

    background: #203f28;

    color: #dbe7d7;

    font-size: 5px;
    text-align: center;
}

.dispensary-demo-header {
    background: #edf3e8;
}

.dispensary-demo-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;

    background: #466e3d;
    border-radius: 50%;

    color: var(--white);

    font-size: 10px;
}

.dispensary-demo-logo {
    color: #2c5331;
}

.dispensary-demo-logo span {
    color: #6d8868;
}

.dispensary-demo-lines span {
    background: #7f9a79;
}

.dispensary-button {
    background: #466e3d;
    color: var(--white);
}

.dispensary-demo-hero {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(120px, 0.9fr);

    align-items: center;

    min-height: 205px;
    padding: 28px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dfead7,
            #94b684
        );

    color: #24482b;
}

.dispensary-demo-rings {
    position: absolute;
    right: -50px;
    bottom: -60px;

    width: 220px;
    height: 220px;

    border:
        1px solid rgba(49, 93, 50, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(49, 93, 50, 0.06),
        0 0 0 56px rgba(49, 93, 50, 0.04);
}

.dispensary-demo-buttons span:first-child {
    background: #466e3d;
    color: var(--white);
}

.dispensary-demo-buttons span:last-child {
    border: 1px solid #466e3d;
}

.dispensary-demo-product {
    position: relative;
    z-index: 3;

    width: 88px;
    margin: auto;
}

.dispensary-jar-lid {
    width: 66px;
    height: 15px;
    margin: auto;

    background: #273c28;
    border-radius: 5px 5px 2px 2px;
}

.dispensary-jar {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80px;
    height: 90px;
    margin: auto;

    background:
        linear-gradient(
            135deg,
            #f4f6eb,
            #b7c9aa
        );

    border:
        2px solid rgba(36, 72, 43, 0.25);
    border-radius: 9px 9px 14px 14px;

    color: #355f3a;

    font-size: 16px;
    font-weight: 900;

    box-shadow:
        0 15px 25px rgba(36, 72, 43, 0.2);
}

.dispensary-demo-categories {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: #315339;
}

.dispensary-demo-categories span {
    padding: 10px 5px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);

    color: #dce8da;

    font-size: 6px;
    text-align: center;
}

.dispensary-phone-screen {
    background: #edf3e8;
}

.dispensary-phone-age {
    padding: 4px;

    background: #203f28;

    color: #dbe7d7;

    font-size: 5px;
    text-align: center;
}

.dispensary-phone-header {
    color: #2c5331;
}

.dispensary-phone-header span {
    color: #6d8868;
}

.dispensary-phone-hero {
    background:
        linear-gradient(
            135deg,
            #dfead7,
            #94b684
        );

    color: #24482b;
}

.dispensary-phone-button {
    background: #466e3d;
    color: var(--white);
}

.dispensary-phone-options {
    display: grid;
    gap: 5px;

    padding: 8px;
}

.dispensary-phone-options span {
    padding: 6px;

    background: #dde9d7;
    border-radius: 4px;

    color: #3d633d;

    font-size: 6px;
    text-align: center;
}


/* =========================================================
   PROJECT ACTIONS
========================================================= */

.upgraded-card-content {
    padding-top: 36px;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.live-preview-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 17px;

    background: var(--navy);
    border-radius: var(--radius-small);

    color: var(--white);

    font-size: 13px;
    font-weight: 900;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.live-preview-button:hover {
    background: var(--navy-light);

    transform: translateY(-2px);
}

.disabled-preview {
    cursor: default;

    opacity: 0.82;
}

.project-quote-link {
    color: var(--navy);

    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.project-quote-link:hover {
    text-decoration: underline;
}


/* =========================================================
   UPGRADED PORTFOLIO RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .device-showcase {
        min-height: 420px;
    }

    .desktop-device {
        width: calc(100% - 55px);
    }

    .phone-device {
        right: 12px;
    }

}

@media (max-width: 700px) {

    .device-showcase {
        min-height: 360px;
        padding: 60px 14px 24px;
    }

    .desktop-device {
        width: 100%;

        border-width: 5px;
    }

    .phone-device {
        right: 8px;
        bottom: 14px;

        width: 90px;
        height: 190px;

        padding: 8px 6px 11px;
    }

    .phone-screen {
        height: 154px;
    }

    .demo-nav-lines {
        display: none;
    }

    .demo-header {
        gap: 7px;
        padding: 8px 10px;
    }

    .demo-header-button {
        padding: 6px 7px;
    }

    .demo-hero,
    .retail-demo-hero,
    .dispensary-demo-hero {
        grid-template-columns: 1fr;

        min-height: 190px;
        padding: 24px 16px;
    }

    .roofing-illustration,
    .auto-illustration,
    .retail-products,
    .nonprofit-circles,
    .dispensary-demo-product {
        display: none;
    }

    .demo-stat-row,
    .nonprofit-demo-programs {
        grid-template-columns: 1fr;
    }

    .demo-stat-row div,
    .nonprofit-demo-programs div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .government-demo-links,
    .auto-services-row,
    .dispensary-demo-categories {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .project-ribbon {
        top: 18px;
        left: 0;
    }

    .project-price-badge {
        top: 18px;
        right: 12px;
    }

    .project-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .live-preview-button,
    .project-quote-link {
        width: 100%;

        text-align: center;
    }

    .project-quote-link {
        display: block;

        padding: 10px;
    }

}




/* =========================================================
   VERSION 2.0 — TIGHTER LAYOUT + EXACT SECTION TARGETS
========================================================= */
:root { --header-offset: 94px; }
html { scroll-padding-top: var(--header-offset); }
main section[id], #contact, #faq, #featured-projects { scroll-margin-top: var(--header-offset); }
.section, .industries-section, .process-section, .results-section, .pricing-section,
.faq-section, .contact-section { padding-top: clamp(72px, 8vw, 110px); padding-bottom: clamp(72px, 8vw, 110px); }
.section-heading { margin-bottom: 42px; }
.card-grid, .benefit-grid, .industry-grid, .pricing-grid, .care-grid, .addons-grid { gap: 20px; }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.pricing-card { height: 100%; }
.ecommerce-package { border-top: 5px solid var(--steel); }

.any-business-section {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  padding:clamp(78px,9vw,125px) 7%; background:linear-gradient(135deg,var(--navy),#173f57); color:var(--white);
}
.any-business-copy h2 { max-width:720px; margin:12px 0 20px; font-size:clamp(42px,5vw,72px); line-height:.98; }
.any-business-copy p { max-width:720px; color:rgba(255,255,255,.78); font-size:17px; }
.any-business-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.industry-cloud { display:flex; flex-wrap:wrap; gap:10px; align-content:center; }
.industry-cloud span { padding:12px 15px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.17); border-radius:999px; font-weight:700; font-size:13px; }
.industry-cloud span:last-child { background:var(--steel); border-color:var(--steel); color:var(--white); }

.local-value-section { padding:0 7% 90px; background:var(--off-white); }
.local-value-grid { display:grid; grid-template-columns:repeat(4,1fr); max-width:1320px; margin:auto; background:var(--white); border:1px solid var(--border); }
.local-value-grid article { padding:26px; border-right:1px solid var(--border); }
.local-value-grid article:last-child { border-right:0; }
.local-value-grid strong,.local-value-grid span { display:block; }
.local-value-grid strong { color:var(--navy); font-size:18px; }
.local-value-grid span { margin-top:6px; color:var(--text-soft); font-size:12px; }

.portfolio-any-industry { max-width:1000px; margin:80px auto 10px; padding:45px; background:var(--navy); color:var(--white); text-align:center; border-radius:var(--radius-large); }
.portfolio-any-industry h2 { margin:10px 0 14px; font-size:clamp(35px,4vw,56px); }
.portfolio-any-industry p { max-width:720px; margin:0 auto 24px; color:rgba(255,255,255,.78); }
.live-preview-button:not(.disabled-preview) { background:var(--navy); color:var(--white); border-color:var(--navy); }
.live-preview-button:not(.disabled-preview):hover { background:var(--steel); border-color:var(--steel); transform:translateY(-2px); }

@media (max-width: 1180px) { .pricing-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 900px) {
  :root { --header-offset: 82px; }
  .any-business-section { grid-template-columns:1fr; gap:35px; }
  .local-value-grid { grid-template-columns:1fr 1fr; }
  .local-value-grid article:nth-child(2) { border-right:0; }
  .local-value-grid article { border-bottom:1px solid var(--border); }
}
@media (max-width: 620px) {
  .pricing-grid { grid-template-columns:1fr; }
  .any-business-section { padding-left:6%; padding-right:6%; }
  .any-business-actions { flex-direction:column; align-items:flex-start; }
  .local-value-grid { grid-template-columns:1fr; }
  .local-value-grid article { border-right:0; }
  .portfolio-any-industry { padding:34px 22px; }
}


/* CASA SOL RESTAURANT PORTFOLIO MOCKUP */
.restaurant-ribbon{background:#b33b2e}.restaurant-showcase{background:linear-gradient(145deg,#f6d08b,#b63e2e)}.restaurant-desktop-screen{background:#f8efe2}.restaurant-demo-header{background:#fff8ee}.restaurant-demo-logo{color:#a52f25}.restaurant-demo-logo span{display:block;color:#b97934;font-size:6px;letter-spacing:.17em}.restaurant-demo-lines span{background:#d6a371}.restaurant-button{background:#b33b2e}.restaurant-demo-hero{display:grid;grid-template-columns:1fr .9fr;min-height:185px;padding:25px;background:linear-gradient(135deg,#7e261e,#c64b34);color:#fff}.restaurant-demo-copy small{color:#ffd998;font-size:7px;text-transform:uppercase}.restaurant-demo-copy h3{margin:8px 0 6px;font-size:23px;line-height:.95}.restaurant-demo-copy p{max-width:210px;color:#f5ddd4;font-size:8px}.restaurant-demo-buttons span:first-child{background:#fff;color:#8b2c23}.restaurant-demo-buttons span:last-child{border-color:rgba(255,255,255,.55);color:#fff}.restaurant-plate{position:relative;align-self:center;justify-self:center;width:150px;height:150px;background:#f4e7d2;border:10px solid rgba(255,255,255,.35);border-radius:50%;box-shadow:0 18px 25px rgba(52,17,9,.28)}.restaurant-taco{position:absolute;width:80px;height:38px;background:#e9b84f;border-radius:50% 50% 12px 12px;border-bottom:8px solid #c5882c;transform:rotate(-8deg)}.restaurant-taco:before{position:absolute;top:9px;left:13px;width:52px;height:9px;background:repeating-linear-gradient(90deg,#3c7948 0 8px,#d4472f 8px 16px,#f3e0a0 16px 22px);border-radius:10px;content:""}.taco-one{top:28px;left:33px}.taco-two{top:63px;left:15px;transform:rotate(8deg)}.taco-three{top:91px;left:45px;transform:rotate(-3deg)}.restaurant-demo-categories{display:grid;grid-template-columns:repeat(4,1fr);background:#fff}.restaurant-demo-categories span{padding:10px;border-right:1px solid #eee0d2;color:#8c4d34;font-size:7px;font-weight:800;text-align:center}.restaurant-phone-screen{background:#fff3e5}.restaurant-phone-header{background:#fff;color:#a52f25}.restaurant-phone-header span{display:block;color:#b97934;font-size:5px;letter-spacing:.12em}.restaurant-phone-hero{background:linear-gradient(145deg,#7e261e,#c64b34);color:#fff}.restaurant-phone-hero small{color:#ffd998}.restaurant-phone-button{background:#fff!important;color:#8b2c23!important}.restaurant-phone-options{display:grid;grid-template-columns:repeat(3,1fr);padding:8px;background:#fff}.restaurant-phone-options span{color:#a55836;font-size:5px;font-weight:800;text-align:center}


/* =========================================================
   PORTFOLIO INDUSTRY COVER REDESIGN
   Replaces repeated computer/phone mockups with distinctive
   business-type covers.
========================================================= */

.upgraded-portfolio-grid {
    gap: 2rem;
}

.upgraded-project-card {
    overflow: hidden;
    border: 1px solid rgba(16, 33, 52, 0.1);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 33, 52, 0.1);
}

.upgraded-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(16, 33, 52, 0.16);
}

.industry-cover {
    --cover-bg: #172b3a;
    --cover-accent: #e7b24e;
    --cover-ink: #ffffff;
    position: relative;
    min-height: 390px;
    padding: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    isolation: isolate;
    background: var(--cover-bg);
    color: var(--cover-ink);
}

.industry-cover::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -90px;
    bottom: -105px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.045),
        0 0 0 72px rgba(255, 255, 255, 0.035);
    z-index: -1;
}

.industry-cover::after {
    content: "";
    position: absolute;
    inset: auto auto -45px -45px;
    width: 145px;
    height: 145px;
    background: var(--cover-accent);
    transform: rotate(18deg);
    opacity: 0.95;
    z-index: -1;
}

.industry-cover-texture {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom right, #000 10%, transparent 80%);
}

.industry-cover-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.industry-cover-top span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    opacity: 0.88;
}

.industry-cover-top strong {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    font-size: 0.8rem;
}

.industry-cover-middle {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.industry-cover-symbol {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: var(--cover-accent);
    color: #13202a;
    font-size: 1.75rem;
    font-weight: 800;
}

.industry-cover h3 {
    margin: 0;
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.83;
    text-transform: uppercase;
}

.industry-cover-middle p {
    max-width: 440px;
    margin: 1.35rem 0 0;
    color: inherit;
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.55;
    opacity: 0.82;
}

.industry-cover-chips {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 2rem;
}

.industry-cover-chips span {
    padding: 0.52rem 0.68rem;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(5px);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* Every industry now has its own visual identity. */

.industry-cover-roofing {
    --cover-bg: linear-gradient(145deg, #112938, #285a70);
    --cover-accent: #f2b84b;
}

.industry-cover-roofing .industry-cover-texture {
    background-image:
        repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 2px, transparent 2px 28px);
}

.industry-cover-automotive {
    --cover-bg: linear-gradient(145deg, #17191c, #3b4045);
    --cover-accent: #e44736;
}

.industry-cover-automotive .industry-cover-texture {
    background-image:
        radial-gradient(circle at center, rgba(255,255,255,.18) 0 2px, transparent 3px);
    background-size: 25px 25px;
}

.industry-cover-government {
    --cover-bg: linear-gradient(145deg, #5f171c, #a42d30);
    --cover-accent: #d5ae6c;
}

.industry-cover-government .industry-cover-texture {
    background-image:
        linear-gradient(30deg, rgba(255,255,255,.18) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.18) 87.5%, rgba(255,255,255,.18)),
        linear-gradient(150deg, rgba(255,255,255,.18) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.18) 87.5%, rgba(255,255,255,.18));
    background-size: 44px 76px;
}

.industry-cover-retail {
    --cover-bg: linear-gradient(145deg, #24211e, #5d4437);
    --cover-accent: #c98858;
}

.industry-cover-retail .industry-cover-texture {
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 18px);
}

.industry-cover-nonprofit {
    --cover-bg: linear-gradient(145deg, #174d58, #2a7a7e);
    --cover-accent: #e47a5f;
}

.industry-cover-nonprofit .industry-cover-texture {
    background-image:
        radial-gradient(circle, rgba(255,255,255,.2) 0 1px, transparent 2px);
    background-size: 20px 20px;
}

.industry-cover-restaurant {
    --cover-bg: linear-gradient(145deg, #84251f, #cf4b32);
    --cover-accent: #f0bc4f;
}

.industry-cover-restaurant .industry-cover-texture {
    background-image:
        repeating-radial-gradient(circle at 0 0, transparent 0 12px, rgba(255,255,255,.13) 13px 14px);
    background-size: 38px 38px;
}

.industry-cover-dispensary {
    --cover-bg: linear-gradient(145deg, #173d2c, #3d7355);
    --cover-accent: #c89c6e;
}

.industry-cover-dispensary .industry-cover-texture {
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.14) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,.14) 25%, transparent 25%);
    background-size: 38px 38px;
}

.upgraded-card-content {
    padding-top: 1.7rem;
}

.portfolio-title-row .portfolio-number {
    display: none;
}

.project-ribbon,
.project-price-badge {
    z-index: 5;
}

@media (max-width: 760px) {
    .industry-cover {
        min-height: 330px;
        padding: 1.45rem;
    }

    .industry-cover h3 {
        font-size: clamp(2.45rem, 15vw, 4rem);
    }

    .industry-cover-symbol {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }
}
