/* ============================================
   SECTIONS - Services, About, Contact, etc.
   Tron / Matrix Theme
   ============================================ */

/* ========================================
   TRON SECTION DIVIDERS
   ======================================== */

.section-divider {
    position: relative;
    height: 60px;
    background: #000;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 51, 51, 0.1) 10%,
        rgba(255, 51, 51, 0.5) 50%,
        rgba(255, 51, 51, 0.1) 90%,
        transparent 100%);
    box-shadow: 0 0 10px var(--accent);
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow:
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 30px var(--accent);
    animation: node-pulse 2s ease-in-out infinite;
}

@keyframes node-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

/* Circuit Divider Variant */
.circuit-divider {
    position: relative;
    height: 80px;
    background: #000;
    overflow: hidden;
}

.circuit-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Tron Corner Accents for Sections */
.tron-section {
    position: relative;
}

.tron-section::before,
.tron-section::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.tron-section::before {
    top: 20px;
    left: 20px;
    border-top: 2px solid rgba(255, 51, 51, 0.3);
    border-left: 2px solid rgba(255, 51, 51, 0.3);
}

.tron-section::after {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid rgba(255, 51, 51, 0.3);
    border-right: 2px solid rgba(255, 51, 51, 0.3);
}

/* Services Section */
.services {
    background: #000;
    padding: 100px 0;
    position: relative;
}

.services-compact {
    padding: 72px 0;
}

/* Design Header with Hex Network */
.design-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -4rem;
}

.compact-services-header {
    margin-top: 0;
    margin-bottom: 1.6rem;
}

.services-about-link {
    display: inline-flex;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 51, 51, 0.45);
    font-size: 0.78rem;
    text-decoration: none;
}

.services-about-link:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.hex-network-icon {
    width: 120px;
    height: 135px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.4));
}

.hex-network-icon .pulse-dot {
    animation: hex-pulse 2s ease-in-out infinite;
}

.hex-network-icon .pulse-1 {
    animation-delay: 0s;
}

.hex-network-icon .pulse-2 {
    animation-delay: 0.7s;
}

.hex-network-icon .pulse-3 {
    animation-delay: 1.4s;
}

@keyframes hex-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.services-subline {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    font-style: italic;
    letter-spacing: 0.02em;
    max-width: 52ch;
    text-align: center;
}

.services-subline-fine {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 56ch;
    text-align: center;
}

.service-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.service-offer-grid-compact {
    align-items: stretch;
}

.service-term-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
    gap: 1rem;
}

.service-term-panel {
    min-width: 0;
}

.service-term-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.service-term-header span {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-term-header p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

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

.service-offer-grid-long {
    grid-template-columns: 1fr;
}

.service-offer-card {
    min-height: 100%;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        #030303;
    position: relative;
    overflow: hidden;
}

.service-offer-grid-compact .service-offer-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.service-offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-top: 2px solid rgba(255, 51, 51, 0.35);
    opacity: 0.7;
}

.service-offer-card-website-refresh-maintenance::before {
    border-top-color: rgba(0, 255, 65, 0.55);
}

.service-offer-card:hover {
    background:
        linear-gradient(180deg, rgba(255, 51, 51, 0.07), rgba(255, 255, 255, 0.016)),
        #030303;
}

.service-offer-card-website-refresh-maintenance:hover {
    background:
        linear-gradient(180deg, rgba(0, 255, 65, 0.07), rgba(255, 255, 255, 0.016)),
        #030303;
}

.service-offer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.service-offer-kicker,
.service-routing-kicker {
    color: rgba(255, 255, 255, 0.48);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-offer-status {
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    padding: 0.22rem 0.48rem;
    font-size: 0.68rem;
    white-space: nowrap;
}

.service-offer-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1.3rem;
    border: 1px solid rgba(255, 51, 51, 0.35);
    border-radius: 8px;
    color: var(--accent);
    background: rgba(255, 51, 51, 0.08);
}

