:root {
    --brand-green: #6fbb3b;
    --brand-green-dark: #5ea032;
    --brand-green-light: #84c955;

    --charcoal-dark: #1f2426;
    --charcoal-medium: #343a3c;
    --charcoal-light: #444b4d;
}

/* =========================
   BASE / GLOBAL
========================= */

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

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--charcoal-medium);
    color: #e6e6e6;
    line-height: 1.6;
}

a {
    color: var(--brand-green);
}

a:hover {
    color: var(--brand-green-dark);
}

h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2,
h3 {
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d8d8d8;
}

/* =========================
   LAYOUT
========================= */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

section {
    padding: 60px 0;
}

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

.btn-primary {
    display: inline-block;
    background: var(--brand-green);
    color: #111;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: var(--charcoal-dark);
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    padding: 10px 26px;
    border-radius: 999px;
    text-decoration: none;
    margin: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--brand-green);
    color: #111;
}

.free-assessment-btn {
    background-color: #6fbb3b;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    transition: all 0.2s ease;
    color: #1f2628;
}

.free-assessment-btn:hover {
    background-color: #5aa12f;
    color: #000000;
    transform: translateY(-1px);
}

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

.site-header {
    background: #ffffff url("/images/logo-nav.png") no-repeat left top;
    background-size: auto 86px;
    height: 86px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding-bottom: 4px;
    transition: color 0.25s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--brand-green);
    transform: translateY(-1px);
}

.main-nav a.contact {
    background: var(--brand-green);
    position: relative;
    top: -2px;
    color: #111;
    padding: 8px 16px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 999px;
    transition: all 0.25s ease;
}

/* =========================
   HOME PAGE
========================= */

/* Hero */

.hero {
    background: url("/images/hero-bg-logo.png") center center / cover no-repeat;
    color: #e6e6e6;
    text-align: center;
    padding: 0;
    min-height: 430px;
    position: relative;
}

.hero .container {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 35px;
    text-align: center;
}

.hero h1 {
    margin-bottom: -10px;
    color: var(--brand-green-light);
}

.hero-sub {
    margin-top: 0;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sections */

.services-overview {
    padding-top: 30px;
    background: var(--charcoal-medium);
}

.services-overview h2,
.common-problems h2,
.why-us h2,
.blog-preview h2 {
    text-align: center;
    font-size: 1.8rem;
}

.services-overview h2 {
    margin-bottom: 20px;
}

.common-problems h2,
.why-us h2,
.blog-preview h2 {
    margin-bottom: 30px;
}

.common-problems,
.blog-preview {
    background: var(--charcoal-medium);
}

.business-it,
.why-us {
    background: var(--charcoal-dark);
}

.cta-contact {
    background: var(--brand-green);
    padding: 20px 0 6px;
}

/* Service grid */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    position: relative;
    aspect-ratio: 3 / 2;
    background: #313131;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
    border: 1px solid #3a3a3a;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: inherit;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    border-color: var(--brand-green);
}

.service-card h3,
.service-card p {
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.service-card h3 {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--brand-green-light);
}

.service-card p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: center;
    max-width: 85%;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.service-card a {
    color: var(--brand-green);
    font-weight: bold;
    text-decoration: none;
}

.service-card a:hover {
    color: var(--brand-green-dark);
}

.service-card.repair {
    background-image: url("/images/services-repair.png");
}

.service-card.virus {
    background-image: url("/images/services-virus.png");
}

.service-card.data {
    background-image: url("/images/services-data.png");
}

.service-card.laptop {
    background-image: url("/images/services-laptop.png");
}

.service-card.tuneup {
    background-image: url("/images/services-tuneup.png");
}

.service-card.network {
    background-image: url("/images/services-network.png");
}

/* Business IT section */

.business-it {
    position: relative;
    background: url('/images/it-bg.png') center/cover no-repeat;
    padding: 60px 0;
}

