/* Neural Core Specialties Page Styles */
/* Copied directly from home.css for WHO and WHAT sections */

/* Neural Core Specialties specific styles */

/* ========================================================================
   INLINE TEXT LINKS - Native content links for SEO
   ======================================================================== */
.inline-text-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(217, 119, 6, 0.3);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.inline-text-link:hover {
    text-decoration-color: rgba(217, 119, 6, 0.8);
    color: rgba(217, 119, 6, 0.9);
}

/* Subtle glow on hover for dark backgrounds */
.inline-text-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.5), transparent);
    animation: linkGlow 0.5s ease;
}

@keyframes linkGlow {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* For light text areas, adjust link visibility */
.about-description .inline-text-link,
.what-description .inline-text-link,
.layer-description .inline-text-link,
.faq-answer-content .inline-text-link {
    text-decoration-color: rgba(116, 238, 221, 0.3);
}

.about-description .inline-text-link:hover,
.what-description .inline-text-link:hover,
.layer-description .inline-text-link:hover,
.faq-answer-content .inline-text-link:hover {
    color: rgba(116, 238, 221, 0.9);
    text-decoration-color: rgba(116, 238, 221, 0.8);
}

/* Hero section removed - using inline styles for above-the-fold content */
/* External CSS only for below-the-fold sections */

/* ========================================================================
   GRADIENT TEXT - Shared across sections
   ======================================================================== */
.neural-gradient-text {
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========================================================================
   ABOUT SECTION - "WHO WE ARE"
   ======================================================================== */

.neural-about-section {
    height: 80vh;  /* Fixed to exactly 80% viewport height */
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--neural-black);
    position: relative;
    box-sizing: border-box;
    border-top: 1px solid var(--neural-white);
    /* Smooth transitions for scroll animations */
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.neural-about-section .container {
    max-width: 1600px;  /* Increased for more width */
    width: 100%;
    margin: 0 auto;
    padding: 60px;  /* Consistent padding all around */
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;  /* Slightly wider left column */
    gap: 100px;  /* Increased gap */
    align-items: center;  /* Center vertically within container */
}

.about-label {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--neural-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);  /* Increased from 5rem max */
    font-weight: 200;
    line-height: 1.05;
    color: var(--neural-white);
    letter-spacing: -0.02em;
    margin: 0;
}

.about-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    /* Disable sticky behavior on mobile for better UX */
    .section-stack-wrapper[data-stack="about"],
    .section-stack-wrapper[data-stack="what"] {
        position: relative !important;
        top: 0 !important;
    }
    
    .neural-about-section {
        min-height: auto;  /* Allow natural height on mobile */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-label {
        font-size: 1.125rem;
    }
    
    .about-title {
        font-size: clamp(2.5rem, 10vw, 4rem);  /* Adjusted for mobile */
    }
    
    .about-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    
    .about-label {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: clamp(2rem, 9vw, 3rem);  /* Decreased for small mobile */
    }
    
    .about-description {
        font-size: 1rem;
    }
}

/* ========================================================================
   WHAT SECTION - "WHAT WE DO"
   ======================================================================== */

.neural-what-section {
    height: 80vh;  /* Fixed to exactly 80% viewport height */
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--neural-black);
    position: relative;
    box-sizing: border-box;
    border-top: 1px solid var(--neural-white);
    /* Smooth transitions for scroll animations */
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.neural-what-section .container {
    max-width: 1600px;  /* Match about section width */
    width: 100%;
    margin: 0 auto;
    padding: 60px;  /* Consistent padding all around */
}

.what-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;  /* Match about-content proportions */
    gap: 100px;  /* Match about-content gap for alignment */
    align-items: center;  /* Center vertically within container */
}

.what-label {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--neural-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.what-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);  /* Match about-title size */
    font-weight: 200;
    line-height: 1.05;
    color: var(--neural-white);
    letter-spacing: -0.02em;
    margin: 0;
}

.what-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.what-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .what-content {
        gap: 40px;
    }
    
    .what-label {
        font-size: 1.25rem;
    }
    
    .what-title {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .what-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .neural-what-section {
        min-height: auto;
    }
    
    .what-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .what-label {
        font-size: 1.125rem;
    }
    
    .what-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .what-description {
        font-size: 1.125rem;
    }
}