.service-offer-grid-compact .service-offer-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.85rem;
}

.service-offer-card-website-refresh-maintenance .service-offer-icon {
    color: #00ff41;
    border-color: rgba(0, 255, 65, 0.36);
    background: rgba(0, 255, 65, 0.08);
}

.service-offer-icon i {
    font-size: 1.45rem;
}

.service-offer-grid-compact .service-offer-icon i {
    font-size: 1.1rem;
}

.service-offer-card h3 {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.28rem;
    line-height: 1.22;
    margin-bottom: 0.8rem;
}

.service-offer-grid-compact .service-offer-card h3 {
    font-size: 1.04rem;
    margin: 0.35rem 0 0.55rem;
}

.service-offer-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.62;
    margin-bottom: 1.2rem;
}

.service-offer-grid-compact .service-offer-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.service-offer-list li {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.84rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.service-offer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.55);
}

.service-offer-card-website-refresh-maintenance .service-offer-list li::before {
    background: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.service-offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
}

.service-offer-tags span {
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 4px;
    padding: 0.28rem 0.5rem;
    font-size: 0.72rem;
}

.service-offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}

.service-offer-grid-compact .service-offer-actions {
    gap: 0.45rem;
}

.service-offer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.65rem 0.82rem;
    border: 1px solid rgba(255, 51, 51, 0.4);
    border-radius: 4px;
    color: #fff;
    background: rgba(255, 51, 51, 0.1);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-offer-grid-compact .service-offer-link {
    min-height: 36px;
    padding: 0.52rem 0.68rem;
    font-size: 0.72rem;
}

.service-offer-link:hover {
    border-color: var(--accent);
    background: rgba(255, 51, 51, 0.2);
    box-shadow: 0 0 18px rgba(255, 51, 51, 0.24);
}

.service-offer-link-secondary {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
}

.service-offer-card-website-refresh-maintenance .service-offer-link,
.maintenance-plan-strip .service-offer-link {
    border-color: rgba(0, 255, 65, 0.38);
    background: rgba(0, 255, 65, 0.09);
}

.service-offer-card-website-refresh-maintenance .service-offer-link:hover,
.maintenance-plan-strip .service-offer-link:hover {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.16);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.2);
}

.service-routing-band,
.maintenance-plan-strip {
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.service-routing-band {
    display: grid;
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
    gap: 1.5rem;
    padding: 1.5rem;
}

.service-routing-intro h3,
.maintenance-plan-strip h3 {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.35;
    margin-top: 0.55rem;
}

.service-routing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.service-routing-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
}

.service-routing-item span {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding-top: 0.15rem;
}

.service-routing-item p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    font-size: 0.86rem;
}

.service-routing-item strong {
    color: rgba(255, 255, 255, 0.92);
}

.maintenance-plan-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    background:
        linear-gradient(90deg, rgba(0, 255, 65, 0.08), rgba(255, 255, 255, 0.02) 45%),
        rgba(255, 255, 255, 0.02);
}

.maintenance-plan-strip p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.65rem;
    max-width: 82ch;
    line-height: 1.6;
    font-size: 0.92rem;
}

.service-maintenance-note {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 255, 65, 0.18);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.045);
}

.service-maintenance-note p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.service-maintenance-note strong {
    color: rgba(255, 255, 255, 0.94);
}

.service-maintenance-note .service-offer-link {
    border-color: rgba(0, 255, 65, 0.38);
    background: rgba(0, 255, 65, 0.09);
    align-self: flex-start;
    flex: 0 0 auto;
}

.service-focus {
    padding: 62px 0 68px;
    background:
        linear-gradient(180deg, #000 0%, #050505 46%, #000 100%);
}

.service-focus .container {
    position: relative;
    z-index: 1;
}

.service-focus-header {
    max-width: 760px;
    margin-bottom: 1.35rem;
}

.service-focus-header h2 {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.02;
    margin: 0.35rem 0 0.7rem;
    letter-spacing: 0;
}

.service-focus-header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 58ch;
    margin: 0;
}

