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

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

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.error {
    background: #ef4444;
}

.toast-notification.success {
    background: #10b981;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Dark mode color variables */
body.dark-mode {
    --primary-color: #fe560f;
    --secondary-color: #ff7a3d;
    --text-dark: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --bg-light: #141414;
    --bg-dark: var(--bg-light);
    --white: #0a0a0a;
    --card-bg: var(--bg-light);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark, #ffffff);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   REUSABLE TITLE COMPONENTS
   ========================================

   Use these classes for consistent title styling across the site.

   HERO TITLES (Left-Aligned):
   - .title-hero              : Main hero title (5rem → 3rem → 2rem responsive)
   - .title-hero-with-line    : Add decorative orange underline to hero title

   SECTION TITLES (Centralized):
   - .title-section           : Large section title (5rem → 3rem → 2rem responsive)
   - .title-section-medium    : Medium section title (3rem → 2rem → 1.75rem responsive)
   - .title-subsection        : Small subsection title (2.5rem → 2rem → 1.5rem responsive)
   - .title-subsection-with-line : Add decorative orange underline to subsection title

   USAGE EXAMPLES:
   <h1 class="title-hero title-hero-with-line">Hero Title</h1>
   <h2 class="title-section">Section Title</h2>
   <h3 class="title-subsection title-subsection-with-line">Subsection Title</h3>

   ======================================== */

/* Hero Titles - Left Aligned */
.title-hero {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.title-hero-with-line::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin-top: 1.5rem;
    border-radius: 2px;
}

/* Section Titles - Centralized */
.title-section {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.title-section-medium {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 2rem 0;
    text-align: center;
}

.title-subsection {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.title-subsection-with-line::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Responsive Title Sizes */
@media (max-width: 968px) {
    .title-hero {
        font-size: 3rem;
    }

    .title-section {
        font-size: 3rem;
    }

    .title-section-medium {
        font-size: 2rem;
    }

    .title-subsection {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .title-hero {
        font-size: 2rem;
    }

    .title-section {
        font-size: 2rem;
    }

    .title-section-medium {
        font-size: 1.75rem;
    }

    .title-subsection {
        font-size: 1.5rem;
    }
}

/* ======================================== */

/* ========================================
   REUSABLE TEXT COMPONENTS
   ========================================

   Use these classes for consistent text styling across the site.

   BASE TEXT STYLES:
   - .text-body              : Standard body text (1.125rem → 1rem → 0.95rem responsive)
   - .text-body-center       : Centered body text with auto margins
   - .text-body-highlight    : Body text with left border accent (like unified-paragraph)

   MODIFIERS:
   - .text-muted            : Lighter color for secondary text
   - .text-white-muted      : White text with opacity (for dark backgrounds)

   USAGE EXAMPLES:
   <p class="text-body">Standard paragraph text</p>
   <p class="text-body text-body-center">Centered paragraph</p>
   <p class="text-body text-body-highlight">Text with left border</p>
   <p class="text-body text-white-muted">Light text on dark bg</p>

   ======================================== */

/* Base body text - Standard size across site */
.text-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Centered body text with constrained width */
.text-body-center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Body text with left border highlight */
.text-body-highlight {
    padding: 24px;
    border-left: 4px solid #fe560f;
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Text color modifiers */
.text-muted {
    color: var(--text-light);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive text sizes */
@media (max-width: 768px) {
    .text-body {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text-body {
        font-size: 0.95rem;
    }

    .text-body-highlight {
        padding: 20px;
    }
}

/* ======================================== */

main {
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

header {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--bg-light);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
}

/* Logo Image */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.blockware-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    background: #141414;
    overflow: hidden;
}

/* Geometric background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(254, 86, 15, 0.08) 0%, rgba(255, 122, 61, 0.05) 50%, transparent 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(254, 86, 15, 0.15);
    border-radius: 50%;
    z-index: 1;
}

/* Circuit-like lines */
.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(254, 86, 15, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.line-1 {
    top: 15%;
    right: 15%;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
}

.line-2 {
    top: 45%;
    right: 8%;
    width: 400px;
    height: 1px;
    transform: rotate(25deg);
}

.line-3 {
    bottom: 25%;
    right: 20%;
    width: 250px;
    height: 1px;
    transform: rotate(-15deg);
}

/* Accent dots */
.accent-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fe560f;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(254, 86, 15, 0.6);
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    right: 25%;
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 30%;
    right: 35%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Hexagon elements */
.hexagon {
    position: absolute;
    width: 100px;
    height: 115px;
    z-index: 1;
}

.hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid rgba(255, 122, 61, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-1 {
    top: 25%;
    right: 35%;
    transform: rotate(15deg);
}

.hex-2 {
    bottom: 35%;
    right: 10%;
    transform: rotate(-20deg);
    width: 70px;
    height: 80px;
}

/* Content container */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-top: -80px;
}

/* Legacy hero title classes - now using reusable components */
.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin-top: 1.5rem;
    border-radius: 2px;
}

/* Legacy hero description - updated to use text-body standard */
.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-description.bullets {
    text-align: left;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: #ff7a3d;
    font-weight: 600;
}

/* Unified Button Styles */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    border-color: #fe560f;
    background: rgba(254, 86, 15, 0.1);
    transform: translateY(-2px);
}


.btn {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #fe560f;
    background: rgba(254, 86, 15, 0.1);
    transform: translateY(-2px);
}

/* Component Navigation */
.component-navigation {
    max-width: 800px;
    opacity: 0;
    display: none;
    margin-top: 3rem;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease;
}

.component-position-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Navigation Buttons */
.nav-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
}

.nav-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #666666;
}

/* Section Styles */
section {
    padding: 60px 0;
}

/* Performance Section */
.performance-section {
    background: var(--bg-light) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.performance-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.problem-section .unified-header {
    text-align: center;
    margin-bottom: 3rem;
}

.performance-section .unified-header {
    text-align: center;
    margin-bottom: 3rem;
}

.performance-section .title-section {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

/* Legacy performance tagline - updated to use text-body standard */
.performance-tagline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.performance-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fe560f, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.performance-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 86, 15, 0.3);
    box-shadow: 0 20px 60px rgba(254, 86, 15, 0.2);
}

.performance-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.performance-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(254, 86, 15, 0.2) 0%, rgba(255, 122, 61, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fe560f;
    position: relative;
    transition: all 0.5s ease;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #fe560f, #ff7a3d) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.performance-card:hover .card-icon {
    transform: scale(1.1) rotateY(360deg);
}

.performance-card:hover .card-icon::after {
    opacity: 1;
}

.card-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 24px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.metric-up-to {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-number {
    font-size: 5rem;
    font-weight: 900;
    color: #fe560f; /* Fallback color */
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
}

.metric-multiplier,
.metric-percent {
    font-size: 3rem;
    font-weight: 700;
    color: #fe560f;
    line-height: 1;
}

.card-label {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Animation delays for staggered effect */
.performance-card.card-1 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.performance-card.card-2 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.performance-card.card-3 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Responsive for performance section */
@media (max-width: 968px) {
    .performance-section {
        padding: 80px 0;
    }

    .performance-section .title-section {
        font-size: 3rem;
    }

    .performance-tagline {
        font-size: 1rem;
    }

    .performance-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 30px;
    }

    .metric-number {
        font-size: 4rem;
    }

    .metric-multiplier,
    .metric-percent {
        font-size: 2.5rem;
    }

    .card-label {
        font-size: 1.25rem;
    }

    /* Auto-hover effect on scroll for mobile */
    .performance-card.auto-hover {
        transform: translateY(-10px);
        border-color: rgba(254, 86, 15, 0.3);
        box-shadow: 0 20px 60px rgba(254, 86, 15, 0.2);
    }

    .performance-card.auto-hover::before {
        opacity: 1;
    }

    .performance-card.auto-hover .card-glow {
        opacity: 1;
    }

    .performance-card.auto-hover .card-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .performance-card.auto-hover .card-icon::after {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .performance-section {
        padding: 60px 0;
    }

    .performance-section .title-section {
        font-size: 2rem;
    }

    .performance-tagline {
        font-size: 0.95rem;
    }

    .performance-card {
        padding: 36px 24px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .metric-number {
        font-size: 3.5rem;
    }

    .metric-multiplier,
    .metric-percent {
        font-size: 2rem;
    }

    .card-label {
        font-size: 1.125rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* Legacy section title - now centralized */
.section-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

/* Unified Section */
.unified-section {
    background: var(--bg-light);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Animated floating orbs for long section */
.unified-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb1 20s ease-in-out infinite;
}

.unified-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -12%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb2 18s ease-in-out infinite;
}

/* Additional floating orbs using pseudo-element on content */
.unified-content::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: floatOrb3 22s ease-in-out infinite;
}

.unified-content::after {
    content: '';
    position: absolute;
    top: 70%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.07) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: floatOrb4 24s ease-in-out infinite;
}

/* Floating orb animations */
@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(-30px, -40px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px);
        opacity: 1;
    }
    75% {
        transform: translate(-40px, -40px);
        opacity: 0.9;
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    33% {
        transform: translate(40px, -30px);
        opacity: 0.85;
    }
    66% {
        transform: translate(20px, -60px);
        opacity: 0.95;
    }
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(35px, 25px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(50px, -20px) scale(1.05);
        opacity: 0.9;
    }
    75% {
        transform: translate(25px, 30px) scale(1);
        opacity: 0.85;
    }
}

@keyframes floatOrb4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate(-25px, 35px) scale(1.08);
        opacity: 0.9;
    }
    60% {
        transform: translate(-45px, -25px) scale(1.12);
        opacity: 0.85;
    }
    90% {
        transform: translate(-20px, 20px) scale(1.05);
        opacity: 0.95;
    }
}

.unified-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.unified-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.unified-text {
    max-width: 1200px;
    margin: 0 auto;
}

/* Legacy unified paragraph - updated to use text-body standard */
.unified-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    padding: 24px;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    border-left: 4px solid #fe560f;
}

.unified-list {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    list-style-position: inside;
}

.unified-list li {
    margin-bottom: 0.5rem;
}

.unified-image {
    width: 100%;
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.unified-image svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Unified Subsections */
.unified-subsection {
    margin-bottom: 4rem;
}

/* Legacy subsection title - centralized with optional line */
.subsection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Workflow Container */
.workflow-container {
    background: #242424;
    border: 3px solid #fe560f;
    border-radius: 12px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

/* Workflow Diagram */
.workflow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.workflow-step {
    background: #2a2a2a;
    border: 1.5px solid #fe560f;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    background: #2a2a2a;
    border-color: #ff7a3d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 86, 15, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
}

.step-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 500;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.workflow-arrow svg {
    width: 100%;
    height: 20px;
    display: block;
}

.workflow-note {
    font-size: 1.125rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive for unified section */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.6rem;
    }

    .subsection-title {
        font-size: 2rem;
    }

    .unified-paragraph {
        font-size: 1rem;
    }

    .workflow-container {
        padding: 30px 20px;
    }

    .workflow-diagram {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .workflow-step {
        padding: 20px 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin: 0 auto 15px;
    }

    .step-content {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .workflow-arrow {
        min-width: unset;
        min-height: 30px;
        margin: 0 auto;
    }

    .workflow-arrow svg {
        width: 20px;
        height: 30px;
        transform: rotate(90deg);
    }

    /* Make SVG fully responsive on mobile */
    .unified-image {
        overflow: visible;
        margin: 2rem 0;
        padding: 0;
    }

    .unified-image svg {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Increase SVG text sizes for better mobile readability */
    .unified-image svg text {
        font-size: 125% !important;
    }

    /* Mobile-specific spacing adjustments for SVG */
    .unified-image svg .feature-callout-1 {
        transform: translateY(0px);
    }

    /* Increase orange frame stroke width on mobile */
    .unified-image svg rect[x="570"][y="215"] {
        stroke-width: 5 !important;
    }

    /* Increase spacing between benefit text lines */
    .unified-image svg .benefit-1 text:first-child,
    .unified-image svg .benefit-2 text:first-child,
    .unified-image svg .benefit-3 text:first-child {
        transform: translateY(-3px);
    }

    .unified-image svg .benefit-1 text:last-child,
    .unified-image svg .benefit-2 text:last-child,
    .unified-image svg .benefit-3 text:last-child {
        transform: translateY(3px);
    }

    /* .unified-paragraph {
        font-size: 1rem;
    } */

    .unified-content {
        padding: 0 4%;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1.4rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .unified-paragraph {
        font-size: 0.95rem;
        padding: 20px;
    }

    .workflow-container {
        padding: 20px 15px;
    }

    .workflow-diagram {
        gap: 0;
    }

    .workflow-step {
        padding: 15px 12px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin: 0 auto 12px;
    }

    .step-content {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .workflow-arrow {
        min-height: 25px;
    }

    .workflow-arrow svg {
        width: 20px;
        height: 25px;
    }

    .workflow-note {
        font-size: 0.9rem;
    }

    /* Further increase SVG text sizes on smaller mobile devices */
    .unified-image svg text {
        font-size: 150% !important;
    }
}

/* Solution Section */
.solution-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 8%;
    background: var(--bg-light);
    overflow: hidden;
}

/* Background decorative elements - mirrored from hero */
.solution-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(225deg, rgba(254, 86, 15, 0.08) 0%, rgba(255, 122, 61, 0.05) 50%, transparent 100%);
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.solution-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(254, 86, 15, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.solution-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: center;
}

.solution-title::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.solution-text {
    max-width: 1200px;
}


.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.solution-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(254, 86, 15, 0.3);
    transform: translateY(-5px);
}

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

.solution-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(254, 86, 15, 0.2) 0%, rgba(255, 122, 61, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.solution-item-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Legacy solution card text - updated to use text-body standard */
.solution-item-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive for solution section */
@media (max-width: 968px) {
    .solution-section {
        padding: 60px 5%;
    }

    .solution-title {
        font-size: 3rem;
    }

    .solution-header {
        text-align: center;
    }

    .solution-title::before {
        display: block;
        margin: 0 auto 1.5rem auto;
    }

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

    .solution-item-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .solution-title {
        font-size: 2rem;
    }

    .solution-item-card {
        padding: 30px 24px;
    }

    .solution-item-card p {
        font-size: 0.95rem;
    }
}

/* Product Showcase Section */
.product-showcase-section {
    position: relative;
    min-height: 70vh;
    padding: 120px 8%;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background effects */
.product-showcase-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.product-showcase-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.product-showcase-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.product-showcase-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-buttons .cta-button,
.product-buttons .cta-button-secondary {
    padding: 16px 20px;
    min-width: 150px;
    width: 150px;
}

/* Decorative elements for product section */
.product-decorator {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(254, 86, 15, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.decorator-1 {
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.decorator-2 {
    bottom: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments for product section */
@media (max-width: 968px) {
    .product-showcase-title {
        font-size: 2rem;
    }

    .product-showcase-description {
        font-size: 1.1rem;
    }

    .product-buttons .cta-button,
    .product-buttons .cta-button-secondary {
        text-align: center;
    }

    .product-showcase-section {
        padding: 60px 5%;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(36, 36, 36, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: var(--bg-light);
    border-color: #2a2a2a;
    color: #ffffff;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .cta-button {
    width: 100%;
}

.component-navigation .cta-button {
    padding: 12px 23px;
    font-size: 0.9rem;
    min-width: 130px;
}

.component-navigation .cta-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.component-navigation .cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #666666;
}

.contact-form .btn-primary {
    width: 100%;
    max-width: none;
    display: block;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.4);
}

/* BlockWare Page */
.blockware-page {
    background: var(--bg-light);
    padding: 120px 0 80px;
    min-height: 100vh;
}

/* Legacy blockware title - centralized with decorative line */
.blockware-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.blockware-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Legacy blockware description - updated to use text-body standard */
.blockware-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.table-section {
    margin-bottom: 4rem;
}

.table-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.blockware-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blockware-table thead {
    background: linear-gradient(135deg, rgba(254, 86, 15, 0.2) 0%, rgba(255, 122, 61, 0.1) 100%);
}

.blockware-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blockware-table td {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blockware-table tbody tr {
    transition: background-color 0.3s ease;
}

.blockware-table tbody tr:hover {
    background: rgba(254, 86, 15, 0.05);
}

.clickable-row {
    cursor: pointer;
}

.clickable-row:hover {
    background: rgba(254, 86, 15, 0.1) !important;
}

.blockware-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive for BlockWare page */
@media (max-width: 768px) {
    .blockware-page {
        padding: 100px 0 60px;
    }

    .blockware-title {
        font-size: 2.5rem;
    }

    .blockware-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .table-title {
        font-size: 1.5rem;
    }

    .blockware-table th,
    .blockware-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .blockware-table th {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blockware-title {
        font-size: 2rem;
    }

    .table-title {
        font-size: 1.25rem;
    }

    .blockware-table th,
    .blockware-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .blockware-table {
        display: block;
        overflow-x: auto;
    }
}

/* Component Page */
.component-page {
    background: var(--bg-light);
    padding: 120px 0 80px;
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

.component-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.component-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fe560f 0%, #ff7a3d 100%);
    margin-top: 1rem;
    border-radius: 2px;
}

.component-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
}

.component-details {
    max-width: 800px;
}

.component-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.component-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.component-table tbody tr:last-child {
    border-bottom: none;
}

.component-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

.detail-label {
    font-weight: 700;
    color: var(--primary-color);
    width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.component-link {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.component-link:visited {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
}

.component-link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
}

/* Responsive for component page */
@media (max-width: 768px) {
    .component-page {
        padding: 100px 0 60px;
    }

    .component-title {
        font-size: 2rem;
    }

    .component-description {
        font-size: 1rem;
    }

    .component-table td {
        padding: 1rem;
        font-size: 1rem;
    }

    .detail-label {
        width: 120px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .component-title {
        font-size: 1.5rem;
    }

    .component-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .detail-label {
        width: 100%;
        padding-bottom: 0.25rem;
    }

    .detail-value {
        padding-top: 0;
    }
}

/* 404 Error Page */
.error-page {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.error-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.error-actions .btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.error-actions .btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive for 404 page */
@media (max-width: 768px) {
    .error-code {
        font-size: 7rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .error-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }
}

/* Coming Soon Page */
.coming-soon-page {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.coming-soon-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.coming-soon-actions .btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #fe560f 0%, #ff7a3d 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 86, 15, 0.3);
}

.coming-soon-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(254, 86, 15, 0.5);
}

.coming-soon-actions .btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coming-soon-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive for coming soon page */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .coming-soon-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .coming-soon-actions .btn-primary,
    .coming-soon-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-dark);
    padding: 3rem 0 2rem;
}

footer .container {
    padding: 0 5%;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-column {
    text-align: left;
}

/* Wide screens: split navigation and contact into sub-columns */
.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-contact-secondary {
    margin-top: 0;
}

.footer-nav-secondary {
    margin-top: 0 !important;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

/* Responsive for footer */
@media (max-width: 1024px) {
    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-contact-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-contact-secondary {
        margin-top: 1.5rem;
    }

    .footer-nav-secondary {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .contact-item h5 {
        font-size: 0.8rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-section {
        padding: 0 5%;
    }

    .hero-section::before {
        width: 80%;
        right: -20%;
    }

    .section-title {
        font-size: 3rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 3%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Problem Section */
.problem-section {
    background: var(--bg-light);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 86, 15, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.problem-header {
    text-align: center;
}

.problem-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 auto 2rem;
    max-width: 800px;
    text-align: center;
}

/* Legacy problem paragraph - updated to use text-body standard */
.problem-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Responsive for problem section */
@media (max-width: 768px) {
    .problem-section {
        padding: 60px 5%;
    }

    .problem-title {
        font-size: 2rem;
    }

    .problem-paragraph {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .problem-title {
        font-size: 1.75rem;
    }

    .problem-paragraph {
        font-size: 0.95rem;
    }
}