/* ========================================================================
   STACKING SCROLL SECTIONS - STICKY BEHAVIOR
   ======================================================================== */

/* Wrapper containers handle positioning */
.section-stack-wrapper {
    position: relative;
    width: 100%;
    /* Custom properties for dynamic values */
    --stack-offset: 0;
    --stack-opacity: 1;
    --stack-scale: 1;
}

/* About wrapper - first to stick */
.section-stack-wrapper[data-stack="about"] {
    position: sticky;
    top: var(--header-height);
    z-index: 10;
}

/* What wrapper - sticks and covers about */
.section-stack-wrapper[data-stack="what"] {
    position: sticky;
    top: var(--header-height);
    z-index: 11;
}

/* Core wrapper - normal flow, doesn't stick, covers sticky sections */
.section-stack-wrapper[data-stack="core"] {
    position: relative;
    z-index: 12;
    background: var(--neural-black); /* Ensure it covers */
    min-height: 100vh;
    margin-top: 0; /* Ensure no gap */
}

/* Core-2 wrapper for industry cards - reduced z-index to not overlay FAQ */
.section-stack-wrapper[data-stack="core-2"] {
    position: relative;
    z-index: 11;
    background: var(--neural-black);
    min-height: 100vh;
}

/* Labs wrapper - covers What and Core */
.section-stack-wrapper[data-stack="labs"] {
    position: relative;
    z-index: 13;
    background: var(--neural-black); /* Ensure it covers */
    min-height: 100vh;
}

/* Content sections remain untouched for animations */
.section-stack-wrapper .neural-about-section,
.section-stack-wrapper .neural-what-section,
.section-stack-wrapper .neural-core-section,
.section-stack-wrapper .neural-labs-section {
    /* Animations work independently of wrapper positioning */
    position: relative;
    z-index: 1;
}

/* State classes for JavaScript control */
.section-stack-wrapper.is-stuck {
    /* When section is in stuck position */
}

.section-stack-wrapper.is-covered {
    /* When section is being covered */
    --stack-opacity: 0.7;
}

.section-stack-wrapper.is-covering {
    /* When section is covering another */
}

/* Apply dynamic properties to content */
.section-stack-wrapper[data-stack="about"] .neural-about-section {
    opacity: var(--stack-opacity);
}

.section-stack-wrapper[data-stack="what"] .neural-what-section {
    opacity: var(--stack-opacity);
}

/* First specialty section that scrolls over WHAT */
.fullscreen-section.specialty-section-1 {
    position: relative;
    z-index: 12;
    background: var(--neural-black);
    min-height: 100vh;
}

/* All fullscreen specialty sections - ensure they cover sticky sections */
.fullscreen-section {
    position: relative;
    z-index: 12;
    background: var(--neural-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

/* Ensure all specialty sections properly cover the sticky sections */
.specialty-section-1,
.specialty-section-2,
.specialty-section-3 {
    position: relative;
    z-index: 12;
    background: #0A0A0B;
    isolation: isolate; /* Create new stacking context */
}

/* ========================================================================
   TECH LAYERS SECTION - Core Technology Components
   ======================================================================== */

.tech-layers-section {
    padding: 100px 2.5vw;
    background: var(--neural-black);
    min-height: 100vh;
    border-top: 1px solid var(--neural-white);
}

.tech-layers-section .container {
    max-width: 100%;
    width: 90vw;
    padding: 0 5vw;
    margin: 0 auto;
}

/* Section header styling to match neural-core index */
.tech-layers-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-layers-section .section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Decorative line under section title - higher specificity to override FAQ styles */
.section-stack-wrapper .tech-layers-section .section-title::after,
.tech-layers-section .section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
}

.tech-layers-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.layers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.layer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.layer-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--neural-purple);
    transform: translateY(-4px);
}

.layer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neural-purple), var(--neural-orange));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.layer-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.layer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.layer-features {
    list-style: none;
    padding: 0;
}

.layer-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.layer-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neural-orange);
}