.domain-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.domain-list.domain-list-three {
    grid-template-columns: repeat(3, 1fr);
}

.domain-list li {
    position: relative;
    padding: 1rem 1rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.4;
}

.domain-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.domain-cta-wrap {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

@media (max-width: 600px) {
    .domain-list,
    .domain-list.domain-list-three { grid-template-columns: 1fr; }
}

.focus-lane-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.09);
}

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

.focus-lane {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 0;
    background:
        linear-gradient(160deg, rgba(255, 51, 51, 0.07), rgba(255, 255, 255, 0.012) 48%),
        #050505;
    position: relative;
}

.focus-lane::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: rgba(255, 51, 51, 0.62);
}

.focus-lane-visual {
    padding: 1.75rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-lane-visual svg {
    width: 100%;
    overflow: visible;
}

.focus-lane-content {
    padding: 1.25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Neural net node pulse */
@keyframes fl-pulse {
    0%, 100% { opacity: 0.9; filter: drop-shadow(0 0 4px var(--accent)); }
    50% { opacity: 0.4; filter: none; }
}
.fl-node { animation: fl-pulse 2.8s ease-in-out infinite; }
.fl-node--delay1 { animation-delay: 0.6s; }
.fl-node--delay2 { animation-delay: 1.2s; }
.fl-node-out { animation: fl-pulse 1.4s ease-in-out infinite; }

/* Shield scan line */
@keyframes fl-scan {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-22px); opacity: 0.8; }
}
.fl-scan { animation: fl-scan 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

.focus-lane span {
    display: block;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 18px rgba(20, 255, 86, 0.25);
}

.focus-lane h3 {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.45rem;
    line-height: 1.2;
    margin: 0.8rem 0 0.65rem;
}

.focus-lane p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}

.focus-lane-examples-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.38);
    margin: 0.75rem 0 0.35rem;
}

.focus-lane-examples {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: -0.35rem 0 1.25rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.45;
}

.focus-lane-examples li {
    position: relative;
    padding-left: 1rem;
}

.focus-lane-examples li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.focus-lane-examples a {
    display: inline-block;
    color: #9cffb2;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 255, 178, 0.62);
    text-shadow: 0 0 12px rgba(20, 255, 86, 0.34);
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.focus-lane-examples a:hover {
    color: #d8ffe1;
    border-color: #d8ffe1;
    text-shadow: 0 0 18px rgba(20, 255, 86, 0.72);
    transform: translateX(2px);
}

.focus-lane-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    color: #050505;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.73rem;
    font-weight: 800;
    text-decoration: none;
}

.focus-lane-link:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.focus-footnote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.focus-footnote span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.45;
}

.focus-footnote a {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 51, 51, 0.45);
}

.focus-footnote a:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.service-studio {
    padding: 68px 0 74px;
    background:
        linear-gradient(180deg, #000 0%, #050505 44%, #000 100%);
}

.service-studio .container {
    position: relative;
    z-index: 1;
}

.service-studio-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 1.35rem;
}

.service-section-label {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-studio-header h2 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.02;
    margin: 0.35rem 0 0.8rem;
}

.service-studio-header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.62;
    max-width: 66ch;
    margin: 0;
}

.service-studio .services-about-link {
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.82rem;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.service-studio .services-about-link:hover {
    color: #fff;
    border-color: rgba(255, 51, 51, 0.56);
    background: rgba(255, 51, 51, 0.12);
}

.service-studio-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1.08fr) minmax(240px, 0.78fr) minmax(290px, 0.86fr);
    grid-template-areas:
        "feature refresh continuity"
        "feature readiness continuity";
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.service-lane-card {
    min-width: 0;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    padding: 1.22rem;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.service-lane-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 51, 51, 0.62);
}