.business-it::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.55);
    z-index: 0;
}

.business-it .container {
    position: relative;
    z-index: 1;
}

.business-it h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.business-it-content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.business-it-text {
    max-width: 500px;
}

.business-it-features ul {
    list-style: none;
    padding: 0;
}

.business-it-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.business-it-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #7ed957;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.business-it-cta {
    text-align: center;
}

/* Blog */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.blog-grid article {
    background: var(--charcoal-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
    border: 1px solid #3a3a3a;
}

.blog-grid article:hover {
    border-color: var(--brand-green);
}

.blog-grid article a {
    color: var(--brand-green);
}

.blog-grid article a:hover {
    color: var(--brand-green-dark);
}

.blog-grid h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.blog-grid p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-preview .btn-secondary {
    display: table;
    margin: 30px auto 0;
}

/* Lists */

.problem-list,
.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    max-width: 800px;
    margin: 30px auto 0;
    list-style: none;
    padding: 0;
}

.problem-list li,
.why-list li {
    position: relative;
    padding-left: 18px;
}

.problem-list li::before,
.why-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

/* CTA */

.cta-contact h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-contact p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.cta-contact .container {
    padding: 10px 0 0;
    text-align: center;
}

.cta-contact a {
    color: var(--charcoal-light);
    text-decoration: none;
}

.cta-contact a:hover {
    color: #111;
}

/* =========================
   COMPUTER REPAIR PAGE
========================= */

.service-hero {
    color: #e6e6e6;
    text-align: center;
    padding: 0;
    min-height: 360px;
    position: relative;
}

.repair-page-hero {
    background: url("/images/hero-bg.png") center center / cover no-repeat;
}

.service-hero .container {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 35px;
    text-align: center;
}

.service-hero h1 {
    margin-bottom: 8px;
    color: var(--brand-green-light);
    font-size: 2.4rem;
}

.service-hero-sub {
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 850px;
    font-size: 1.08rem;
}

.service-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-intro {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.pricing-intro h2,
.pricing-why h2 {
    text-align: center;
    font-size: 1.8rem;
}

.pricing-intro h2 {
    margin-bottom: 20px;
}

.pricing-why h2 {
    margin-bottom: 30px;
}

.pricing-intro p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section {
    background: var(--charcoal-dark);
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
}

.pricing-card h3 {
    color: var(--brand-green-light);
    font-size: 1.15rem;
    margin-bottom: 18px;
    text-align: center;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list span {
    color: #e6e6e6;
    line-height: 1.4;
}

.price-list strong {
    color: #ffffff;
    white-space: nowrap;
    font-weight: 700;
}

.pricing-note {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #cfcfcf;
    text-align: center;
}

.pricing-disclaimer {
    margin-top: 35px;
    text-align: center;
}

.pricing-disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #d8d8d8;
}

.pricing-why {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.pricing-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-why .why-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin: 0;
    list-style: none;
    padding: 0;
}

.pricing-why .why-list li {
    position: relative;
    padding-left: 18px;
}

.pricing-why .why-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

/* =========================
   BUSINESS IT PAGE
========================= */

.business-page-hero {
    background: url("/images/hero-business-it.png") center center / cover no-repeat;
}

.business-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.6);
}

.business-page-hero .container {
    position: relative;
    z-index: 1;
}