/* Industry Cards Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.industry-card {
    background: var(--neural-black, #0A0A0B);
    border: 2px solid;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, border-color 0.3s ease;
}

/* Industry-specific border colors - moved from inline styles per TODO-CLEANUP.md */
.industry-card[data-ind-id="ind-1"] { border-color: #ff966d; }
.industry-card[data-ind-id="ind-2"] { border-color: #e47d7a; }
.industry-card[data-ind-id="ind-3"] { border-color: #c96587; }
.industry-card[data-ind-id="ind-4"] { border-color: #ae5d94; }
.industry-card[data-ind-id="ind-5"] { border-color: #9358a1; }
.industry-card[data-ind-id="ind-6"] { border-color: #8254ae; }
.industry-card[data-ind-id="ind-7"] { border-color: #7551bb; }
.industry-card[data-ind-id="ind-8"] { border-color: #6f56cf; }

/* Wave Glow Effect - Neural network pulse animation */
@keyframes waveGlow {
    0%, 100% {
        box-shadow: 
            0 0 0px rgba(116, 238, 221, 0),
            0 0 0px rgba(217, 119, 6, 0),
            inset 0 0 0px rgba(60, 19, 97, 0);
        filter: brightness(1);
        border-color: inherit;
    }
    25% {
        box-shadow: 
            0 0 30px rgba(116, 238, 221, 0.5),
            0 0 50px rgba(217, 119, 6, 0.3),
            inset 0 0 20px rgba(116, 238, 221, 0.1);
        filter: brightness(1.2);
        border-color: #74EEDD;
    }
    50% {
        box-shadow: 
            0 0 40px rgba(116, 238, 221, 0.6),
            0 0 60px rgba(217, 119, 6, 0.4),
            inset 0 0 30px rgba(116, 238, 221, 0.15);
        filter: brightness(1.3);
        border-color: #74EEDD;
    }
    75% {
        box-shadow: 
            0 0 20px rgba(116, 238, 221, 0.3),
            0 0 30px rgba(217, 119, 6, 0.2),
            inset 0 0 15px rgba(60, 19, 97, 0.1);
        filter: brightness(1.1);
        border-color: inherit;
    }
}

/* Apply wave animation with staggered delays - creates smooth rolling wave effect */
.industry-card[data-ind-id="ind-1"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 0s;
}

.industry-card[data-ind-id="ind-2"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 1s;
}

.industry-card[data-ind-id="ind-3"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 2s;
}

.industry-card[data-ind-id="ind-4"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 3s;
}

/* Second row with offset for diagonal wave */
.industry-card[data-ind-id="ind-5"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 0.5s;
}

.industry-card[data-ind-id="ind-6"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 1.5s;
}

.industry-card[data-ind-id="ind-7"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 2.5s;
}

.industry-card[data-ind-id="ind-8"] {
    animation: waveGlow 8s linear infinite;
    animation-delay: 3.5s;
}

/* Alternative wave pattern - diagonal flow */
@keyframes neuralPulse {
    0%, 100% {
        border-color: inherit;
        background: var(--neural-black, #0A0A0B);
    }
    25% {
        background: linear-gradient(135deg, 
            rgba(217, 119, 6, 0.05) 0%, 
            rgba(60, 19, 97, 0.05) 100%);
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(60, 19, 97, 0.08) 0%, 
            rgba(217, 119, 6, 0.08) 100%);
    }
}

/* Hover to pause animation for better interaction */
.industry-card:hover {
    animation-play-state: paused;
    transform: scale(1.03);
    box-shadow: 
        0 0 40px rgba(116, 238, 221, 0.4),
        0 0 60px rgba(217, 119, 6, 0.3),
        inset 0 0 30px rgba(60, 19, 97, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GPU optimization for smooth animation */
.industry-card {
    will-change: transform, box-shadow, filter, border-color;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation-fill-mode: both;
    transform-origin: center;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .industry-card {
        animation: none !important;
    }
}


.industry-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.industry-icon {
    display: block;
}

.industry-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Medium size icons for specific cards */
.industry-icon-medium img {
    width: 140px;
    height: 140px;
}

.industry-card:hover .industry-icon img {
    opacity: 1;
}

/* Screen reader only text - visible to screen readers but not visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hover Bubbles for Ecommerce Card */
.industry-card-with-bubbles {
    overflow: visible;
}

.hover-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    padding: 12px 20px;
    background: rgba(10, 10, 11, 0.95); /* Black background with slight transparency */
    border: 1px solid #ff966d; /* Orange border matching card */
    border-radius: 0; /* Square corners */
    color: #ff966d; /* Orange text */
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.9) translateX(140px);
    transition: opacity 0.6s ease;
    pointer-events: none;
    left: 50%;
    top: 60%; /* Moved down to center on icon */
    
    /* Subtle shadow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Smooth continuous rotation - much slower */
@keyframes smoothOrbit1 {
    0% {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes smoothOrbit2 {
    0% {
        transform: rotate(120deg) translateX(140px) rotate(-120deg);
    }
    100% {
        transform: rotate(480deg) translateX(140px) rotate(-480deg);
    }
}

@keyframes smoothOrbit3 {
    0% {
        transform: rotate(240deg) translateX(140px) rotate(-240deg);
    }
    100% {
        transform: rotate(600deg) translateX(140px) rotate(-600deg);
    }
}


/* Position and animate each bubble - centered on text width */
.bubble-1 {
    margin-left: -80px;  /* Adjusted for longer text */
    margin-top: -18px;
}

.bubble-2 {
    margin-left: -100px;  /* Adjusted for longer text */
    margin-top: -18px;
}

.bubble-3 {
    margin-left: -85px;  /* Adjusted for longer text */
    margin-top: -18px;
}

/* Show and animate bubbles on card hover */
.industry-card-with-bubbles:hover .bubble {
    opacity: 1;
}

.industry-card-with-bubbles:hover .bubble-1 {
    animation: smoothOrbit1 20s linear infinite;
    transition-delay: 0s;
}

.industry-card-with-bubbles:hover .bubble-2 {
    animation: smoothOrbit2 20s linear infinite;
    transition-delay: 0.1s;
}

.industry-card-with-bubbles:hover .bubble-3 {
    animation: smoothOrbit3 20s linear infinite;
    transition-delay: 0.2s;
}

/* Card-specific bubble colors */
.bubble-retail {
    border-color: #e47d7a;
    color: #e47d7a;
}

.bubble-tech {
    border-color: #c96587;
    color: #c96587;
}

.bubble-smallbiz {
    border-color: #ae5d94;
    color: #ae5d94;
}

.bubble-showroom {
    border-color: #9358a1;
    color: #9358a1;
}

.bubble-cannabis {
    border-color: #8254ae;
    color: #8254ae;
}

.bubble-services {
    border-color: #7551bb;
    color: #7551bb;
}

.bubble-enterprise {
    border-color: #6f56cf;
    color: #6f56cf;
}

/* Keep original orange for Ecommerce - no additional class needed */

/* Subtle hover state for cards - matches their border color */
.industry-card-with-bubbles:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}


/* Mobile adjustments - hide hover bubbles on touch devices */
@media (max-width: 768px) {
    /* Hide bubbles on mobile - they don't work with touch */
    .hover-bubbles {
        display: none;
    }
}

/* Also hide on any touch device regardless of size */
@media (hover: none) and (pointer: coarse) {
    .hover-bubbles {
        display: none;
    }
    
    /* Touch-friendly tap targets */
    .industry-card {
        min-height: 140px;
        cursor: pointer;
    }
    
    /* Add visual feedback for touch */
    .industry-card:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Responsive for tech layers */
@media (max-width: 1200px) {
    .layers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* iPad Pro and larger tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
    }
    
    .industry-icon img {
        max-width: 120px;
        height: auto;
    }
}

@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-layers-section {
        padding: 60px 24px;
    }
    
    .layers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .layer-card {
        padding: 2rem;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-card {
        min-height: 120px;
        padding: 2rem 1.5rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
        min-height: 120px;
    }
    
    .industry-icon img {
        max-width: 100px !important;
        height: auto !important;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
}

/* Text size adjustments to match homepage */
.about-description,
.what-description {
  font-size: 1.4rem !important;
  line-height: 1.7 !important;
}

.about-title,
.what-title {
  font-size: 4.2rem !important;
  line-height: 1.1 !important;
}

/* Tablet: Responsive scaling */
@media (max-width: 768px) {
  .about-description,
  .what-description {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
  }
  
  .about-title,
  .what-title {
    font-size: 3.2rem !important;
    line-height: 1.15 !important;
  }
}

/* Mobile: Further scaling */
@media (max-width: 480px) {
  .about-description,
  .what-description {
    font-size: 1.1rem !important;
    line-height: 1.55 !important;
  }
  
  .about-title,
  .what-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
}