.service-lane-card-feature {
    grid-area: feature;
    min-height: 100%;
    padding: 1.55rem;
    background:
        linear-gradient(140deg, rgba(255, 51, 51, 0.13), rgba(255, 255, 255, 0.025) 42%),
        #050505;
}

.service-lane-card-website-refresh-maintenance {
    grid-area: refresh;
}

.service-lane-card-forensic-readiness {
    grid-area: readiness;
}

.service-lane-card-continuity {
    grid-area: continuity;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        #050505;
}

.service-lane-card-continuity::before {
    background: rgba(255, 255, 255, 0.3);
}

.service-lane-card-website-refresh-maintenance::before {
    background: rgba(0, 255, 65, 0.55);
}

.service-lane-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.05rem;
    color: rgba(255, 255, 255, 0.48);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-lane-topline span:last-child {
    color: rgba(255, 255, 255, 0.74);
    text-align: right;
}

.service-lane-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 1.05rem;
    color: var(--accent);
    border: 1px solid rgba(255, 51, 51, 0.42);
    border-radius: 8px;
    background: rgba(255, 51, 51, 0.08);
}

.service-lane-card-website-refresh-maintenance .service-lane-icon {
    color: #00ff41;
    border-color: rgba(0, 255, 65, 0.38);
    background: rgba(0, 255, 65, 0.075);
}

.service-lane-card-continuity .service-lane-icon {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.055);
}

.service-lane-icon i {
    font-size: 1.12rem;
}

.service-lane-card h3 {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    line-height: 1.22;
    margin: 0.35rem 0 0.65rem;
}

.service-lane-card-feature h3 {
    font-size: 1.82rem;
    max-width: 14ch;
}

.service-lane-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.service-lane-card-feature p {
    font-size: 0.96rem;
    max-width: 52ch;
}

.service-lane-proof {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0 0 1.25rem;
}

.service-lane-proof li {
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.82rem;
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
}

.service-lane-proof li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.service-lane-proof-tight {
    gap: 0.48rem;
}

.service-lane-card-continuity .service-lane-proof li::before {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: none;
}

.service-lane-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.service-studio .service-offer-link {
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    color: #050505;
    border-color: rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    font-size: 0.73rem;
}

.service-studio .service-offer-link:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.22);
}

.service-text-link,
.service-maintenance-inline a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-text-link:hover,
.service-maintenance-inline a:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.service-maintenance-inline {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-maintenance-inline strong {
    color: #fff;
    font-size: 0.82rem;
}

.service-maintenance-inline span {
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.78rem;
    line-height: 1.48;
}

.service-maintenance-inline a {
    justify-self: start;
}

.service-routing-line {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-routing-line span {
    flex: 0 0 auto;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.service-routing-line p {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.3), transparent);
}

.services-grid {
    display: flex;
    position: relative;
    min-height: 400px;
    margin: 0 -2rem;
}

/* Center divider removed */

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    border: none;
    border-radius: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card-link:hover {
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.08;
}

/* Unavailable - Red side */
.service-unavailable {
    border-right: 1px solid rgba(255, 51, 51, 0.2);
}

.service-unavailable::before {
    background: linear-gradient(135deg, #ff3333 0%, rgba(255, 51, 51, 0.3) 40%, transparent 70%);
    opacity: 0.12;
}

.service-unavailable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, #ff3333 50%, transparent 90%);
    opacity: 0.4;
    box-shadow: none;
    transition: all 0.4s ease;
}

.service-unavailable:hover::before {
    opacity: 0.2;
}

.service-unavailable:hover::after {
    opacity: 1;
    width: 5px;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.8), 0 0 60px rgba(255, 51, 51, 0.4), 0 0 100px rgba(255, 51, 51, 0.2);
}

/* Available - Green side */
.service-available {
    border-left: 1px solid rgba(0, 255, 65, 0.2);
}