.business-page-intro,
.business-page-backup {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.business-page-results {
    background: var(--charcoal-light);
    padding: 60px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.business-page-services {
    padding: 80px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.business-page-breakfix,
.business-page-why {
    background: var(--charcoal-dark);
    padding: 60px 0;
}

.business-page-backup {
    background: linear-gradient(180deg, #1a1f24, #12161a);
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.business-page-offer {
    background: var(--brand-green);
    padding: 24px 0 8px;
}

.business-page-intro h2,
.business-page-breakfix h2,
.business-page-services h2,
.business-page-results h2,
.business-page-backup h2,
.business-page-why h2,
.business-page-offer h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.business-page-intro h2,
.business-page-breakfix h2,
.business-page-services h2,
.business-page-results h2,
.business-page-backup h2,
.business-page-why h2 {
    color: var(--brand-green-light);
    position: relative;
    padding-bottom: 18px;
}

.business-page-intro h2::after,
.business-page-breakfix h2::after,
.business-page-services h2::after,
.business-page-results h2::after,
.business-page-backup h2::after,
.business-page-why h2::after {
    content: "";
    display: block;
    width: 140px;
    height: 24px;
    margin: 10px auto 0;
    background: url('/images/heartbeat-line.svg') center center / contain no-repeat;
    opacity: 0.9;
}

.business-copy-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.business-page-breakfix .container {
    max-width: 1300px;
}

.business-page-breakfix .business-copy-block {
    max-width: 100%;
}

.business-page-breakfix .business-copy-block p:first-of-type,
.business-page-breakfix .business-copy-block p:last-of-type,
.business-page-services .business-copy-block p,
.business-page-services .emphasis-line p {
    text-align: center;
}

.business-page-breakfix .business-copy-block p:last-of-type {
    margin-top: 24px;
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.business-service-card {
    position: relative;
    background: #2f3538 url("/images/managed-it-card-bg.png") center/cover no-repeat;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
    overflow: hidden;
}

.business-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 24, 28, 0.48);
    z-index: 1;
}

.business-service-card > * {
    position: relative;
    z-index: 2;
}

.business-service-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
}

.business-service-card h3 {
    color: var(--brand-green-light);
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: center;
}

.business-service-card p {
    margin-bottom: 0;
    text-align: center;
    line-height: 1.6;
}

.emphasis-line {
    margin-top: 25px;
}

.emphasis-line p {
    font-size: 1.1rem;
    color: #ffffff;
}

.business-page-breakfix .why-list,
.business-page-why .why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    max-width: 850px;
    margin: 30px auto 0;
    list-style: none;
    padding: 0;
}

.business-page-breakfix .why-list li,
.business-page-why .why-list li {
    position: relative;
    padding-left: 18px;
}

.business-page-breakfix .why-list li::before,
.business-page-why .why-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

.business-page-offer h2,
.business-page-offer p {
    color: #111;
    text-align: center;
}

.business-offer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.business-page-offer .btn-primary {
    background: #111;
    color: var(--brand-green);
}

.business-page-offer .btn-primary:hover {
    background: #222;
    color: var(--brand-green);
}

.business-page-offer .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.business-page-offer .btn-secondary:hover {
    background: #111;
    color: var(--brand-green);
}

.bg-nodes {
    background: #2f3538 url("/images/bg-nodes.png") center/cover no-repeat;
}

.bg-circuit {
    background: #2f3538 url("/images/bg-circuit.png") center/cover no-repeat;
}

.bg-minimal {
    background: #2f3538 url("/images/bg-minimal.png") center/cover no-repeat;
}

/* =========================
   OFFER PAGE
========================= */

.offer-page-hero {
    background: url("/images/hero-bg-offer.png") center center / cover no-repeat;
}

.offer-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.68);
}

.offer-page-hero .container {
    position: relative;
    z-index: 1;
}

.offer-page-intro,
.offer-page-local,
.offer-page-fit,
.offer-page-next {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.offer-page-why {
    background: var(--charcoal-dark);
    padding: 60px 0;
}

.offer-page-cta {
    background: var(--brand-green);
    padding: 30px 0 10px;
}

.offer-page-intro h2,
.offer-page-why h2,
.offer-page-local h2,
.offer-page-fit h2,
.offer-page-next h2,
.offer-page-cta h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--brand-green-light);
    position: relative;
    padding-bottom: 18px;
}

