/* ==========================================================================
   Section 1: Upgraded Split-Panel Premium Hero Layout Styling
   ========================================================================== */
.hero-split-section {
    position: relative;
    min-height: 20vh;
    /* UPGRADED: Dual-glow background array to fill up empty display voids beautifully */
    background: 
        radial-gradient(circle at 20% 35%, rgba(192, 21, 15, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, #1A1A1A 0%, #050505 70%);
    display: flex;
    align-items: center;
    padding: 160px 2rem 100px 2rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-split-container {
    max-width: 1440px; /* Slight scale expansion to fill wider screens */
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Optimized proportion grid */
    gap: 5rem; /* Better breathing room between left copy and right image scene */
    align-items: center;
}

/* --- Left Column Elements --- */
.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 5;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-star {
    color: #FFB800;
    font-size: 11px;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-display-title {
    font-size: 62px; /* Bumped up from 58px to fill text blocks cleanly */
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.text-glow-red {
    color: var(--color-white);
    text-shadow: 0 0 40px rgba(192, 21, 15, 0.5);
}

.hero-display-subtitle {
    font-size: 18px; /* Enhanced legibility sizing */
    line-height: 1.65;
    color: var(--color-gray-text);
    max-width: 640px;
    margin-bottom: 3.5rem;
}
/* Action Row Configuration */
.hero-action-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.btn-premium-primary {
    background: var(--color-red);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 52px;
    box-sizing: border-box;
    transition: background 0.3s, transform 0.2s;
}

.btn-premium-primary:hover {
    background: #E01A14;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 12px;
    transition: transform 0.2s;
}

.btn-premium-primary:hover .btn-arrow {
    transform: translateX(3px);
}

/* Social Proof Pill */
.social-proof-pill {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--color-black);
    margin-left: -12px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
}

.proof-sub {
    font-size: 11px;
    color: #6A6A6A;
}

/* Bottom Mini Inline Metrics */
.hero-mini-metrics {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #555555;
    font-size: 13px;
    font-weight: 500;
}

.metric-divider {
    color: rgba(192, 21, 15, 0.2);
}

/* --- Right Column UI Construction --- */
.hero-right-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.ui-scene-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.ui-main-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #141414;
    padding: 16px;
    overflow: visible;
}

.ui-hero-portrait {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    filter: grayscale(15%) brightness(95%);
    display: block;
}

/* Floating Glass Layer 1 (Revenue Card) */
.floating-glass-panel {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 280px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.panel-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #00FF66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00FF66;
}

.status-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.panel-stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.panel-stat-desc {
    font-size: 12px;
    color: var(--color-gray-text);
}

/* Floating Glass Widget 2 (Metric Line Graphic Vector) */
.floating-glass-widget {
    position: absolute;
    top: 60px;
    right: -24px;
    width: 56px;
    height: 56px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.widget-icon-wrapper svg {
    width: 22px;
    height: 22px;
    color: var(--color-red);
}

/* Outer Availability Ribbon Badge */
.availability-tag {
    position: absolute;
    right: -24px;
    bottom: 180px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: rotate(90deg);
    transform-origin: bottom right;
}

.green-dot {
    width: 6px;
    height: 6px;
    background: #00FF66;
    border-radius: 50%;
}

.tag-string {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Responsive Hero Blueprint Rules */
@media (max-width: 1200px) {
    .hero-display-title { font-size: 46px; }
    .hero-split-container { gap: 2rem; }
}

@media (max-width: 992px) {
    .hero-split-section { padding-top: 120px; }
    .hero-split-container { grid-template-columns: 1fr; gap: 6rem; }
    .hero-left-col { align-items: center; text-align: center; }
    .hero-display-subtitle { margin-left: auto; margin-right: auto; }
    .hero-action-row { justify-content: center; }
    .hero-mini-metrics { justify-content: center; }
    .hero-right-col { justify-content: center; width: 100%; }
}

@media (max-width: 576px) {
    .hero-display-title { font-size: 36px; }
    .hero-action-row { flex-direction: column; gap: 1.5rem; }
    .hero-mini-metrics { flex-direction: column; gap: 0.5rem; }
    .hero-mini-metrics .metric-divider { display: none; }
    .floating-glass-panel { left: 50%; transform: translateX(-50%); bottom: -20px; width: 85%; }
    .availability-tag { display: none; }
}

/* Button UI Components */
.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #E01A14;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s, background 0.3s, transform 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--color-red);
    background: rgba(192, 21, 15, 0.08);
    transform: translateY(-2px);
}

/* Hero Trust Footer */
.hero-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #6A6A6A;
    font-size: 14px;
    font-weight: 500;
}

.hero-trust-line .divider {
    color: rgba(192, 21, 15, 0.3);
}

/* Mobile Viewport Fixes */
@media (max-width: 768px) {
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 16px; }
    .hero-ctas { flex-direction: column; gap: 1rem; }
    .hero-trust-line { flex-direction: column; gap: 0.5rem; }
    .hero-trust-line .divider { display: none; }
}

/* Section 2: Infinite Marquee CSS Track */
.marquee-section {
    background: #0D0D0D;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    color: var(--color-red);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section 3: Core Competencies Grid Styling */
.services-grid-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    color: var(--color-red);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--color-gray-text);
    font-size: 16px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card {
    position: relative;
    background: var(--color-black);
    padding: 3.5rem 2.5rem;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--x, 0px) var(--y, 0px), rgba(192, 21, 15, 0.12), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background-color: #0E0E0E;
}

.card-icon {
    font-size: 18px;
    color: var(--color-red);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--color-gray-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    min-height: 96px;
}

.card-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.card-link span {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-link {
    color: var(--color-red);
}

.service-card:hover .card-link span {
    transform: translateX(4px);
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .services-container { grid-template-columns: repeat(2, 1fr); }
    .section-header h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .services-container { grid-template-columns: 1fr; }
    .service-card { padding: 2.5rem 1.75rem; }
}

/* Section 4: Live Metric Counter Bar Styling */
.stats-bar-section {
    background: #090909;
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 1.5rem;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 25%;
    width: 1px;
    height: 50%;
    background: rgba(192, 21, 15, 0.15);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFFFFF 0%, #A5A5A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-size: 14px;
    color: var(--color-gray-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Metric Layout Changes */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
    .stat-box:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .counter-number {
        font-size: 42px;
    }
}

/* Section 5: The Strategic 3-Step Scaling Process Styling */
.process-section {
    padding: 8rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.process-container {
    position: relative;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    position: relative;
}

.process-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-red);
    width: 54px;
    height: 54px;
    background: #0D0D0D;
    border: 1px solid rgba(192, 21, 15, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(192, 21, 15, 0.1);
}

.step-line {
    width: 1px;
    background: linear-gradient(180deg, rgba(192, 21, 15, 0.3) 0%, rgba(255, 255, 255, 0.02) 100%);
    flex-grow: 1;
    margin: 1rem 0;
    min-height: 120px;
}

.process-content-box {
    padding-bottom: 5rem;
}

.process-content-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.process-content-box p {
    color: var(--color-gray-text);
    font-size: 16px;
    line-height: 1.7;
    max-width: 820px;
}

.process-step-row:last-child .process-content-box {
    padding-bottom: 0;
}

/* Responsive Viewport Alterations */
@media (max-width: 768px) {
    .process-step-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .process-meta {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .step-line {
        display: none;
    }
    .process-content-box {
        padding-bottom: 3.5rem;
        padding-left: 0.5rem;
    }
    .process-content-box h3 {
        font-size: 22px;
    }
}

/* Section 6: Competitive Advantage & USPs Styling */
.usps-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.usps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.usp-card {
    background: #0B0B0B;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.usp-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(192, 21, 15, 0.05);
    border: 1px solid rgba(192, 21, 15, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background 0.3s, border-color 0.3s;
}

.usp-icon {
    font-size: 20px;
}

.usp-card h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.usp-card p {
    color: var(--color-gray-text);
    font-size: 15px;
    line-height: 1.6;
}

.usp-card:hover {
    border-color: rgba(192, 21, 15, 0.25);
    transform: translateY(-4px);
    background: #0E0E0E;
}

.usp-card:hover .usp-icon-wrapper {
    background: var(--color-red);
    border-color: var(--color-red);
}

@media (max-width: 992px) {
    .usps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .usp-card {
        padding: 2.5rem 2rem;
    }
}

/* Section 7: Final High-Converting CTA Block Styling */
.cta-closure-section {
    position: relative;
    padding: 10rem 2rem;
    background: radial-gradient(circle at 50% 50%, #121212 0%, var(--color-black) 80%);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
}

.cta-closure-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-closure-container h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-closure-container p {
    color: var(--color-gray-text);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-closure-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-guarantee {
    font-size: 13px;
    color: #6A6A6A;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .cta-closure-section { padding: 6rem 1.5rem; }
    .cta-closure-container h2 { font-size: 36px; }
    .cta-closure-container p { font-size: 15px; margin-bottom: 2.5rem; }
    .cta-closure-actions { flex-direction: column; gap: 1rem; }
}

/* Premium Glassmorphism Fixed Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Menu Core Track */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links > a, 
.dropdown > a {
    color: var(--color-gray-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 0;
}

.nav-links a:hover, 
.nav-links .active {
    color: var(--color-white);
}

.nav-icon {
    font-size: 8px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

/* Interactive Mega Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 880px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown:hover .nav-icon {
    transform: rotate(180deg);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-red);
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.mega-col a {
    display: block;
    color: var(--color-gray-text);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-col a:hover {
    color: var(--color-white);
    transform: translateX(2px);
}

/* CTA Navigation Actions */
.btn-nav {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    border-color: var(--color-red);
    background: rgba(192, 21, 15, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: 0.3s;
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ==========================================================================
   Section 8: Premium Reviews & Client Portfolio Grid Styling
   ========================================================================== */
.reviews-portfolio-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.reviews-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.portfolio-review-card {
    background: #0C0C0C;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.card-metric-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-red);
    background: rgba(192, 21, 15, 0.06);
    border: 1px solid rgba(192, 21, 15, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.portfolio-review-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.review-quote {
    color: var(--color-gray-text);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.reviewer-platform {
    font-size: 12px;
    color: #555555;
    margin-top: 2px;
}

.portfolio-review-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: #111111;
}

/* ==========================================================================
   Section 9: Interactive Strategy Booking Form Styling
   ========================================================================== */
.home-form-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.form-grid-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.form-info-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-info-side h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.form-info-side p {
    color: var(--color-gray-text);
    font-size: 16px;
    margin-bottom: 3rem;
}

.form-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-check {
    color: var(--color-red);
    font-size: 14px;
    font-weight: bold;
    margin-top: 2px;
}

.bullet-item span:last-child {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
}

.premium-interactive-form {
    background: #0B0B0B;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 3.5rem;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.8rem;
}

.input-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
}

.premium-interactive-form input[type="text"],
.premium-interactive-form input[type="email"],
.premium-interactive-form select,
.premium-interactive-form textarea {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.premium-interactive-form input:focus,
.premium-interactive-form select:focus,
.premium-interactive-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background: #151515;
}

.premium-interactive-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236A6A6A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 0;
    cursor: pointer;
    margin-top: 1rem;
}

@media (max-width: 1100px) {
    .reviews-portfolio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-grid-wrapper { grid-template-columns: 1fr; gap: 4rem; }
    .form-info-side h2 { font-size: 36px; }
}

@media (max-width: 600px) {
    .premium-interactive-form { padding: 2rem 1.5rem; }
    .form-row-dual { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   Fixed Premium Wide Text Logo Style
   ========================================================================== */
.logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-logo);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-decoration: none;
}

.logo-text-light {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.logo-text-brand {
    color: var(--color-red);
    text-shadow: 0 0 20px rgba(192, 21, 15, 0.2);
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.logo:hover .logo-text-brand {
    text-shadow: 0 0 30px rgba(192, 21, 15, 0.5);
    color: #E01A14;
}

.logo:hover .logo-text-light {
    color: #F5F5F5;
}

/* ==========================================================================
   Main Page Layout Footer Styling
   ========================================================================== */
.main-footer-section {
    background: #070707;
    padding: 8rem 2rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    padding-bottom: 6rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    color: var(--color-gray-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-newsletter-form {
    display: flex;
    width: 100%;
    max-width: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 6px 0;
    width: 100%;
}

.footer-newsletter-form button {
    background: transparent;
    border: none;
    color: var(--color-gray-text);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-newsletter-form:focus-within {
    border-color: var(--color-red);
}

.footer-newsletter-form:focus-within button {
    color: var(--color-red);
    transform: translateX(4px);
}

.footer-links-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555555;
    margin-bottom: 1.8rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col ul a {
    color: var(--color-gray-text);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links-col ul a:hover {
    color: var(--color-white);
}

.footer-contact-list {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.hub-indicator {
    color: var(--color-red);
    font-size: 8px;
    margin-right: 6px;
    display: inline-block;
    transform: translateY(-1px);
}

.footer-email-link {
    margin-top: 1rem;
}

.footer-email-link a {
    color: var(--color-red) !important;
    font-weight: 600;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 2.5rem 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 12px;
    color: #444444;
}

.footer-social-links {
    display: flex;
    gap: 2rem;
}

.footer-social-links a {
    color: #666666;
    font-size: 12px;
    font-weight: 500;
}

.footer-social-links a:hover {
    color: var(--color-white);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom-container {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-social-links {
        justify-content: center;
    }
}

/* ==========================================================================
   Services Master Directory Hub Styling
   ========================================================================== */
.services-hub-hero {
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #141414 0%, var(--color-black) 70%);
}

.hub-hero-container h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hub-hero-container p {
    font-size: 17px;
    color: var(--color-gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-directory-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 8rem 2rem;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-directory-card {
    background: #0C0C0C;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, border-color 0.3s ease; 
}

.card-icon {
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.service-directory-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-feature-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-feature-bullets li {
    font-size: 13px;
    color: var(--color-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-feature-bullets li::before {
    content: "■";
    color: var(--color-red);
    font-size: 6px;
}

.service-learn-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-red);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-directory-card:hover {
    border-color: rgba(192, 21, 15, 0.25);
    transform: translateY(-4px);
    background: #0F0F0F;
}

.service-directory-card:hover .service-learn-more {
    color: var(--color-white);
    transform: translateX(4px);
}

.service-directory-card,
.global-cta-section,
.main-header {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

@media (max-width: 1100px) {
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .hub-hero-container h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .directory-grid { grid-template-columns: 1fr; }
    .hub-hero-container h1 { font-size: 34px; }
}

/* ==========================================================================
   Global Conversion Call-To-Action Component Styling (STABLE ENGINE)
   ========================================================================== */
.global-cta-section {
    position: relative;
    background: #090909;
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    width: 100%;
}

.cta-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 21, 15, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-main-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    z-index: 5;
}

.cta-content-block {
    max-width: 750px;
    text-align: left;
}

.cta-badge-red {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #C0150F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.cta-content-block h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.cta-content-block p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-gray-text);
    max-width: 640px;
}

.cta-action-row-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;     /* Aligns buttons beautifully to the right side of the container */
    gap: 1.2rem;
    flex-shrink: 0;
    min-width: max-content;    /* Prevents the button container from being squeezed horizontally */
}

.cta-action-block {
    position: relative;
    z-index: 2;
    display: flex !important;  /* Forces flex engine deployment */
    flex-direction: row;       /* Strictly locks buttons side-by-side on desktop */
    flex-wrap: nowrap;         /* Prevents any premature line dropping */
    align-items: center;       /* Locks perfect vertical centering along the baseline */
    justify-content: flex-start;
    gap: 1.5rem;
    width: 100%;
}

/* Hardcoded Matching Sizing Constraints for Dual Layout */
.global-cta-section .btn-premium-primary,
.global-cta-section .btn-cta-secondary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 52px;              /* Forces both buttons to share the exact same height layout */
    box-sizing: border-box;
    white-space: nowrap;       /* Stops the button text itself from wrapping internally */
}

.btn-cta-secondary {
    padding: 0 28px !important;
    font-size: 15px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.btn-cta-pulse {
    box-shadow: 0 0 0 0 rgba(192, 21, 15, 0.4);
    animation: ctaPulseEffect 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.cta-micro-proof {
    font-size: 12px;
    color: #555555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 4px;
}

.proof-dot {
    color: #22C55E;
    font-size: 8px;
}

@keyframes ctaPulseEffect {
    to {
        box-shadow: 0 0 0 20px transparent;
    }
}

.cta-main-container,
.cta-content-block h2,
.cta-content-block p {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@media (max-width: 992px) {
    .cta-main-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .cta-action-row-container {
        align-items: flex-start; /* Shifts buttons to the left when layout flips to vertical stack */
    }
}

@media (max-width: 600px) {
    .cta-action-block {
        flex-direction: column !important; /* Safely stacks only on narrow mobile screens */
        width: 100%;
        align-items: stretch;
    }
    .btn-premium-primary, 
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}   


/* ==========================================================================
   Inner Service Track Sub-Pages Styling Grid Master Blueprint
   ========================================================================== */
.service-detail-hero {
    background: radial-gradient(circle at 100% 0%, #151515 0%, #050505 60%);
    padding: 8rem 2rem 4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.service-hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.detail-badge-red {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.service-hero-left h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-lead-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-gray-text);
    margin-bottom: 2.5rem;
    max-width: 640px;
}

.service-image-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
    overflow: hidden;
}

.service-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Technical Matrix Rows */
.technical-matrix-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.matrix-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.matrix-row:last-child {
    border-bottom: none;
}

.matrix-left-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.matrix-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 0.05em;
}

.matrix-left-info h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.matrix-right-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin-bottom: 2rem;
}

.matrix-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.matrix-spec-list li {
    font-size: 14px;
    color: #DDDDDD;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.matrix-spec-list li::before {
    content: "■";
    color: var(--color-red);
    font-size: 6px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Premium Specifications Tables */
.specifications-table-section {
    padding: 4rem 2rem 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specs-table-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.premium-data-table {
    width: 100%;
    border-collapse: collapse;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.premium-data-table th, 
.premium-data-table td {
    padding: 1.5rem;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-data-table th {
    background: #111111;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
}

.premium-data-table td {
    color: var(--color-gray-text);
}

.premium-data-table tr:last-child td {
    border-bottom: none;
}

/* Interactive Schema Accordion FAQ Styling */
.services-faq-section {
    padding: 6rem 2rem 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.faq-header {
    position: sticky;
    top: 140px;
    height: max-content;
}

.faq-header h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #0C0C0C;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    padding-right: 1.5rem;
}

.faq-toggle-icon {
    font-size: 18px;
    color: #555555;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #090909;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
}

/* Active FAQ Interaction Rules */
.faq-item.active {
    border-color: rgba(192, 21, 15, 0.2);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--color-red);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Expands to fit content text perfectly */
}

/* ==========================================================================
   Responsive Inner Track Adjustments
   ========================================================================== */
@media (max-width: 992px) {
    .service-hero-grid,
    .matrix-row,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .faq-header {
        position: relative;
        top: 0;
    }
    .service-hero-left h1 { font-size: 38px; }
    .matrix-left-info h2 { font-size: 24px; }
    .faq-header h2 { font-size: 32px; }
}

@media (max-width: 600px) {
    .premium-data-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .service-main-image { height: 280px; }
}

/* ==========================================================================
   Snapchat Mobile-First Interactive App-Style Sub-Page UI Rules
   ========================================================================== */
.snap-hero-glow {
    background: radial-gradient(circle at 100% 100%, rgba(255, 252, 0, 0.02) 0%, #050505 60%) !important;
}

/* Glassmorphic Live Simulation Box Widget Component */
.snap-interactive-mockup {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.snap-interactive-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 252, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    background: #FFFC00; /* Signature Snapchat Yellow Accent Hub color */
    border-radius: 50%;
    box-shadow: 0 0 12px #FFFC00;
}

.mockup-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888888;
    font-weight: 700;
}

.mockup-metric-card h3 {
    font-size: 52px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.mockup-metric-card p {
    font-size: 13px;
    color: var(--color-gray-text);
}

.mockup-chart-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    margin-top: 2rem;
    overflow: hidden;
}

.chart-fill-anim {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-red) 0%, #FFFC00 100%);
    border-radius: 100px;
}

/* 3-Column Interactive Grid Framework Cards */
.snap-grid-cards-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.snap-interactive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.snap-feature-box {
    position: relative;
    background: #0C0C0C;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(200px circle at 50% 0%, rgba(192, 21, 15, 0.08) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.snap-feature-box:hover .box-glow-layer {
    opacity: 1;
}

.box-icon-head {
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.snap-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.snap-feature-box p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
}

.snap-feature-box:hover {
    border-color: rgba(192, 21, 15, 0.2);
    transform: translateY(-6px);
    background: #0F0F0F;
}

/* Immersive Timeline Structure Layout */
.snap-case-timeline-card {
    background: #0C0C0C;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.client-badge-pill {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-red);
    background: rgba(192, 21, 15, 0.06);
    border: 1px solid rgba(192, 21, 15, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.snap-case-timeline-card h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.client-url-tag {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 3rem;
}

.timeline-visual-metrics {
    display: flex;
    gap: 3rem;
}

.v-metric h4 {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.v-metric p {
    font-size: 12px;
    color: var(--color-gray-text);
}

.alert-box-problem,
.alert-box-solution {
    background: #080808;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.alert-box-problem h5 {
    color: #FF4444;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.alert-box-solution h5 {
    color: #22C55E;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.alert-box-problem p,
.alert-box-solution p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .snap-interactive-grid,
    .snap-case-timeline-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .snap-interactive-mockup {
        margin: 2rem auto 0 auto;
    }
}

/* ==========================================================================
   Social Media Management Creative Studio Lookups Style Definitions
   ========================================================================== */
.smm-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.03) 0%, #050505 60%) !important;
}

/* Glassmorphic Command Center Widget */
.smm-interactive-dashboard {
    background: linear-gradient(145deg, #0e0e0e 0%, #070707 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--color-red);
    animation: smmPulse 2s infinite ease-in-out;
}

.dashboard-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777777;
    font-weight: 700;
}

.dashboard-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 1.5rem;
}

.dash-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 0.8rem;
}

.dash-card h4 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.dash-card p {
    font-size: 12px;
    color: var(--color-gray-text);
}

.progress-bar-stack {
    margin-top: 1.5rem;
}

.bar-label {
    font-size: 12px;
    color: #888888;
    margin-bottom: 8px;
    font-weight: 500;
}

.bar-track {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.02);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill-smm {
    height: 100%;
    background: var(--color-red);
    border-radius: 50px;
}

/* Four Column Content Enhanced Box System */
.smm-core-matrix {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.smm-feature-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.smm-premium-box {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smm-box-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smm-icon-wrap {
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.smm-premium-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.smm-premium-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-text);
}

.smm-premium-box:hover {
    background: #0d0d0d;
    border-color: rgba(192, 21, 15, 0.2);
    transform: translateY(-5px);
}

.smm-premium-box:hover .smm-box-accent {
    opacity: 1;
}

/* Large Advanced Case Box Framework */
.smm-case-box {
    background: #090909;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 4.5rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.5rem;
    position: relative;
}

.smm-badge-glow {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-red);
    background: rgba(192, 21, 15, 0.05);
    border: 1px solid rgba(192, 21, 15, 0.15);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.smm-case-sidebar h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.smm-side-data-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smm-d-row {
    font-size: 13px;
    color: #777777;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 8px;
}

.smm-case-main-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
}

.smm-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.h-stat-card {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    text-align: center;
}

.h-stat-card h5 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.h-stat-card p {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@keyframes smmPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Responsive Logic Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .smm-feature-large-grid,
    .smm-case-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .smm-case-box {
        padding: 2.5rem;
    }
    .smm-interactive-dashboard {
        margin: 3rem auto 0 auto;
    }
    .smm-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Asymmetrical System Architecture Ecosystem Layout UI Rules
   ========================================================================== */
.automation-hero-glow {
    background: radial-gradient(circle at 0% 0%, rgba(192, 21, 15, 0.04) 0%, #050505 60%) !important;
}

/* Linear Ecosystem Process Flow Widget */
.automation-flow-widget {
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.flow-header {
    margin-bottom: 2rem;
}

.flow-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
}

.flow-nodes-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.flow-node {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #777777;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.node-active {
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.node-glow {
    border-color: rgba(192, 21, 15, 0.25);
    color: #ffffff;
    background: #0d0d0d;
    box-shadow: 0 0 20px rgba(192, 21, 15, 0.08);
}

.flow-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(192, 21, 15, 0.3) 100%);
    margin-left: 24px;
}

/* Side-by-Side Alternating Split Panels Master layout */
.automation-split-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.automation-split-panel:last-child {
    border-bottom: none;
}

.panel-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel-index {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.panel-info-block h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.panel-info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-text);
}

.panel-image-block {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: #111;
}

.panel-embedded-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: grayscale(40%) brightness(90%);
    transition: all 0.5s ease;
}

.automation-split-panel:hover .panel-embedded-img {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}

.flex-reverse-row {
    grid-template-columns: 0.9fr 1.1fr;
}

.flex-reverse-row .panel-info-block {
    grid-column: 2;
}

.flex-reverse-row .panel-image-block {
    grid-column: 1;
    grid-row: 1;
}


/* ==========================================================================
   Social Media Management Creative Studio Lookups Style Definitions
   ========================================================================== */
.smm-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.03) 0%, #050505 60%) !important;
}

/* Glassmorphic Command Center Widget */
.smm-interactive-dashboard {
    background: linear-gradient(145deg, #0e0e0e 0%, #070707 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--color-red);
    animation: smmPulse 2s infinite ease-in-out;
}

.dashboard-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777777;
    font-weight: 700;
}

.dashboard-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 1.5rem;
}

.dash-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 0.8rem;
}

.dash-card h4 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.dash-card p {
    font-size: 12px;
    color: var(--color-gray-text);
}

.progress-bar-stack {
    margin-top: 1.5rem;
}

.bar-label {
    font-size: 12px;
    color: #888888;
    margin-bottom: 8px;
    font-weight: 500;
}

.bar-track {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.02);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill-smm {
    height: 100%;
    background: var(--color-red);
    border-radius: 50px;
}

/* Four Column Content Enhanced Box System */
.smm-core-matrix {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.smm-feature-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.smm-premium-box {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smm-box-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smm-icon-wrap {
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.smm-premium-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.smm-premium-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-text);
}

.smm-premium-box:hover {
    background: #0d0d0d;
    border-color: rgba(192, 21, 15, 0.2);
    transform: translateY(-5px);
}

.smm-premium-box:hover .smm-box-accent {
    opacity: 1;
}

/* Large Advanced Case Box Framework */
.smm-case-box {
    background: #090909;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 4.5rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.5rem;
    position: relative;
}

.smm-badge-glow {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-red);
    background: rgba(192, 21, 15, 0.05);
    border: 1px solid rgba(192, 21, 15, 0.15);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.smm-case-sidebar h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.smm-side-data-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smm-d-row {
    font-size: 13px;
    color: #777777;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 8px;
}

.smm-case-main-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
}

.smm-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.h-stat-card {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    text-align: center;
}

.h-stat-card h5 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.h-stat-card p {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@keyframes smmPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Responsive Logic Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .smm-feature-large-grid,
    .smm-case-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .smm-case-box {
        padding: 2.5rem;
    }
    .smm-interactive-dashboard {
        margin: 3rem auto 0 auto;
    }
    .smm-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Email Marketing Newsletter Matrix Sub-Page Style Definitions
   ========================================================================== */
.email-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.04) 0%, #050505 60%) !important;
}

/* Glassmorphic Inbox Placement Widget */
.email-interactive-mockup {
    background: linear-gradient(135deg, #0e0e0e 0%, #070707 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mockup-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.mockup-indicator-green {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 12px #22C55E;
}

.mockup-header-row span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 700;
}

.mockup-metric-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.m-box-mini {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 1.5rem;
}

.m-box-mini h4 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.m-box-mini p {
    font-size: 11px;
    color: var(--color-gray-text);
    line-height: 1.4;
}

.mockup-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
}

.mockup-tool-tags span {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
}

/* ==========================================================================
   GoHighLevel Automation Architecture Sub-Page Style Overrides
   ========================================================================== */
.ghl-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.04) 0%, #050505 60%) !important;
}

/* Kinetic Vertical Workflow Stream Graphic Simulation */
.ghl-workflow-visual-box {
    background: linear-gradient(145deg, #0e0e0e 0%, #060606 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.55);
}

.visual-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2.5rem;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 12px #22C55E;
}

.visual-box-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 700;
}

.visual-flow-stream {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.flow-step-node {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #090909;
    border: 1px solid rgba(255,255,255,0.02);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.step-icon-mini {
    font-size: 20px;
}

.step-meta-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.step-meta-text p {
    font-size: 11px;
    color: var(--color-gray-text);
}

.node-done {
    border-color: rgba(255,255,255,0.05);
    background: #0b0b0b;
}

.node-active-glow {
    border-color: rgba(192, 21, 15, 0.25);
    background: #0e0e0e;
    box-shadow: 0 0 25px rgba(192, 21, 15, 0.1);
}

.flow-step-line-fill {
    width: 2px;
    height: 28px;
    background: rgba(255,255,255,0.04);
    margin-left: 24px;
}

.animate-line {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, var(--color-red) 100%);
}

/* Asymmetric Four-Column Grid Framework */
.ghl-core-matrix-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ghl-custom-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.ghl-glowing-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-corner-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-icon-header {
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.ghl-glowing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.ghl-glowing-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-text);
}

.ghl-glowing-card:hover {
    background: #0c0c0e;
    border-color: rgba(192, 21, 15, 0.2);
    transform: translateY(-5px);
}

.ghl-glowing-card:hover .card-corner-accent {
    opacity: 1;
}

/* ==========================================================================
   Responsive Logic Tuning
   ========================================================================== */
@media (max-width: 992px) {
    .ghl-custom-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ghl-workflow-visual-box {
        margin: 3rem auto 0 auto;
    }
}

/* ==========================================================================
   ManyChat Conversational Stream Sub-Page Style Definitions
   ========================================================================== */
.mc-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.04) 0%, #050505 60%) !important;
}

/* Glassmorphic Chat Thread Simulation Box */
.mc-chat-mockup-box {
    background: linear-gradient(135deg, #0e0e0e 0%, #060606 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

.chat-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.chat-avatar-status {
    width: 8px;
    height: 8px;
    background: #00FF66;
    border-radius: 50%;
    box-shadow: 0 0 12px #00FF66;
}

.chat-mockup-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 700;
}

.chat-bubble-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bubble {
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 85%;
}

.bubble-user {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #ffffff;
    align-self: flex-start;
}

.bubble-bot {
    background: rgba(192, 21, 15, 0.06);
    border: 1px solid rgba(192, 21, 15, 0.15);
    color: #ffffff;
    align-self: flex-end;
}

.bubble-bot-reply {
    background: var(--color-red);
    color: #ffffff;
    align-self: flex-end;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(192, 21, 15, 0.2);
}

@keyframes bubblePop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-bubble {
    animation: bubblePop 0.4s ease forwards;
}


/* ==========================================================================
   n8n Node Workflow Integration Sub-Page Style Definitions
   ========================================================================== */
.n8n-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(144, 62, 234, 0.04) 0%, #050505 60%) !important;
}

/* Linear Data Node Cluster Widget */
.n8n-node-visual-widget {
    background: linear-gradient(135deg, #0d0d0f 0%, #060607 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.node-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.2rem;
    margin-bottom: 2.5rem;
}

.indicator-glow-purple {
    width: 8px;
    height: 8px;
    background: #903eea;
    border-radius: 50%;
    box-shadow: 0 0 12px #903eea;
}

.node-widget-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 700;
}

.node-branches-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.node-block-item {
    background: #09090a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}

.item-trigger {
    border-color: rgba(255, 255, 255, 0.08);
}

.node-grid-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.item-process {
    border-color: rgba(144, 62, 234, 0.2);
    background: #0e0d11;
}

.item-success {
    border-color: rgba(34, 197, 94, 0.25);
    background: #0a0e0b;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.05);
}

.node-line-vertical {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(144, 62, 234, 0.3) 100%);
}

/* ==========================================================================
   Graphic Design Studio Editorial Darkroom Layout Override Rules
   ========================================================================== */
.design-studio-editorial-darkroom {
    background-color: #030303 !important;
    position: relative;
}

.editorial-diagonal-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(192, 21, 15, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

.studio-badge-neon {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 6px;
    margin-bottom: 2rem;
}

.design-kinetic-title {
    font-size: clamp(40px, 6vw, 68px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    text-transform: uppercase;
}

.design-text-marquee {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Interactive Fine Art Studio Workspace Mockup */
.studio-interactive-workspace {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    position: relative;
    box-shadow: 0 60px 120px rgba(0,0,0,0.7);
}

.workspace-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
}

.active-tool-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-red);
}

.workspace-canvas-res {
    font-size: 10px;
    font-family: monospace;
    color: #444444;
}

.workspace-artboard {
    background: #050505;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artboard-layer {
    position: absolute;
    width: 80%;
    height: 60%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #444444;
    transition: all 0.4s ease;
}

.layer-01 {
    transform: translate(-20px, -20px);
    background: rgba(255, 255, 255, 0.002);
}

.layer-02 {
    transform: translate(0px, 0px);
    border-color: rgba(255, 255, 255, 0.1);
    color: #888888;
}

.layer-03 {
    transform: translate(20px, 20px);
    background: #0d0808;
    border: 1px solid rgba(192, 21, 15, 0.3);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(192, 21, 15, 0.1);
}

.layer-03 h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Asymmetric Editorial Grid Track */
.editorial-showcase-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.editorial-asset-panel {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    position: relative;
    transition: all 0.4s ease;
}

.panel-kinetic-border {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-red);
    transition: width 0.4s ease;
}

.editorial-asset-panel:hover .panel-kinetic-border {
    width: 100%;
}

.panel-meta-index {
    font-size: 10px;
    font-family: monospace;
    color: #555555;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.editorial-asset-panel h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.editorial-asset-panel p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-text);
}

.editorial-asset-panel:hover h3 {
    color: var(--color-red);
}

/* Custom Case Overrides */
.editorial-overhaul-card {
    background: #090909 !important;
    border: 1px dashed rgba(255, 255, 255, 0.1) !important;
    border-radius: 0px !important;
}

/* Tuning Layout SMM Buttons */
.style-studio-btn {
    border-radius: 0px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive Balance Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .editorial-showcase-matrix {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .studio-interactive-workspace {
        margin: 4rem auto 0 auto;
    }
}

/* ==========================================================================
   Graphic Design Portfolio Studio Asymmetric Sub-Page Style Definitions
   ========================================================================== */
.design-hero-glow {
    background: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.015) 0%, #050505 60%) !important;
}

/* Minimalist Portfolio Layer Board Widget */
.design-canvas-widget {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.canvas-mode-indicator {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-red);
    font-weight: 700;
}

.canvas-dimensions {
    font-size: 11px;
    color: #444444;
    font-family: monospace;
}

.canvas-layers-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.canvas-layer-item {
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #888888;
    background: #070707;
    transition: all 0.4s ease;
}

.item-base {
    border-color: rgba(255, 255, 255, 0.05);
}

.item-overlay {
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(10px);
}

.item-brand-red {
    border-color: rgba(192, 21, 15, 0.3);
    background: #0d0909;
    color: #ffffff;
    font-weight: 600;
    transform: translateX(20px);
    box-shadow: 0 15px 30px rgba(192, 21, 15, 0.05);
}

/* 3-Column Minimalist Gallery Grid Layout Components */
.design-studio-grid-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.design-interactive-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.design-asset-card {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.design-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.design-asset-card:hover .design-card-glow {
    opacity: 1;
}

.design-icon-head {
    font-size: 26px;
    margin-bottom: 2rem;
    color: var(--color-red);
}

.design-asset-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.design-asset-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
}

.design-asset-card:hover {
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    background: #0c0c0c;
}

/* ==========================================================================
   Responsive Logic Tuning
   ========================================================================== */
@media (max-width: 992px) {
    .design-interactive-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .design-canvas-widget {
        margin: 3rem auto 0 auto;
    }
}

/* ==========================================================================
   Video Editing Studio Motion Timeline Layout Style Definitions
   ========================================================================== */
.video-editing-timeline-workspace {
    background-color: #040404 !important;
    position: relative;
}

.video-hero-glow {
    background: radial-gradient(circle at 100% 50%, rgba(192, 21, 15, 0.03) 0%, #050505 60%) !important;
}

/* Glassmorphic Active Video Timeline Monitor Box Widget */
.video-timeline-simulation-box {
    background: linear-gradient(145deg, #0d0d0f 0%, #060607 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 2.5rem 1.5rem;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.65);
    position: relative;
}

.timeline-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.timeline-indicator-red-dot {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--color-red);
    animation: timelineRecord 1.5s infinite ease-in-out;
}

.timeline-widget-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 700;
}

.timeline-tracks-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.track-layer-row {
    background: #09090a;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    box-sizing: border-box;
}

.layer-title-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555555;
    flex-shrink: 0;
    width: 90px;
}

/* Animated Performance Audio Wave Bars component */
.audio-wave-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.audio-wave-bars span {
    display: block;
    width: 2px;
    height: 100%;
    background: var(--color-red);
    border-radius: 50px;
    animation: audioWaveMove 1.2s infinite ease-in-out alternate;
}

.audio-wave-bars span:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.audio-wave-bars span:nth-child(3) { animation-delay: 0.4s; height: 85%; }
.audio-wave-bars span:nth-child(4) { animation-delay: 0.1s; height: 40%; }
.audio-wave-bars span:nth-child(5) { animation-delay: 0.3s; height: 70%; }

.video-block-fill {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 3px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fill-01 {
    background: linear-gradient(90deg, #181111 0%, #a1140f 100%);
    border: 1px solid rgba(192, 21, 15, 0.3);
}

.fill-02 {
    background: linear-gradient(90deg, #111418 0%, #104273 100%);
    border: 1px solid rgba(16, 66, 115, 0.3);
}

/* Asymmetrical Kinetic Grid Track Layout panels */
.video-studio-grid-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Fixed Video Editing Studio Kinetic Timeline Block Rows (FIXED ENGINE)
   ========================================================================== */
.video-studio-grid-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Changed from grid to vertical flex to allow 100% full-width rows */
.video-interactive-timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
}

.video-motion-panel {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.01);
    padding: 2rem 3rem;
    display: grid;
    /* Clean horizontal layout tracking parameters */
    grid-template-columns: 120px 280px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
}

.motion-panel-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-red);
    transition: height 0.4s ease;
}

.video-motion-panel:hover .motion-panel-line-fill {
    height: 100%;
}

.motion-index-tag {
    font-size: 11px;
    font-family: monospace;
    font-weight: 700;
    color: #444444;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.video-motion-panel h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    white-space: nowrap; /* Keeps your frame titles strictly single-line */
}

.video-motion-panel p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
    margin: 0;
}

.video-motion-panel:hover {
    background: #0d0d0d;
    border-color: rgba(255, 255, 255, 0.03);
    transform: translateX(6px); /* Elite subtle motion shift on hover */
}

/* ==========================================================================
   Responsive Logic Overrides for Video Panels
   ========================================================================== */
@media (max-width: 1100px) {
    .video-motion-panel {
        grid-template-columns: 100px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .video-motion-panel h3 {
        grid-column: 2;
        white-space: normal;
    }
    
    .video-motion-panel p {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .video-motion-panel {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .motion-index-tag {
        color: var(--color-red);
    }
}


/* ==========================================================================
   Shopify Developer IDE Environment Sub-Page Style Definitions
   ========================================================================== */
.shopify-dev-environment {
    background-color: #020202 !important;
    position: relative;
}

.dev-hero-glow {
    background: radial-gradient(circle at 100% 0%, rgba(192, 21, 15, 0.03) 0%, #050505 60%) !important;
}

.dev-terminal-title {
    font-size: clamp(38px, 5vw, 54px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
}

/* Open-Source High-End IDE Simulator Console Widget Component */
.ide-workspace-widget {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

.ide-tab-bar {
    background: #0e0e12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.ide-tab {
    font-size: 11px;
    color: #555555;
    padding: 12px 16px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: default;
}

.active-tab {
    background: #08080a;
    color: #ffffff;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.02);
}

.ide-window-controls {
    display: flex;
    gap: 6px;
}

.ide-window-controls span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #222;
}

.ide-window-controls span:nth-child(1) { background: #ff5f56; }
.ide-window-controls span:nth-child(2) { background: #ffbd2e; }
.ide-window-controls span:nth-child(3) { background: #27c93f; }

.ide-code-lines {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 12px;
    line-height: 1.5;
}

.code-line {
    color: #666666;
    white-space: nowrap;
}

.pad-1 { padding-left: 1.5rem; }
.pad-2 { padding-left: 3rem; }

.c-tag { color: #ff79c6; }
.c-key { color: #ff5555; }
.c-fn { color: #50fa7b; }
.c-string { color: #f1fa8c; }

.ide-terminal-output {
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
}

.term-status { color: #22C55E; font-weight: 600; }
.term-speed { color: #888888; }



/* ==========================================================================
   Fixed Open Source Commit Branch Matrix Panels (Frictionless Block Engine)
   ========================================================================== */
.dev-repository-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Changed from grid to a vertical flex stack so panels can use full width */
.repository-commit-matrix {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.repo-commit-panel {
    background: #070709;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 2rem 3rem;
    display: grid;
    /* Grid tracking optimized horizontally to give elements breathing room */
    grid-template-columns: 24px 320px 1.5fr 2.5fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
}

.repo-indicator-branch {
    width: 8px;
    height: 8px;
    background: #444444;
    border-radius: 50%;
    position: relative;
    transition: background 0.3s ease;
}

.repo-commit-panel:hover .repo-indicator-branch {
    background: var(--color-red);
    box-shadow: 0 0 12px var(--color-red);
}

.repo-file-path {
    font-family: monospace;
    font-size: 13px;
    color: #666666;
    white-space: nowrap; /* Forces file paths to stretch cleanly on a single line */
}

.repo-commit-panel h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    white-space: nowrap; /* Keeps titles crisp and un-broken */
}

.repo-commit-panel p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin: 0;
}

.repo-commit-panel:hover {
    background: #09090c;
    border-color: rgba(192, 21, 15, 0.2);
    transform: translateX(6px); /* Premium horizontal shift on hover selection */
}

/* ==========================================================================
   Responsive Architecture Overrides
   ========================================================================== */
@media (max-width: 1100px) {
    .repo-commit-panel {
        grid-template-columns: 24px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .repo-file-path {
        grid-column: 2;
        color: var(--color-red);
    }
    
    .repo-commit-panel h3 {
        grid-column: 2;
        white-space: normal;
    }
    
    .repo-commit-panel p {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .repo-commit-panel {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .repo-indicator-branch {
        display: none; /* Safely hide bullet points on tight mobile screens */
    }
}

/* ==========================================================================
   Restabilized 3-Column Production Portfolio Grid (FIXED)
   ========================================================================== */
.dev-portfolio-asymmetric-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.dev-showcase-panel-item {
    background: #08080a;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Forces all three cards to share the exact same height layout */
    box-sizing: border-box;
}

.panel-glow-accent-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-index {
    font-size: 10px;
    font-family: monospace;
    color: #555555;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.5rem;
}

.dev-showcase-panel-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.showcase-url {
    font-size: 13px;
    font-family: monospace;
    color: var(--color-red);
    display: block;
    margin-bottom: 2rem;
}

.showcase-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
    margin: 0;
}

.dev-showcase-panel-item:hover {
    background: #0b0b0f;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
}

.dev-showcase-panel-item:hover .panel-glow-accent-red {
    opacity: 1;
}

/* Responsive Scaling for Smaller viewports */
@media (max-width: 992px) {
    .dev-portfolio-asymmetric-row {
        grid-template-columns: 1fr !important; /* Safely stacks cards vertically on mobile devices */
        gap: 1.5rem !important;
    }
}


/* ==========================================================================
   WordPress Corporate Asymmetrical Executive Blueprint Layout Style Rules
   ========================================================================== */
.wordpress-blueprint-environment {
    background-color: #030303 !important;
    position: relative;
}

.wp-hero-glow {
    background: radial-gradient(circle at 0% 100%, rgba(192, 21, 15, 0.03) 0%, #050505 60%) !important;
}

.wp-blueprint-title {
    font-size: clamp(38px, 5vw, 54px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
}

/* Premium Hardened Server Stack Widget Card Component */
.wp-server-stack-widget {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.server-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.server-status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-red);
}

.server-widget-header span {
    font-size: 11px;
    font-family: monospace;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.server-layers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.server-layer-row {
    background: #050506;
    border: 1px solid rgba(255, 255, 255, 0.01);
    padding: 14px 18px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.server-layer-row .layer-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555555;
}

.server-layer-row p {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.wp-layer-top { border-left: 3px solid #333; }
.wp-layer-mid { border-left: 3px solid var(--color-red); background: #0c0808; }
.wp-layer-base { border-left: 3px solid #222; }

/* Sticky Split-Screen Blueprint Flex Tracking System */
.wp-split-blueprint-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.wp-blueprint-flex-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 6rem;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.wp-blueprint-sticky-sidebar {
    position: sticky;
    top: 140px;
    height: max-content;
}

.sidebar-meta-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red);
    display: block;
    margin-bottom: 1rem;
}

.wp-blueprint-sticky-sidebar h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.wp-blueprint-sticky-sidebar p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-gray-text);
}

.wp-blueprint-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.wp-blueprint-card-item {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 3.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
}

.card-item-neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.4s ease;
}

.wp-blueprint-card-item:hover .card-item-neon-line {
    width: 100%;
}

.card-item-meta {
    font-family: monospace;
    font-size: 11px;
    color: #444444;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.wp-blueprint-card-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.wp-blueprint-card-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin: 0;
}

.wp-blueprint-card-item:hover {
    background: #0a0a0e;
    border-color: rgba(192, 21, 15, 0.15);
    transform: translateY(-4px);
}

/* Hardcoded Layout Controls Overrides */
.wp-overhaul-editorial-card {
    background: #09090b !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.style-wp-btn {
    border-radius: 0px !important;
    text-transform: uppercase;
    font-family: monospace;
    font-size: 13px !important;
}

/* ==========================================================================
   Responsive Logic Adapters
   ========================================================================== */
@media (max-width: 992px) {
    .wp-blueprint-flex-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .wp-blueprint-sticky-sidebar {
        position: relative;
        top: 0;
    }
    .wp-server-stack-widget {
        margin: 4rem auto 0 auto;
    }
}

/* ==========================================================================
   Restabilized 4-Column Performance Data Metric Strip (FIXED)
   ========================================================================== */
.wp-metric-strip, 
.dev-metric-strip, 
.video-studio-metric-strip {
    background: #080808 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    padding: 3.5rem 2rem !important;
    width: 100%;
    box-sizing: border-box;
}

/* Forces the parent box container back into a clean horizontal grid split */
.wp-metric-strip .stats-container,
.dev-metric-strip .stats-container,
.video-studio-metric-strip .stats-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.5rem !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Stabilizes the nested stat boxes so text elements don't crash or overflow */
.wp-metric-strip .stat-box,
.dev-metric-strip .stat-box,
.video-studio-metric-strip .stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Locks the numbers into a sleek, clean, high-end layout proportion */
.wp-metric-strip .counter-number,
.dev-metric-strip .counter-number,
.video-studio-metric-strip .counter-number {
    font-size: clamp(32px, 3.5vw, 42px) !important; /* Drops text from massive to crisp */
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 0.6rem !important;
}

/* Formats descriptions smoothly with perfect paragraph breaking */
.wp-metric-strip .counter-label,
.dev-metric-strip .counter-label,
.video-studio-metric-strip .counter-label {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #888888 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    max-width: 240px;
}

/* ==========================================================================
   Responsive Architecture & Mobile Text Scale Adjustments (FIXED MESH)
   ========================================================================== */
@media (max-width: 992px) {
    /* Transitions from 4-columns to a balanced 2x2 presentation grid layout */
    .wp-metric-strip .stats-container,
    .dev-metric-strip .stats-container,
    .video-studio-metric-strip .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3.5rem 2rem !important; /* Spacious gap allocation between stacked items */
        padding: 1rem !important;
    }

    .wp-metric-strip .stat-box,
    .dev-metric-strip .stat-box,
    .video-studio-metric-strip .stat-box {
        align-items: center !important; /* Balanced centered text alignment metrics for tablet view */
        text-align: center !important;
    }

    .wp-metric-strip .counter-label,
    .dev-metric-strip .counter-label,
    .video-studio-metric-strip .counter-label {
        max-width: 100% !important;
    }
}

@media (max-width: 580px) {
    /* Drops the grid down to a pure single column track on tight mobile screens */
    .wp-metric-strip .stats-container,
    .dev-metric-strip .stats-container,
    .video-studio-metric-strip .stats-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important; /* Clear vertical spacing to prevent vertical smashing */
        padding: 0.5rem !important;
    }

    .wp-metric-strip .stat-box,
    .dev-metric-strip .stat-box,
    .video-studio-metric-strip .stat-box {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Scales numbers perfectly so they fit clean on a single text line */
    .wp-metric-strip .counter-number,
    .dev-metric-strip .counter-number,
    .video-studio-metric-strip .counter-number {
        font-size: 34px !important; /* Optimized font rendering threshold for smaller displays */
        letter-spacing: -0.02em !important;
        margin-bottom: 0.4rem !important;
    }

    /* Cleans up descriptor tracking padding weights */
    .wp-metric-strip .counter-label,
    .dev-metric-strip .counter-label,
    .video-studio-metric-strip .counter-label {
        font-size: 12px !important;
        line-height: 1.4 !important;
        color: #aaaaaa !important; /* Slightly elevated readability contrast parameter */
        max-width: 280px !important;
        margin: 0 auto !important;
    }
}
/* ==========================================================================
   MOBILE + TABLET RESPONSIVE REPAIR LAYER
   IMPORTANT: All rules below are media-query scoped.
   Desktop styles above 992px remain exactly as originally supplied.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shared tablet/mobile safety layer (0px–992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    img,
    svg,
    video,
    canvas,
    iframe {
        max-width: 100%;
    }

    img,
    video,
    canvas {
        height: auto;
    }

    section,
    header,
    footer,
    main,
    nav,
    form,
    table,
    .hero-split-section,
    .services-grid-section,
    .stats-bar-section,
    .process-section,
    .usps-section,
    .cta-closure-section,
    .reviews-portfolio-section,
    .home-form-section,
    .services-hub-hero,
    .services-directory-section,
    .global-cta-section,
    .service-detail-hero,
    .technical-matrix-section,
    .specifications-table-section,
    .services-faq-section,
    .snap-grid-cards-section,
    .smm-core-matrix,
    .ghl-core-matrix-section,
    .design-studio-grid-section,
    .video-studio-grid-section,
    .dev-repository-section,
    .wp-split-blueprint-section,
    .main-footer-section {
        max-width: 100%;
    }

    .hero-split-container,
    .nav-container,
    .footer-container,
    .footer-bottom-container,
    .services-container,
    .stats-container,
    .process-container,
    .usps-container,
    .reviews-portfolio-grid,
    .form-grid-wrapper,
    .directory-grid,
    .cta-main-container,
    .service-hero-grid,
    .matrix-row,
    .faq-container,
    .snap-interactive-grid,
    .snap-case-timeline-card,
    .smm-feature-large-grid,
    .smm-case-box,
    .ghl-custom-asymmetric-grid,
    .editorial-showcase-matrix,
    .design-interactive-showcase,
    .video-interactive-timeline-grid,
    .repository-commit-matrix,
    .dev-portfolio-asymmetric-row,
    .wp-blueprint-flex-layout,
    .wp-blueprint-cards-stack,
    .automation-split-panel,
    .timeline-visual-metrics,
    .dashboard-data-grid,
    .mockup-metric-flex,
    .node-grid-row-dual {
        min-width: 0;
        width: 100%;
    }

    .hero-split-container > *,
    .form-grid-wrapper > *,
    .service-hero-grid > *,
    .matrix-row > *,
    .faq-container > *,
    .cta-main-container > *,
    .snap-case-timeline-card > *,
    .smm-case-box > *,
    .wp-blueprint-flex-layout > *,
    .repo-commit-panel > *,
    .video-motion-panel > *,
    .automation-split-panel > *,
    .dashboard-data-grid > *,
    .mockup-metric-flex > *,
    .node-grid-row-dual > * {
        min-width: 0;
        max-width: 100%;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    a,
    span,
    li,
    label,
    button {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    /* Header */
    .main-header {
        padding: 14px 0;
    }

    .main-header.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        width: 100%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        gap: 1rem;
    }

    .logo {
        min-width: 0;
        max-width: calc(100vw - 92px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hamburger {
        flex: 0 0 auto;
        padding: 8px 0 8px 8px;
    }

    .dropdown-content {
        display: none !important;
    }

    /* Home hero */
    .hero-split-section {
        min-height: auto;
        padding: 118px 1.5rem 72px;
    }

    .hero-split-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 3.5rem;
    }

    .hero-left-col {
        width: 100%;
    }

    .hero-display-title {
        max-width: 760px;
        font-size: clamp(38px, 7vw, 46px);
        line-height: 1.12;
    }

    .hero-display-subtitle {
        width: 100%;
        max-width: 680px;
        margin-bottom: 2.25rem;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-action-row {
        width: 100%;
        max-width: 680px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
        margin-bottom: 2.75rem;
    }

    .hero-mini-metrics {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 0.65rem;
    }

    .hero-right-col,
    .ui-scene-wrapper {
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .ui-main-card {
        width: 100%;
        overflow: hidden;
    }

    .floating-glass-panel {
        left: 18px;
        bottom: 24px;
        width: min(280px, calc(100% - 36px));
        max-width: calc(100% - 36px);
    }

    .floating-glass-widget {
        right: 16px;
    }

    .availability-tag {
        right: 8px;
    }

    /* Shared section spacing */
    .services-grid-section,
    .process-section,
    .usps-section,
    .reviews-portfolio-section,
    .home-form-section,
    .services-directory-section,
    .global-cta-section,
    .technical-matrix-section,
    .specifications-table-section,
    .services-faq-section,
    .snap-grid-cards-section,
    .smm-core-matrix,
    .ghl-core-matrix-section,
    .design-studio-grid-section,
    .video-studio-grid-section,
    .dev-repository-section,
    .wp-split-blueprint-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section-header {
        margin-bottom: 3.75rem;
    }

    .section-header h2 {
        font-size: clamp(30px, 5vw, 36px);
    }

    /* Services and cards */
    .services-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card,
    .service-directory-card,
    .usp-card,
    .portfolio-review-card,
    .snap-feature-box,
    .smm-premium-box,
    .ghl-glowing-card,
    .design-asset-card,
    .dev-showcase-panel-item,
    .wp-blueprint-card-item {
        min-width: 0;
    }

    .service-card p {
        min-height: 0;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-box {
        min-width: 0;
    }

    .stat-box::after {
        display: none !important;
    }

    /* Process */
    .process-step-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 1.5rem;
    }

    .process-content-box {
        min-width: 0;
    }

    /* CTA */
    .cta-main-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .cta-content-block {
        width: 100%;
        max-width: 760px;
    }

    .cta-action-row-container {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
    }

    .cta-action-block {
        width: 100%;
        max-width: 620px;
        flex-wrap: wrap;
    }

    .cta-glow-overlay {
        width: min(600px, 95vw);
    }

    /* Form */
    .form-grid-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .premium-interactive-form,
    .form-info-side {
        width: 100%;
        min-width: 0;
    }

    /* Footer */
    .main-footer-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.5rem 2rem;
    }

    .footer-bottom-container {
        width: 100%;
        gap: 1.5rem;
    }

    /* Services directory */
    .directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Service detail pages */
    .service-detail-hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .service-hero-grid,
    .matrix-row,
    .faq-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .faq-header {
        position: static;
    }

    .premium-data-table {
        width: 100%;
        max-width: 100%;
    }

    .faq-item.active .faq-answer {
        max-height: 1200px;
    }

    /* All service page visual widgets */
    .snap-interactive-mockup,
    .smm-interactive-dashboard,
    .email-interactive-mockup,
    .ghl-workflow-visual-box,
    .mc-chat-mockup-box,
    .n8n-node-visual-widget,
    .studio-interactive-workspace,
    .design-canvas-widget,
    .video-timeline-simulation-box,
    .ide-workspace-widget,
    .wp-server-stack-widget,
    .automation-flow-widget {
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Snapchat */
    .snap-interactive-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .snap-case-timeline-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .timeline-visual-metrics {
        flex-wrap: wrap;
        gap: 2rem;
    }

    /* SMM */
    .smm-feature-large-grid,
    .smm-case-box {
        grid-template-columns: minmax(0, 1fr);
    }

    .smm-highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Automation */
    .automation-split-panel,
    .flex-reverse-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .flex-reverse-row .panel-info-block,
    .flex-reverse-row .panel-image-block {
        grid-column: auto;
        grid-row: auto;
    }

    .panel-image-block {
        width: 100%;
    }

    /* GHL */
    .ghl-custom-asymmetric-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Editorial / design */
    .editorial-showcase-matrix,
    .design-interactive-showcase {
        grid-template-columns: minmax(0, 1fr);
    }

    .editorial-diagonal-glow {
        right: 0;
        width: 100%;
    }

    .item-overlay,
    .item-brand-red {
        max-width: calc(100% - 20px);
    }

    /* Video timeline */
    .video-motion-panel {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 1.25rem;
    }

    .video-motion-panel h3,
    .video-motion-panel p {
        grid-column: 2;
        white-space: normal;
        min-width: 0;
    }

    .track-layer-row {
        min-width: 0;
        gap: 0.75rem;
    }

    .video-block-fill {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
    }

    /* Developer / repository */
    .ide-code-lines,
    .ide-terminal-output {
        max-width: 100%;
    }

    .repo-commit-panel {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .repo-file-path,
    .repo-commit-panel h3,
    .repo-commit-panel p {
        grid-column: 2;
        min-width: 0;
    }

    .repo-commit-panel h3 {
        white-space: normal;
    }

    .dev-portfolio-asymmetric-row {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    /* WordPress */
    .wp-blueprint-flex-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .wp-blueprint-sticky-sidebar {
        position: static;
    }

    /* Special metric strips */
    .wp-metric-strip .stats-container,
    .dev-metric-strip .stats-container,
    .video-studio-metric-strip .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Disable desktop hover movement on touch/tablet layouts */
    .service-directory-card:hover,
    .usp-card:hover,
    .snap-feature-box:hover,
    .smm-premium-box:hover,
    .ghl-glowing-card:hover,
    .design-asset-card:hover,
    .wp-blueprint-card-item:hover,
    .repo-commit-panel:hover,
    .video-motion-panel:hover {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Tablet-only refinement (601px–992px)
   -------------------------------------------------------------------------- */
@media (min-width: 601px) and (max-width: 992px) {
    .hero-left-col {
        align-items: center;
        text-align: center;
    }

    .hero-display-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-left h1 {
        font-size: clamp(38px, 6vw, 46px);
    }

    .cta-content-block h2 {
        font-size: clamp(36px, 5.5vw, 44px);
    }

    .service-main-image,
    .panel-embedded-img {
        height: clamp(320px, 48vw, 430px);
    }

    .premium-interactive-form {
        padding: 2.75rem;
    }

    .smm-case-box,
    .snap-case-timeline-card {
        padding: 3rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile master repair (0px–600px)
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
    html,
    body {
        min-width: 0;
    }

    body {
        font-size: 14px;
    }

    /* Consistent mobile page gutters */
    .hero-split-section,
    .services-grid-section,
    .stats-bar-section,
    .process-section,
    .usps-section,
    .cta-closure-section,
    .reviews-portfolio-section,
    .home-form-section,
    .services-hub-hero,
    .services-directory-section,
    .global-cta-section,
    .service-detail-hero,
    .technical-matrix-section,
    .specifications-table-section,
    .services-faq-section,
    .snap-grid-cards-section,
    .smm-core-matrix,
    .ghl-core-matrix-section,
    .design-studio-grid-section,
    .video-studio-grid-section,
    .dev-repository-section,
    .wp-split-blueprint-section,
    .main-footer-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Mobile vertical rhythm */
    .services-grid-section,
    .process-section,
    .usps-section,
    .reviews-portfolio-section,
    .home-form-section,
    .services-directory-section,
    .global-cta-section,
    .technical-matrix-section,
    .specifications-table-section,
    .services-faq-section,
    .snap-grid-cards-section,
    .smm-core-matrix,
    .ghl-core-matrix-section,
    .design-studio-grid-section,
    .video-studio-grid-section,
    .dev-repository-section,
    .wp-split-blueprint-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .main-header {
        padding: 11px 0;
    }

    .main-header.scrolled {
        padding: 9px 0;
    }

    .nav-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo {
        font-size: 17px;
        max-width: calc(100vw - 78px);
        letter-spacing: 0.015em;
    }

    .hamburger {
        gap: 5px;
    }

    .hamburger .bar {
        width: 22px;
    }

    /* Hero */
    .hero-split-section {
        padding-top: 92px !important;
        padding-bottom: 52px !important;
    }

    .hero-split-container {
        gap: 2.25rem;
    }

    .hero-left-col {
        align-items: center;
        text-align: center;
    }

    .premium-badge {
        max-width: 100%;
        margin-bottom: 1.25rem;
        padding: 6px 10px;
        gap: 6px;
    }

    .badge-text {
        font-size: 9px;
        line-height: 1.35;
        letter-spacing: 0.04em;
        white-space: normal;
    }

    .badge-star {
        flex: 0 0 auto;
    }

    .hero-display-title,
    .hero-title,
    .service-hero-left h1,
    .hub-hero-container h1,
    .cta-content-block h2,
    .cta-closure-container h2,
    .form-info-side h2,
    .faq-header h2,
    .wp-blueprint-sticky-sidebar h2,
    .snap-case-timeline-card h2,
    .smm-case-sidebar h2,
    .dev-terminal-title,
    .wp-blueprint-title,
    .design-kinetic-title {
        font-size: clamp(27px, 8vw, 33px) !important;
        line-height: 1.14 !important;
        letter-spacing: -0.025em !important;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: clamp(25px, 7.2vw, 31px) !important;
        line-height: 1.18;
    }

    .hero-display-subtitle,
    .hero-subtitle,
    .hero-lead-text,
    .hub-hero-container p,
    .cta-content-block p,
    .cta-closure-container p,
    .form-info-side p {
        width: 100%;
        max-width: 100%;
        font-size: 13px !important;
        line-height: 1.62 !important;
    }

    .hero-display-subtitle {
        margin-bottom: 1.75rem;
    }

    .hero-action-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        gap: 0.85rem;
        margin-bottom: 1.75rem;
    }

    .hero-ctas,
    .cta-closure-actions,
    .cta-action-block {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 0.85rem !important;
    }

    .hero-ctas {
        margin-bottom: 2rem;
    }

    .btn-premium-primary,
    .btn-primary,
    .btn-secondary,
    .btn-cta-secondary,
    .form-submit-btn,
    .style-studio-btn,
    .style-wp-btn {
        width: 100% !important;
        max-width: 360px;
        min-height: 46px;
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 16px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
        justify-content: center !important;
        text-align: center;
        white-space: normal !important;
    }

    .hero-mini-metrics,
    .hero-trust-line {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.45rem;
        text-align: center;
        font-size: 11px;
        line-height: 1.4;
    }

    .hero-mini-metrics .metric-divider,
    .hero-trust-line .divider {
        display: none;
    }

    .social-proof-pill {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: left;
    }

    .avatar-group {
        flex: 0 0 auto;
    }

    .avatar-group img {
        width: 34px;
        height: 34px;
    }

    .proof-title {
        font-size: 11px;
    }

    .proof-sub {
        font-size: 10px;
    }

    .ui-scene-wrapper {
        max-width: 430px;
    }

    .ui-main-card {
        padding: 10px;
        border-radius: 14px;
        overflow: visible;
    }

    .ui-hero-portrait {
        height: clamp(300px, 105vw, 420px);
        border-radius: 10px;
    }

    .floating-glass-panel {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: none;
    }

    .floating-glass-widget,
    .availability-tag {
        display: none !important;
    }

    .panel-stat-number {
        font-size: 28px;
    }

    .panel-stat-desc,
    .status-label {
        font-size: 10px;
    }

    /* Marquee */
    .marquee-section {
        padding: 1.4rem 0;
    }

    .marquee-track {
        gap: 2rem;
    }

    .marquee-item {
        font-size: 13px;
        letter-spacing: 0.07em;
    }

    /* Section headings and labels */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header p {
        font-size: 13px;
        line-height: 1.6;
    }

    .section-tag,
    .detail-badge-red,
    .cta-badge-red,
    .studio-badge-neon,
    .sidebar-meta-tag,
    .panel-index,
    .matrix-num {
        font-size: 9px !important;
        line-height: 1.4;
        letter-spacing: 0.09em !important;
    }

    /* Home grids/cards */
    .services-container,
    .directory-grid,
    .usps-container,
    .reviews-portfolio-grid,
    .snap-interactive-grid,
    .smm-feature-large-grid,
    .ghl-custom-asymmetric-grid,
    .editorial-showcase-matrix,
    .design-interactive-showcase,
    .dev-portfolio-asymmetric-row {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1rem !important;
    }

    .service-card,
    .service-directory-card,
    .usp-card,
    .portfolio-review-card,
    .snap-feature-box,
    .smm-premium-box,
    .ghl-glowing-card,
    .design-asset-card,
    .dev-showcase-panel-item,
    .wp-blueprint-card-item {
        width: 100%;
        padding: 1.5rem 1.15rem !important;
    }

    .service-card h3,
    .service-directory-card h3,
    .usp-card h3,
    .portfolio-review-card h3,
    .process-content-box h3,
    .matrix-left-info h2,
    .snap-feature-box h3,
    .smm-premium-box h3,
    .ghl-glowing-card h3,
    .design-asset-card h3,
    .editorial-asset-panel h3,
    .wp-blueprint-card-item h3,
    .repo-commit-panel h3,
    .video-motion-panel h3,
    .panel-info-block h3 {
        font-size: 18px !important;
        line-height: 1.28 !important;
        white-space: normal !important;
    }

    .service-card p,
    .service-card-desc,
    .usp-card p,
    .review-quote,
    .process-content-box p,
    .matrix-right-content p,
    .matrix-spec-list li,
    .card-feature-bullets li,
    .snap-feature-box p,
    .smm-premium-box p,
    .ghl-glowing-card p,
    .design-asset-card p,
    .editorial-asset-panel p,
    .wp-blueprint-card-item p,
    .repo-commit-panel p,
    .video-motion-panel p,
    .panel-info-block p,
    .alert-box-problem p,
    .alert-box-solution p,
    .smm-case-main-desc p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .service-card p,
    .review-quote {
        min-height: 0;
        margin-bottom: 1.5rem;
    }

    .card-icon,
    .smm-icon-wrap,
    .card-icon-header,
    .box-icon-head,
    .design-icon-head {
        margin-bottom: 1.15rem;
    }

    /* Stats: compact professional 2x2 layout */
    .stats-bar-section {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important;
    }

    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.25rem 0.75rem;
    }

    .stat-box {
        width: 100%;
        padding: 1rem 0.4rem;
    }

    .counter-number,
    .mockup-metric-card h3,
    .dash-card h4,
    .m-box-mini h4,
    .h-stat-card h5,
    .v-metric h4 {
        font-size: clamp(27px, 8vw, 34px) !important;
        line-height: 1.05;
    }

    .counter-label {
        font-size: 9px !important;
        line-height: 1.4 !important;
        letter-spacing: 0.035em;
    }

    /* Process */
    .process-container {
        margin-top: 2.5rem;
    }

    .process-step-row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .process-meta {
        align-items: flex-start;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .step-line {
        display: block;
        min-height: 80px;
        margin: 0.75rem auto;
    }

    .process-content-box {
        padding: 0 0 2.5rem;
        text-align: left;
    }

    .process-step-row:last-child .process-content-box {
        padding-bottom: 0;
    }

    /* CTA blocks */
    .cta-closure-section {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important;
    }

    .cta-closure-container p {
        margin-bottom: 2rem;
    }

    .cta-main-container {
        align-items: stretch;
        gap: 2rem;
    }

    .cta-content-block {
        text-align: center;
    }

    .cta-action-row-container {
        align-items: stretch;
    }

    .cta-micro-proof,
    .cta-guarantee {
        justify-content: center;
        width: 100%;
        padding-left: 0;
        text-align: center;
        font-size: 10px;
        line-height: 1.45;
    }

    /* Reviews */
    .card-metric-badge {
        margin-bottom: 1.25rem;
        font-size: 9px;
    }

    .reviewer-name {
        font-size: 12px;
    }

    .reviewer-platform {
        font-size: 10px;
    }

    /* Form */
    .form-grid-wrapper {
        gap: 2.25rem;
    }

    .form-info-side {
        align-items: flex-start;
        text-align: left;
    }

    .form-info-side p {
        margin-bottom: 2rem;
    }

    .form-bullet-list {
        width: 100%;
        gap: 1rem;
    }

    .bullet-item {
        width: 100%;
        gap: 10px;
    }

    .bullet-item span:last-child {
        font-size: 13px;
        line-height: 1.5;
    }

    .premium-interactive-form {
        width: 100%;
        padding: 1.35rem 1rem;
        border-radius: 12px;
    }

    .form-row-dual {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .input-group {
        width: 100%;
        min-width: 0;
        margin-bottom: 1.15rem;
    }

    .input-group label {
        font-size: 9px;
    }

    .premium-interactive-form input[type="text"],
    .premium-interactive-form input[type="email"],
    .premium-interactive-form select,
    .premium-interactive-form textarea {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 11px 13px;
        font-size: 13px;
    }

    .premium-interactive-form textarea {
        min-height: 110px;
    }

    /* Footer */
    .main-footer-section {
        padding-top: 4rem;
    }

    .footer-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .footer-brand-col,
    .footer-links-col {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand-desc {
        max-width: 100%;
        font-size: 13px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-links-col h4 {
        margin-bottom: 1.1rem;
        font-size: 10px;
    }

    .footer-links-col ul {
        gap: 0.75rem;
    }

    .footer-links-col ul a,
    .footer-contact-list {
        font-size: 13px;
    }

    .footer-bottom-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-social-links {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem 1.25rem;
    }

    /* Services directory / detail hero */
    .services-hub-hero {
        padding-top: 6.5rem !important;
        padding-bottom: 2.75rem !important;
    }

    .services-directory-section {
        padding-top: 1rem !important;
    }

    .service-detail-hero {
        padding-top: 6.5rem !important;
        padding-bottom: 3rem !important;
    }

    .service-hero-grid {
        gap: 2rem;
    }

    .service-hero-left {
        text-align: left;
    }

    .hero-lead-text {
        margin-bottom: 1.75rem;
    }

    .service-main-image {
        height: clamp(230px, 70vw, 320px);
    }

    .technical-matrix-section {
        padding-top: 2.5rem !important;
    }

    .matrix-row {
        gap: 1rem;
        padding: 2.5rem 0;
    }

    .matrix-left-info {
        gap: 0.35rem;
    }

    .matrix-right-content p {
        margin-bottom: 1.25rem;
    }

    .matrix-spec-list {
        gap: 0.75rem;
    }

    .specifications-table-section {
        padding-top: 2rem !important;
    }

    .specs-table-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .specs-table-container h3 {
        font-size: 18px;
        margin-bottom: 1.25rem;
    }

    .premium-data-table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px;
    }

    .premium-data-table th,
    .premium-data-table td {
        padding: 0.85rem;
        font-size: 11px;
    }

    .premium-data-table th {
        font-size: 9px;
    }

    /* FAQ */
    .services-faq-section {
        padding-top: 3.5rem !important;
    }

    .faq-container {
        gap: 1.75rem;
    }

    .faq-header {
        text-align: left;
    }

    .faq-question {
        min-width: 0;
        padding: 1.1rem;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .faq-question h4 {
        min-width: 0;
        padding-right: 0;
        font-size: 13px;
        line-height: 1.45;
    }

    .faq-toggle-icon {
        flex: 0 0 auto;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 1.1rem 1.1rem;
        font-size: 12px;
        line-height: 1.6;
    }

    /* Shared interactive widgets */
    .snap-interactive-mockup,
    .smm-interactive-dashboard,
    .email-interactive-mockup,
    .ghl-workflow-visual-box,
    .mc-chat-mockup-box,
    .n8n-node-visual-widget,
    .studio-interactive-workspace,
    .design-canvas-widget,
    .video-timeline-simulation-box,
    .wp-server-stack-widget,
    .automation-flow-widget {
        padding: 1.25rem 1rem;
        border-radius: 10px;
    }

    .ide-workspace-widget {
        border-radius: 6px;
    }

    .mockup-header,
    .mockup-header-row,
    .dashboard-header,
    .visual-box-header,
    .chat-mockup-header,
    .node-widget-header,
    .timeline-widget-header,
    .server-widget-header {
        margin-bottom: 1.35rem;
        padding-bottom: 0.85rem;
    }

    .mockup-title,
    .mockup-header-row span,
    .dashboard-header span,
    .visual-box-title,
    .chat-mockup-header span,
    .node-widget-header span,
    .timeline-widget-header span,
    .server-widget-header span {
        min-width: 0;
        font-size: 9px;
        line-height: 1.4;
        letter-spacing: 0.06em;
    }

    /* Snapchat case */
    .snap-case-timeline-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .client-badge-pill,
    .smm-badge-glow {
        font-size: 9px;
    }

    .client-url-tag {
        max-width: 100%;
        margin-bottom: 1.5rem;
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .timeline-visual-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 0.75rem;
    }

    .v-metric {
        min-width: 0;
        padding: 0.9rem;
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.025);
        border-radius: 6px;
    }

    .v-metric p {
        font-size: 10px;
        line-height: 1.35;
    }

    .alert-box-problem,
    .alert-box-solution {
        padding: 1.15rem;
    }

    .alert-box-problem h5,
    .alert-box-solution h5 {
        font-size: 10px;
    }

    /* SMM dashboard and case */
    .dashboard-data-grid,
    .mockup-metric-flex {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .dash-card,
    .m-box-mini {
        min-width: 0;
        padding: 1rem 0.75rem;
    }

    .dash-icon {
        font-size: 18px;
    }

    .dash-card p,
    .m-box-mini p {
        font-size: 9px;
        line-height: 1.4;
    }

    .smm-case-box {
        padding: 1.5rem 1rem;
        gap: 1.75rem;
    }

    .smm-side-data-stack {
        gap: 8px;
    }

    .smm-d-row {
        font-size: 11px;
    }

    .smm-highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 1.5rem;
    }

    .h-stat-card {
        min-width: 0;
        padding: 1rem 0.4rem;
    }

    .h-stat-card p {
        font-size: 8px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em;
    }

    /* Automation flow */
    .automation-flow-widget {
        max-width: 100%;
    }

    .flow-node {
        min-width: 0;
        padding: 11px 13px;
        font-size: 11px;
    }

    .flow-badge {
        font-size: 8px;
    }

    .automation-split-panel {
        gap: 1.5rem;
        padding: 3rem 0;
    }

    .flex-reverse-row {
        display: flex;
        flex-direction: column;
    }

    .panel-info-block {
        align-items: flex-start;
        text-align: left;
    }

    .panel-embedded-img {
        height: clamp(220px, 65vw, 300px);
    }

    /* GHL */
    .flow-step-node {
        min-width: 0;
        padding: 0.8rem 0.9rem;
        gap: 0.8rem;
    }

    .step-icon-mini {
        flex: 0 0 auto;
        font-size: 17px;
    }

    .step-meta-text {
        min-width: 0;
    }

    .step-meta-text h5 {
        font-size: 12px;
    }

    .step-meta-text p {
        font-size: 9px;
        line-height: 1.4;
    }

    /* ManyChat */
    .bubble {
        max-width: 92%;
        padding: 10px 12px;
        font-size: 11px;
        line-height: 1.5;
    }

    /* n8n */
    .node-grid-row-dual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .node-block-item {
        min-width: 0;
        padding: 11px 8px;
        font-size: 10px;
        overflow-wrap: anywhere;
    }

    /* Editorial studio */
    .editorial-diagonal-glow {
        display: none;
    }

    .studio-interactive-workspace {
        max-width: 100%;
    }

    .workspace-header-bar,
    .canvas-header {
        gap: 0.75rem;
    }

    .active-tool-tag,
    .workspace-canvas-res,
    .canvas-mode-indicator,
    .canvas-dimensions {
        min-width: 0;
        font-size: 8px;
        overflow-wrap: anywhere;
    }

    .workspace-artboard {
        height: 220px;
    }

    .artboard-layer {
        width: 82%;
        height: 60%;
        font-size: 9px;
        text-align: center;
    }

    .layer-01 {
        transform: translate(-8px, -8px);
    }

    .layer-02 {
        transform: none;
    }

    .layer-03 {
        transform: translate(8px, 8px);
    }

    .layer-03 h3 {
        font-size: 12px;
    }

    .editorial-asset-panel {
        padding: 2rem 0;
    }

    /* Design canvas */
    .canvas-layer-item {
        max-width: 100%;
        padding: 12px 13px;
        font-size: 11px;
    }

    .item-overlay,
    .item-brand-red {
        max-width: 100%;
        transform: none;
    }

    /* Video editor */
    .video-timeline-simulation-box {
        max-width: 100%;
    }

    .track-layer-row {
        height: auto;
        min-height: 48px;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px;
    }

    .layer-title-tag {
        width: 72px;
        font-size: 8px;
    }

    .video-block-fill {
        min-width: 0;
        padding: 5px 8px;
        font-size: 9px;
    }

    .audio-wave-bars {
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .video-interactive-timeline-grid {
        margin-top: 2.5rem;
        gap: 0.9rem;
    }

    .video-motion-panel {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.65rem;
        padding: 1.25rem 1rem;
        transform: none !important;
    }

    .motion-index-tag {
        font-size: 9px;
        color: var(--color-red);
    }

    /* Shopify IDE */
    .ide-tab-bar {
        min-width: 0;
        padding: 0 0.65rem;
    }

    .ide-tab {
        min-width: 0;
        max-width: calc(100% - 54px);
        padding: 10px 9px;
        font-size: 9px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ide-code-lines {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        gap: 0.45rem;
        font-size: 9px;
        overflow: hidden;
    }

    .code-line {
        width: 100%;
        min-width: 0;
        white-space: pre-wrap;
        overflow-wrap: anywhere;
    }

    .pad-1 {
        padding-left: 0.75rem;
    }

    .pad-2 {
        padding-left: 1.5rem;
    }

    .ide-terminal-output {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1rem;
        font-size: 9px;
        overflow-wrap: anywhere;
    }

    /* Repository */
    .repository-commit-matrix {
        margin-top: 2.5rem;
        gap: 0.9rem;
    }

    .repo-commit-panel {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.6rem;
        padding: 1.25rem 1rem;
        transform: none !important;
    }

    .repo-indicator-branch {
        display: none;
    }

    .repo-file-path {
        width: 100%;
        max-width: 100%;
        font-size: 10px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .dev-showcase-panel-item h3 {
        font-size: 18px !important;
    }

    .showcase-url {
        max-width: 100%;
        font-size: 10px;
        overflow-wrap: anywhere;
    }

    .showcase-desc {
        font-size: 12px;
    }

    /* WordPress */
    .wp-blueprint-flex-layout {
        gap: 2rem;
    }

    .wp-blueprint-card-item {
        padding: 1.5rem 1rem !important;
    }

    .wp-server-stack-widget {
        max-width: 100%;
    }

    .server-layer-row {
        min-width: 0;
        padding: 11px 13px;
    }

    .server-layer-row p {
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    /* Metric strips: keep 2x2 and compact */
    .wp-metric-strip,
    .dev-metric-strip,
    .video-studio-metric-strip {
        padding: 2.75rem 1rem !important;
    }

    .wp-metric-strip .stats-container,
    .dev-metric-strip .stats-container,
    .video-studio-metric-strip .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem 0.75rem !important;
        padding: 0 !important;
    }

    .wp-metric-strip .stat-box,
    .dev-metric-strip .stat-box,
    .video-studio-metric-strip .stat-box {
        width: 100% !important;
        min-width: 0;
        align-items: center !important;
        text-align: center !important;
    }

    .wp-metric-strip .counter-number,
    .dev-metric-strip .counter-number,
    .video-studio-metric-strip .counter-number {
        font-size: 28px !important;
    }

    .wp-metric-strip .counter-label,
    .dev-metric-strip .counter-label,
    .video-studio-metric-strip .counter-label {
        max-width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 9px !important;
    }
}

/* --------------------------------------------------------------------------
   Very small phones (0px–380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
    .hero-display-title,
    .hero-title,
    .service-hero-left h1,
    .hub-hero-container h1,
    .cta-content-block h2,
    .cta-closure-container h2,
    .form-info-side h2,
    .faq-header h2,
    .wp-blueprint-sticky-sidebar h2,
    .snap-case-timeline-card h2,
    .smm-case-sidebar h2,
    .dev-terminal-title,
    .wp-blueprint-title,
    .design-kinetic-title {
        font-size: 26px !important;
    }

    .section-header h2 {
        font-size: 24px !important;
    }

    .hero-split-section {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }

    .logo {
        font-size: 16px;
    }

    .stats-container,
    .wp-metric-strip .stats-container,
    .dev-metric-strip .stats-container,
    .video-studio-metric-strip .stats-container {
        gap: 1.1rem 0.5rem !important;
    }

    .counter-number,
    .wp-metric-strip .counter-number,
    .dev-metric-strip .counter-number,
    .video-studio-metric-strip .counter-number {
        font-size: 25px !important;
    }

    .dashboard-data-grid,
    .mockup-metric-flex {
        grid-template-columns: minmax(0, 1fr);
    }

    .smm-highlights-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline-visual-metrics {
        grid-template-columns: minmax(0, 1fr);
    }

    .node-grid-row-dual {
        grid-template-columns: minmax(0, 1fr);
    }

    .track-layer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .layer-title-tag {
        width: auto;
    }

    .video-block-fill,
    .audio-wave-bars {
        width: 100%;
    }

    .audio-wave-bars {
        justify-content: flex-start;
    }
}



/* --------------------------------------------------------------------------
   About page: remove left/right padding on mobile
   -------------------------------------------------------------------------- */


/* ==========================================================================
   ABOUT PAGE — WEBTOS
   Paste this complete section at the bottom of components.css.
   ========================================================================== */

.about-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(192, 21, 15, 0.04),
            transparent 25%
        ),
        var(--color-black);
}

.about-container {
    width: calc(100% - 4rem);
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Shared About Page Typography
   ========================================================================== */

.about-label {
    display: inline-block;
    color: var(--color-red);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-section-intro {
    max-width: 790px;
    margin-bottom: 4rem;
}

.about-section-intro h2,
.about-values-heading h2,
.about-cta-content h2 {
    color: var(--color-white);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.about-section-intro h2 {
    margin-top: 14px;
    margin-bottom: 18px;
}

.about-section-intro > p {
    color: var(--color-gray-text);
    font-size: 16px;
    line-height: 1.75;
}

.about-section-intro-split {
    max-width: none;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(320px, 0.7fr);
    gap: 5rem;
    align-items: end;
}

.about-section-intro-split h2 {
    margin-top: 14px;
}

.about-section-intro-split > p {
    color: var(--color-gray-text);
    font-size: 16px;
    line-height: 1.75;
}

.about-center-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* ==========================================================================
   About Page Buttons
   ========================================================================== */

.about-primary-button,
.about-secondary-button {
    min-height: 50px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease;
}

.about-primary-button {
    color: var(--color-white);
    background: var(--color-red);
    border: 1px solid var(--color-red);
}

.about-primary-button:hover {
    color: var(--color-white);
    background: #df1a14;
    border-color: #df1a14;
    transform: translateY(-2px);
}

.about-secondary-button {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.about-secondary-button:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   About Hero
   ========================================================================== */

.about-hero-section {
    position: relative;
    min-height: calc(100vh - 90px);
    padding: 8rem 0 7rem;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    z-index: -1;
}

.about-glow-left {
    top: 8%;
    left: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(192, 21, 15, 0.09),
        transparent 68%
    );
}

.about-glow-right {
    right: -12%;
    bottom: 0;
    width: 620px;
    height: 620px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.035),
        transparent 68%
    );
}

.about-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.8fr);
    gap: 6rem;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.about-hero-content h1 {
    max-width: 820px;
    margin: 18px 0 26px;
    color: var(--color-white);
    font-size: clamp(48px, 5.7vw, 78px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.about-hero-content h1 span {
    display: block;
    color: var(--color-white);
    text-shadow: 0 0 38px rgba(192, 21, 15, 0.35);
}

.about-hero-description {
    max-width: 690px;
    color: var(--color-gray-text);
    font-size: 17px;
    line-height: 1.8;
}

.about-hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-hero-stats {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-hero-stat strong {
    color: var(--color-white);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.about-hero-stat span {
    color: #696969;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-stat-line {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Company System Visual
   ========================================================================== */

.about-system-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    margin-left: auto;
    display: grid;
    place-items: center;
}

.about-system-visual::before {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at center,
            rgba(192, 21, 15, 0.08),
            transparent 64%
        ),
        #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 0 70px rgba(255, 255, 255, 0.01),
        0 45px 100px rgba(0, 0, 0, 0.42);
}

.about-system-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.ring-large {
    inset: 18%;
}

.ring-small {
    inset: 31%;
    border-color: rgba(192, 21, 15, 0.2);
}

.about-system-center {
    position: relative;
    z-index: 3;
    width: 46%;
    aspect-ratio: 1;
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.008)
        ),
        #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-system-brand {
    margin-bottom: 10px;
    color: var(--color-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-system-center strong {
    color: var(--color-white);
    font-size: clamp(16px, 2vw, 23px);
    line-height: 1.2;
}

.about-system-center p {
    margin-top: 12px;
    color: #686868;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-system-item {
    position: absolute;
    z-index: 4;
    min-width: 125px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7d7d7;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.about-system-item span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--color-white);
    background: rgba(192, 21, 15, 0.12);
    border: 1px solid rgba(192, 21, 15, 0.23);
    border-radius: 50%;
    font-size: 9px;
}

.about-system-item-one {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.about-system-item-two {
    top: 50%;
    right: -1%;
    transform: translateY(-50%);
}

.about-system-item-three {
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.about-system-item-four {
    top: 50%;
    left: -1%;
    transform: translateY(-50%);
}

/* ==========================================================================
   Company Bio Cards
   ========================================================================== */

.about-company-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.about-bio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-bio-card {
    position: relative;
    min-height: 350px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.about-bio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 100% 0%,
        rgba(192, 21, 15, 0.09),
        transparent 42%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-bio-featured::before,
.about-bio-card:hover::before {
    opacity: 1;
}

.about-bio-card:hover {
    transform: translateY(-5px);
    background: #0e0e0e;
    border-color: rgba(192, 21, 15, 0.2);
}

.about-card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #383838;
    font-family: monospace;
    font-size: 11px;
}

.about-bio-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin-bottom: auto;
    display: grid;
    place-items: center;
    color: var(--color-red);
    background: rgba(192, 21, 15, 0.06);
    border: 1px solid rgba(192, 21, 15, 0.18);
    border-radius: 8px;
    font-size: 21px;
}

.about-bio-card h3,
.about-bio-card p {
    position: relative;
    z-index: 1;
}

.about-bio-card h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-size: 22px;
}

.about-bio-card p {
    color: var(--color-gray-text);
    font-size: 14px;
    line-height: 1.75;
}

/* ==========================================================================
   Journey Timeline
   ========================================================================== */

.about-journey-section {
    padding: 8rem 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012),
            transparent 40%
        ),
        #080808;
}

.about-journey-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.7fr)
        minmax(0, 1.1fr);
    gap: 7rem;
    align-items: start;
}

.about-journey-heading {
    position: sticky;
    top: 130px;
}

.about-journey-heading h2 {
    margin: 14px 0 18px;
    color: var(--color-white);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.about-journey-heading p {
    color: var(--color-gray-text);
    font-size: 15px;
    line-height: 1.75;
}

.about-timeline {
    position: relative;
    padding-left: 3rem;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 7px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(192, 21, 15, 0.65),
        rgba(255, 255, 255, 0.04)
    );
}

.about-timeline-item {
    position: relative;
    padding: 0 0 4rem 2rem;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    top: 6px;
    left: -3.4rem;
    width: 15px;
    height: 15px;
    background: #0a0a0a;
    border: 3px solid var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(192, 21, 15, 0.07);
}

.about-timeline-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-timeline-item h3 {
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 24px;
}

.about-timeline-item p {
    max-width: 650px;
    color: var(--color-gray-text);
    font-size: 15px;
    line-height: 1.75;
}

/* ==========================================================================
   Leadership Team
   ========================================================================== */

.about-team-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-team-card {
    position: relative;
    min-width: 0;
    padding: 2rem;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.018),
            transparent 46%
        ),
        #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.about-team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 21, 15, 0.2);
    background-color: #0e0e0e;
}

.about-avatar {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow:
        inset 0 0 0 7px rgba(0, 0, 0, 0.2),
        0 16px 35px rgba(0, 0, 0, 0.28);
}

.avatar-ceo {
    background: linear-gradient(145deg, #8e1914, #240706);
}

.avatar-cto {
    background: linear-gradient(145deg, #4d2235, #16080f);
}

.avatar-director {
    background: linear-gradient(145deg, #433117, #140d04);
}

.avatar-founder {
    background: linear-gradient(145deg, #203748, #071017);
}

.about-team-information {
    min-width: 0;
}

.about-team-role {
    display: block;
    margin-bottom: 6px;
    color: var(--color-red);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.about-team-information h3 {
    margin-bottom: 8px;
    color: var(--color-white);
    font-size: 22px;
}

.about-team-information p {
    color: var(--color-gray-text);
    font-size: 13px;
    line-height: 1.65;
}

.about-team-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #343434;
    font-family: monospace;
    font-size: 10px;
}

/* ==========================================================================
   Locations
   ========================================================================== */

.about-locations-section {
    padding: 8rem 0;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-location-card {
    min-width: 0;
    min-height: 290px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(192, 21, 15, 0.06),
            transparent 38%
        ),
        #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.about-location-header {
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.about-location-code {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.about-location-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5f5f5f;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-location-status i {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
}

.about-location-card h3 {
    margin-top: 3.3rem;
    margin-bottom: 4px;
    color: var(--color-white);
    font-size: 23px;
}

.about-location-country {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 600;
}

.about-location-card p {
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    color: var(--color-gray-text);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    line-height: 1.6;
}

/* ==========================================================================
   Values
   ========================================================================== */

.about-values-section {
    padding: 8rem 0;
}

.about-values-panel {
    padding: 4rem;
    display: grid;
    grid-template-columns:
        minmax(260px, 0.7fr)
        minmax(0, 1.1fr);
    gap: 6rem;
    background:
        linear-gradient(
            135deg,
            rgba(192, 21, 15, 0.05),
            transparent 38%
        ),
        #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 16px;
}

.about-values-heading h2 {
    margin-top: 14px;
}

.about-values-list {
    display: flex;
    flex-direction: column;
}

.about-value-item {
    padding: 1.8rem 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.about-value-item:first-child {
    padding-top: 0;
}

.about-value-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.about-value-item > span {
    color: var(--color-red);
    font-family: monospace;
    font-size: 11px;
}

.about-value-item h3 {
    margin-bottom: 7px;
    color: var(--color-white);
    font-size: 19px;
}

.about-value-item p {
    color: var(--color-gray-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.about-cta-section {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.about-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 760px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(192, 21, 15, 0.1),
        transparent 68%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-cta-content h2 {
    margin: 16px auto 20px;
}

.about-cta-content > p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-gray-text);
    font-size: 16px;
    line-height: 1.7;
}

.about-cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   ABOUT PAGE TABLET
   Desktop rules above remain unchanged.
   ========================================================================== */

@media (max-width: 1100px) {

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-hero-content {
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
    }

    .about-hero-description {
        margin: 0 auto;
    }

    .about-hero-buttons,
    .about-hero-stats {
        justify-content: center;
    }

    .about-system-visual {
        margin: 0 auto;
    }

    .about-section-intro-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    .about-bio-grid {
        grid-template-columns: 1fr;
    }

    .about-bio-card {
        min-height: 290px;
    }

    .about-journey-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-journey-heading {
        position: static;
        max-width: 760px;
    }

    .about-location-grid {
        grid-template-columns: 1fr;
    }

    .about-location-card {
        min-height: 260px;
    }

    .about-values-panel {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* ==========================================================================
   ABOUT PAGE MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .about-container {
        width: calc(100% - 2rem);
    }

    .about-hero-section {
        min-height: auto;
        padding: 5rem 0;
    }

    .about-hero-grid {
        gap: 3.5rem;
    }

    .about-hero-content h1 {
        margin-top: 14px;
        margin-bottom: 20px;
        font-size: clamp(36px, 11vw, 50px);
        line-height: 1.06;
        letter-spacing: -0.045em;
    }

    .about-hero-description {
        font-size: 14px;
        line-height: 1.72;
    }

    .about-hero-buttons {
        margin-top: 2rem;
        flex-direction: column;
    }

    .about-primary-button,
    .about-secondary-button {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
        font-size: 13px;
    }

    .about-hero-stats {
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .about-stat-line {
        display: none;
    }

    .about-hero-stat {
        min-width: 0;
        padding: 0.9rem 0.35rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.018);
        border: 1px solid rgba(255, 255, 255, 0.045);
        border-radius: 8px;
    }

    .about-hero-stat strong {
        font-size: 19px;
    }

    .about-hero-stat span {
        font-size: 8px;
        line-height: 1.35;
    }

    .about-system-visual {
        width: 100%;
        max-width: 390px;
    }

    .about-system-item {
        min-width: auto;
        padding: 7px 9px;
        gap: 5px;
        font-size: 9px;
    }

    .about-system-item span {
        width: 22px;
        height: 22px;
        font-size: 8px;
    }

    .about-system-item-two {
        right: -2%;
    }

    .about-system-item-four {
        left: -2%;
    }

    .about-system-center {
        width: 50%;
        padding: 1rem;
    }

    .about-system-center strong {
        font-size: 15px;
    }

    .about-system-center p {
        margin-top: 8px;
        font-size: 8px;
    }

    .about-company-section,
    .about-journey-section,
    .about-team-section,
    .about-locations-section,
    .about-values-section {
        padding: 5rem 0;
    }

    .about-section-intro {
        margin-bottom: 2.5rem;
    }

    .about-section-intro h2,
    .about-values-heading h2,
    .about-cta-content h2 {
        font-size: clamp(29px, 8.5vw, 38px);
        line-height: 1.12;
    }

    .about-section-intro > p,
    .about-section-intro-split > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-bio-card {
        min-height: auto;
        padding: 1.7rem;
    }

    .about-bio-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 2.5rem;
    }

    .about-bio-card h3 {
        margin-top: 0;
        font-size: 19px;
    }

    .about-bio-card p {
        font-size: 13px;
    }

    .about-journey-grid {
        gap: 3rem;
    }

    .about-journey-heading h2 {
        font-size: clamp(29px, 8.5vw, 38px);
    }

    .about-journey-heading p,
    .about-timeline-item p {
        font-size: 13px;
    }

    .about-timeline {
        padding-left: 2rem;
    }

    .about-timeline::before {
        left: 5px;
    }

    .about-timeline-item {
        padding: 0 0 3rem 1.25rem;
    }

    .about-timeline-dot {
        left: -2.1rem;
        width: 13px;
        height: 13px;
    }

    .about-timeline-item h3 {
        font-size: 20px;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-team-card {
        padding: 1.5rem;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 1rem;
    }

    .about-avatar {
        width: 64px;
        height: 64px;
        font-size: 17px;
    }

    .about-team-information h3 {
        font-size: 19px;
    }

    .about-team-information p {
        font-size: 12px;
    }

    .about-team-index {
        display: none;
    }

    .about-location-card {
        min-height: auto;
        padding: 1.6rem;
    }

    .about-location-card h3 {
        margin-top: 2.5rem;
        font-size: 20px;
    }

    .about-location-status {
        font-size: 8px;
    }

    .about-values-panel {
        padding: 1.7rem;
        gap: 2.5rem;
        border-radius: 12px;
    }

    .about-value-item {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 1rem;
    }

    .about-value-item h3 {
        font-size: 17px;
    }

    .about-value-item p {
        font-size: 12px;
    }

    .about-cta-section {
        padding: 6rem 0;
    }

    .about-cta-content > p {
        font-size: 14px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   ABOUT PAGE VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .about-container {
        width: calc(100% - 1.5rem);
    }

    .about-hero-section {
        padding-top: 4rem;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .about-system-visual {
        min-height: 330px;
        aspect-ratio: auto;
    }

    .about-system-visual::before {
        inset: 5%;
    }

    .ring-large {
        inset: 15%;
    }

    .ring-small {
        inset: 29%;
    }

    .about-system-center {
        width: 49%;
    }

    .about-system-center p {
        display: none;
    }

    .about-system-item-one {
        top: 1%;
    }

    .about-system-item-three {
        bottom: 1%;
    }

    .about-system-item-two {
        right: -1%;
    }

    .about-system-item-four {
        left: -1%;
    }

    .about-team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-avatar {
        margin: 0 auto;
    }

    .about-location-header {
        align-items: flex-start;
    }

    .about-location-status {
        max-width: 125px;
        text-align: right;
    }
}

/* ==========================================================================
   Reduced Motion Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .about-page *,
    .about-page *::before,
    .about-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.homepage-form-status {
    min-height: 22px;
    margin-top: 14px;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.homepage-form-status.is-loading {
    color: #aaaaaa;
}

.homepage-form-status.is-success {
    color: #45ce7b;
}

.homepage-form-status.is-error {
    color: #ff625c;
}

.premium-interactive-form input.input-error,
.premium-interactive-form select.input-error,
.premium-interactive-form textarea.input-error {
    border-color: #d71913;
    box-shadow: 0 0 0 2px rgba(215, 25, 19, 0.12);
}

.form-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