.service-available::before {
    background: linear-gradient(225deg, #00ff41 0%, rgba(0, 255, 65, 0.3) 40%, transparent 70%);
    opacity: 0.12;
}

.service-available::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, #00ff41 50%, transparent 90%);
    opacity: 0.5;
    box-shadow: none;
    transition: all 0.4s ease;
}

.service-available:hover::before {
    opacity: 0.2;
}

.service-available:hover::after {
    opacity: 1;
    width: 5px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8), 0 0 60px rgba(0, 255, 65, 0.4), 0 0 100px rgba(0, 255, 65, 0.2);
}

.services-cta-section {
    text-align: center;
    margin-top: 3rem;
}


/* Icon styling for split screen */
.service-available .service-icon {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.08);
    border-color: rgba(0, 255, 65, 0.4);
}

.service-available .service-icon i {
    filter: drop-shadow(0 0 8px #00ff41);
}

.service-available:hover .service-icon {
    background: #00ff41;
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.service-available:hover .service-icon i {
    color: #000;
    filter: none;
}

.service-available:hover .service-badge {
    background: rgba(0, 255, 65, 0.15);
    border-color: #00ff41;
    color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Waitlist/Limited - Red */
.service-waitlist {
    border-left: 1px solid rgba(255, 51, 51, 0.2);
    border-right: 1px solid rgba(255, 51, 51, 0.2);
}

.service-waitlist::before {
    background: linear-gradient(180deg, #ff3333 0%, rgba(255, 51, 51, 0.3) 40%, transparent 70%);
    opacity: 0.12;
}

.service-waitlist::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, #ff3333 50%, transparent 90%);
    opacity: 0.5;
    box-shadow: none;
    transition: all 0.4s ease;
}

.service-waitlist:hover::before {
    opacity: 0.2;
}

.service-waitlist:hover::after {
    opacity: 1;
    width: 5px;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.8), 0 0 60px rgba(255, 51, 51, 0.4), 0 0 100px rgba(255, 51, 51, 0.2);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    background: rgba(255, 51, 51, 0.08);
    border: 2px solid rgba(255, 51, 51, 0.25);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 51, 51, 0.1);
}

.service-icon i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px var(--accent));
}

.service-card:hover .service-icon {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #000;
    filter: none;
}

/* Keep consulting icon green on hover */
.service-available:hover .service-icon {
    background: #00ff41 !important;
    border-color: #00ff41 !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6) !important;
}

.service-available:hover .service-icon i {
    color: #000 !important;
    filter: none !important;
}

.service-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-stack {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Text glow on hover - Red/Unavailable side */
.service-unavailable:hover h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8), 0 0 20px rgba(255, 51, 51, 0.5), 0 0 30px rgba(255, 51, 51, 0.3);
}

.service-unavailable:hover p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
}

.service-unavailable:hover .service-stack {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.3);
}

/* Text glow on hover - Green/Available side */
.service-available:hover h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 0.5), 0 0 30px rgba(0, 255, 65, 0.3);
}

.service-available:hover p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

.service-available:hover .service-stack {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
}