.offer-page-intro h2::after,
.offer-page-why h2::after,
.offer-page-local h2::after,
.offer-page-fit h2::after,
.offer-page-next h2::after {
    content: "";
    display: block;
    width: 140px;
    height: 24px;
    margin: 10px auto 0;
    background: url('/images/heartbeat-line.svg') center center / contain no-repeat;
    opacity: 0.9;
}

.offer-copy-block,
.offer-page-next .offer-copy-block {
    max-width: 850px;
    margin: 0 auto 25px;
}

.offer-copy-block p,
.offer-page-next .offer-copy-block p {
    text-align: center;
    margin-bottom: 18px;
}

.offer-page-intro .why-list,
.offer-page-fit .why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    max-width: 850px;
    margin: 30px auto 0;
    list-style: none;
    padding: 0;
}

.offer-page-intro .why-list li,
.offer-page-fit .why-list li {
    position: relative;
    padding-left: 18px;
}

.offer-page-intro .why-list li::before,
.offer-page-fit .why-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

.offer-page-cta h2,
.offer-page-cta p {
    color: #111;
    text-align: center;
}

.offer-page-cta a {
    color: var(--charcoal-dark);
    text-decoration: none;
}

.offer-page-cta a:hover {
    color: #111;
}

/* =========================
   ABOUT PAGE
========================= */

.about-page-hero {
    position: relative;
    background: url("/images/hero-about-bg.png") center center / cover no-repeat;
}

.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.38);
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-owner-section {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.about-owner-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.about-owner-photo {
    align-self: start;
    margin-top: 75px;
}

.about-owner-photo img {
    width: 100%;
    max-width: 280px;
    border-radius: 18px;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.about-owner-copy h2,
.about-testimonials-section h2 {
    text-align: center;
    color: var(--brand-green-light);
    margin-bottom: 30px;
}

.about-owner-copy p {
    margin-bottom: 18px;
}

.about-testimonials-section {
    background: var(--charcoal-dark);
    padding: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #3a3a3a;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.28);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(111, 187, 59, 0.45);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.testimonial-meta strong {
    color: #fff;
    font-size: 1rem;
}

.testimonial-meta span {
    color: #bfc4c6;
    font-size: 0.92rem;
}

.testimonial-card p {
    margin-bottom: 0;
    color: #e3e3e3;
}

.about-cta {
    background: var(--brand-green);
    padding: 35px 0 10px;
    text-align: center;
}

.about-cta h2,
.about-cta p {
    color: #111;
}

.about-cta a {
    color: var(--charcoal-dark);
    text-decoration: none;
}

.about-cta a:hover {
    color: #111;
}

.about-cta .btn-secondary {
    display: inline-block;
    background: var(--charcoal-dark);
    color: var(--brand-green-light);
    border: 2px solid var(--brand-green-light);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.about-cta .btn-secondary:hover {
    background: var(--brand-green-light);
    color: var(--charcoal-dark);
    border-color: var(--brand-green-light);
}

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

.contact-page-hero {
    position: relative;
    background: url("/images/hero-bg-contact.png") center center / cover no-repeat;
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.42);
}

.contact-page-hero .container {
    position: relative;
    z-index: 1;
}

.contact-page-section {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 35px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--brand-green-light);
    margin-bottom: 18px;
}

.contact-info-block {
    margin-top: 24px;
}

.contact-info-block h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-block p {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--brand-green-light);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #ffffff;
}

.contact-note {
    color: #c7c7c7;
    font-size: 0.95rem;
    margin-top: 6px;
}

.form-intro {
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #2a2f31;
    border: 1px solid #4a4f52;
    border-radius: 10px;
    color: #ffffff;
    padding: 14px 15px;
    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-green-light);
    box-shadow: 0 0 0 2px rgba(111, 187, 59, 0.18);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
}

#contact-submit-btn.is-submitting,
#contact-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* =========================
   REVIEW PAGE
========================= */

.review-page-hero {
    position: relative;
    background: url("/images/hero-bg-contact.png") center center / cover no-repeat;
}