/* Service Status Badges */
.service-badge {
    display: inline-block;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.badge-unavailable {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: var(--accent);
}

.badge-waitlist {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff5555;
}

.badge-available {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    color: #00ff41;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Unavailable Service Card */
.service-unavailable {
    position: relative;
}

.service-unavailable .service-icon {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.3);
}

.service-unavailable .service-icon i {
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

.service-unavailable:hover .service-icon {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.service-unavailable:hover .service-icon i {
    color: #000;
    filter: none;
}

/* Waitlist/Limited Service Card - Red */
.service-waitlist .service-icon {
    color: #ff5555;
    background: rgba(255, 51, 51, 0.08);
    border-color: rgba(255, 51, 51, 0.4);
}

.service-waitlist .service-icon::after {
    border-color: rgba(255, 51, 51, 0.2);
}

.service-waitlist .service-icon i {
    filter: drop-shadow(0 0 8px #ff3333);
}

.service-waitlist:hover .service-icon {
    background: #ff3333;
    border-color: #ff3333;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.service-waitlist:hover .service-icon i {
    color: #000;
    filter: none;
}

.service-waitlist:hover .service-badge {
    background: rgba(255, 51, 51, 0.15);
    border-color: #ff3333;
    color: #ff5555;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.service-waitlist:hover h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8), 0 0 20px rgba(255, 51, 51, 0.5), 0 0 30px rgba(255, 51, 51, 0.3);
}

.service-waitlist:hover p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
}

.service-waitlist:hover .service-stack {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.3);
}

/* Service Action Buttons - All Green */
.btn-waitlist,
.btn-service {
    margin-top: 1rem;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #00ff41;
    border-radius: 4px;
    color: #00ff41;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-waitlist:hover,
.btn-service:hover {
    background: #00ff41;
    color: #000;
    box-shadow: 0 0 15px #00ff41;
}

/* About Section */
.about {
    background: #050505;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Minimal About - Headshot + Social Only */
.about-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.about-headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.about-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headshot-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 0, 0.5);
    border: 2px dashed var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 3rem;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.2);
}

.about-minimal .about-links {
    margin-top: 0;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px;
    width: 48px;
    height: 48px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50%;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent);
}

.social-link i {
    font-size: 1.2rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-medium);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: #000;
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-headshot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.contact-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.compact-contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Contact Headshot & Social */
.contact-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.contact-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-social .social-link {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.contact-name {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.contact-info .contact-role {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--pure-white);
    border-top: 1px solid var(--light-gray);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Section */
.team {
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: var(--sand-light);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.method-step:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 95, 60, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.method-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive */
/* === Who-I-help signal (service-focus header) === */
.service-focus-header .service-focus-who {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.85rem;
}

/* === Founder Strip (homepage trust section) === */
.founder-strip {
    padding: 62px 0 68px;
    background:
        linear-gradient(180deg, #000 0%, #050505 46%, #000 100%);
}

.founder-strip .container {
    position: relative;
    z-index: 1;
}

.founder-grid {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.founder-headshot {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

/* <picture> wrapper must fill the fixed circle so the <img> inside still
   resolves 100%/100% against the container, not against a shrink-wrapped
   inline box. */
.founder-headshot picture,
.contact-headshot picture {
    display: block;
    width: 100%;
    height: 100%;
}

.founder-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-eyebrow {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-copy h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.1;
    margin: 0.5rem 0 0.25rem;
}

.founder-role {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
}

.founder-bio {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 62ch;
    margin: 0 0 0.9rem;
}

.founder-currently {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 62ch;
    margin: 0.25rem 0 1.25rem;
}

.founder-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.35rem 0 1.35rem;
}

.founder-facts span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-dim);
    background: rgba(255, 51, 51, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
}

.founder-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 51, 51, 0.45);
    padding-bottom: 2px;
}

.founder-linkedin:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.founder-linkedin i {
    color: var(--accent);
}

/* === Homepage testimonials (inside Recent Landings) === */
.landing-testimonials {
    margin-top: 3rem;
}

.landing-testimonials-header {
    margin-bottom: 1.25rem;
}

.landing-testimonials-label {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-testimonials-header h3 {
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.45rem;
    margin: 0.5rem 0 0;
}

.landing-testimonial {
    position: relative;
    margin: 1.5rem 0 0;
    padding: 2rem 2rem 2rem 3.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
}

.landing-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 0.4rem;
    left: 1rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.6;
}

.landing-testimonial-quote {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    font-style: italic;
}

.landing-testimonial-attribution {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 1.1rem 0 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
}

.landing-testimonial-attribution strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.landing-testimonial-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 51, 51, 0.45);
}

.landing-testimonial-link:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

/* === Doctrine Section (how working together feels) === */
.doctrine-section {
    padding: 62px 0 68px;
    background:
        linear-gradient(180deg, #000 0%, #050505 46%, #000 100%);
}

.doctrine-section .container {
    position: relative;
    z-index: 1;
}

.doctrine-header {
    margin-bottom: 1.35rem;
}

.doctrine-lane {
    min-height: 170px;
}

.doctrine-lane h3 {
    letter-spacing: 0.1em;
}

.doctrine-lane p {
    margin-bottom: 0;
}

/* === Contact "what happens next" microcopy === */
.booking-next {
    margin-bottom: 1.5rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-left: 3px solid var(--accent);
    background: rgba(255, 51, 51, 0.04);
    border-radius: 6px;
}

.booking-next-label {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-next p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .services-grid { flex-direction: row; }
    .focus-lane-grid,
    .focus-lane-grid-two { grid-template-columns: 1fr; }
    .focus-lane { min-height: auto; }
    .service-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-term-layout { grid-template-columns: 1fr; }
    .service-offer-grid-short { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-routing-band { grid-template-columns: 1fr; }
    .service-studio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "feature feature"
            "refresh readiness"
            "continuity continuity";
    }
    .service-lane-card-feature h3 {
        max-width: none;
    }
}

@media (max-width: 968px) {
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .founder-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .landing-testimonial { padding: 1.5rem 1.25rem 1.5rem 2.5rem; }
    .stats { grid-template-columns: 1fr; gap: 1rem; }
    .trust-indicators { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .methodology-steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
    .design-header {
        margin-top: -2.5rem;
    }
    .compact-services-header {
        margin-top: 0;
    }
    .service-studio {
        padding: 56px 0 62px;
    }
    .service-studio-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1rem;
    }
    .service-studio-header h2 {
        font-size: 2.2rem;
    }
    .service-studio .services-about-link {
        width: 100%;
    }
    .focus-footnote {
        align-items: flex-start;
        flex-direction: column;
    }
    .service-studio-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "feature"
            "refresh"
            "readiness"
            "continuity";
    }
    .service-lane-card,
    .service-lane-card-feature {
        min-height: auto;
        padding: 1.2rem;
    }
    .service-lane-card-feature h3 {
        font-size: 1.42rem;
    }
    .service-lane-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .service-studio .service-offer-link {
        width: 100%;
    }
    .service-routing-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.4rem;
    }
    .service-offer-grid {
        grid-template-columns: 1fr;
    }
    .service-offer-grid-short,
    .service-offer-grid-long {
        grid-template-columns: 1fr;
    }
    .service-term-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
    .service-term-header p {
        text-align: left;
    }
    .service-offer-card {
        padding: 1.45rem;
    }
    .service-routing-grid {
        grid-template-columns: 1fr;
    }
    .maintenance-plan-strip {
        align-items: stretch;
        flex-direction: column;
    }
    .service-maintenance-note {
        align-items: stretch;
        flex-direction: column;
    }
    .maintenance-plan-strip .service-offer-link,
    .service-maintenance-note .service-offer-link,
    .service-offer-actions .service-offer-link {
        width: 100%;
    }
    .services-grid {
        flex-direction: column;
        min-height: auto;
        margin: 0;
    }
    .services-grid::before {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        padding: 1rem 0;
        font-size: 2rem;
    }
    .service-card {
        padding: 3rem 2rem;
    }
    .service-unavailable {
        border-right: none;
        border-bottom: 1px solid rgba(255, 51, 51, 0.1);
    }
    .service-unavailable::after {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
    }
    .service-available {
        border-left: none;
        border-top: 1px solid rgba(0, 255, 65, 0.1);
    }
    .service-available::after {
        width: 100%;
        height: 3px;
        top: 0;
        right: auto;
        left: 0;
    }
    .service-waitlist {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    .service-waitlist::after {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }
}