.review-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.45);
}

.review-page-hero .container {
    position: relative;
    z-index: 1;
}

.review-page-section {
    background: var(--charcoal-medium);
    padding: 60px 0;
}

.review-page-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 35px;
    align-items: start;
}

.review-info-card,
.review-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.review-info-card h2,
.review-form-card h2 {
    color: var(--brand-green-light);
    margin-bottom: 18px;
}

.review-info-block {
    margin-top: 24px;
}

.review-info-block h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.review-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.review-form input,
.review-form select,
.review-form textarea {
    background: #2a2f31;
    border: 1px solid #4a4f52;
    border-radius: 10px;
    color: #ffffff;
    padding: 14px 15px;
    font: inherit;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--brand-green-light);
    box-shadow: 0 0 0 2px rgba(111, 187, 59, 0.18);
}

.review-form textarea {
    resize: vertical;
    min-height: 170px;
}

.checkbox-row {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
    padding: 0;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#review-submit-btn.is-submitting,
#review-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* =========================
   RESPONSIVE
========================= */

@media (hover: none) {
    .service-card p {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .contact-page-grid,
    .review-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        background-size: auto 72px;
        height: 72px;
    }

    .main-nav {
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 11px);
        right: -14px;
        width: min(260px, 88vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(0,0,0,0.18);
        overflow: hidden;
        padding: 6px 0;
        margin: 0;
        list-style: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 18px;
        color: #222;
        font-size: 0.98rem;
        font-weight: 500;
        line-height: 1.2;
        border-bottom: 1px solid #ececec;
        margin: 0;
        height: auto;
        min-height: 0;
    }

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

    .nav-menu a.contact {
        background: none;
        color: #222;
        border-radius: 0;
        padding: 12px 18px;
        top: 0;
    }

    .nav-menu a:hover {
        background: #f7f7f7;
        transform: none;
        color: var(--brand-green);
    }

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

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

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

    .business-it-content {
        flex-direction: column;
        text-align: center;
    }

    .business-it-text {
        max-width: 100%;
    }

    .business-it-features li {
        padding-left: 0;
    }

    .business-it-features li::before {
        display: none;
    }

    .problem-list,
    .business-page-breakfix .why-list,
    .business-page-why .why-list,
    .offer-page-intro .why-list,
    .offer-page-fit .why-list {
        grid-template-columns: 1fr;
    }

    .service-hero {
        min-height: 320px;
    }

    .service-hero .container {
        min-height: 320px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero-sub {
        font-size: 1rem;
    }

    .pricing-grid,
    .pricing-why-grid {
        grid-template-columns: 1fr;
    }

    .price-list li {
        flex-direction: column;
        gap: 4px;
    }

    .price-list strong {
        white-space: normal;
    }

    .about-owner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-owner-photo img {
        margin: 0 auto;
    }

    .testimonial-header {
        justify-content: center;
        text-align: left;
    }

    .hero {
        min-height: 640px;
        background-position: 52% -120px;
        background-size: cover;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(10, 15, 20, 0.18) 0%,
            rgba(10, 15, 20, 0.34) 38%,
            rgba(10, 15, 20, 0.58) 100%
        );
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1;
        min-height: 640px;
        justify-content: flex-start;
        align-items: center;
        padding: 255px 0 36px;
    }

    .hero h1 {
        margin-bottom: 12px;
        font-size: 2.15rem;
        line-height: 1.05;
        max-width: 320px;
    }

    .hero-sub {
        max-width: 320px;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .hero-buttons a {
        width: min(320px, 84vw);
        margin: 0;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 680px;
        background-position: 52% -120px;
    }

    .hero .container {
        min-height: 680px;
        padding-top: 275px;
    }

    .hero h1 {
        font-size: 1.95rem;
        max-width: 290px;
    }

    .hero-sub {
        max-width: 290px;
        font-size: 0.98rem;
    }
}