/* Global Styles */

/* ==========================================
   MODERN BLACK THEME - SIMPLE & CLEAN
   ========================================== */

/* Hero Section - Black Theme */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-omnibus-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    /* Let clicks pass through to content if needed, though content is z-index 1 */
}

.omnibus-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0.6;
    transition: all 0.5s ease;
    filter: grayscale(40%);
}

.omnibus-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positioning the scattered images */
.item-1 {
    top: 15%;
    left: 15%;
    width: 300px;
    height: 220px;
    transform: rotate(-5deg);
}

.item-2 {
    top: 10%;
    right: 18%;
    width: 270px;
    height: 340px;
    transform: rotate(5deg);
}

.item-3 {
    bottom: 20%;
    left: 18%;
    width: 240px;
    height: 300px;
    transform: rotate(3deg);
}

.item-4 {
    bottom: 15%;
    right: 15%;
    width: 340px;
    height: 240px;
    transform: rotate(-3deg);
}

.item-5 {
    top: 45%;
    left: 5%;
    width: 220px;
    height: 220px;
    transform: rotate(-8deg);
    opacity: 0.4;
}

.item-6 {
    top: 50%;
    right: 8%;
    width: 240px;
    height: 180px;
    transform: rotate(6deg);
    opacity: 0.4;
}

/* Hover effect for fun */
.omnibus-item:hover {
    z-index: 2;
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* Ensure hero content is readable */
.hero-content {
    position: relative;
    z-index: 10;
    /* Higher than images */
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    /* Add a subtle backdrop if needed, or rely on image opacity */
}



.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #fff;
    border-bottom: 3px solid #fff;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    outline: 1px solid #fff;
    opacity: 1;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #fff;
    opacity: 1;
}

/* Section Styles */
.section-dark {
    padding: 8rem 2rem;
    background: #000;
}

.section-light {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.section-header h2 .highlight {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-text strong {
    color: #fff;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid #fff;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.highlight-box p {
    margin: 0;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%);
}

/* Feature Rows */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.feature-row:hover .feature-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.feature-text .num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.feature-text .tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: #111;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.5s ease;
}

.card:hover .card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-body .card-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.card-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #111;
    overflow: hidden;
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.product-item:hover .product-image img {
    filter: grayscale(0%);
}

.product-info {
    padding: 2rem;
}

.product-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.product-info .product-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 250px;
    }
}

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

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

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Hide scattered images on mobile for cleaner look */
    .hero-omnibus-wrapper {
        opacity: 0.3;
        /* Keep it subtle or hide completely */
    }

    .omnibus-item {
        display: none;
        /* Hide individual items */
    }

    /* Maybe keep one or two? Or just use a simple background if user prefers.
       For now, let's hide them to avoid clutter as per standard practice for this layout type.
       Actually, let's keep a subtle background effect or just one image if possible,
       but "display: none" is safest for text readability on small screens without a dedicated mobile bg. */
    .hero-omnibus-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('assets/main/doctor.jpeg') center/cover;
        opacity: 0.6;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-image img {
        height: 300px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .feature-image img {
        height: 250px;
    }

    .feature-text .num {
        font-size: 2rem;
    }

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

    .section-header h2,
    .split-text h2 {
        font-size: 1.6rem;
    }

    .section-dark,
    .section-light {
        padding: 5rem 1.5rem;
    }
}

/* ==========================================
   END MODERN BLACK THEME
   ========================================== */

/* Ortho Diary Styles */
.ortho-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .ortho-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

:root {
    --bg-color: #000;
    --text-color: #fff;
    --text-secondary: #ccc;
    --accent-color: #fff;
    --font-main: 'Noto Sans KR', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: keep-all;
    /* Prevent Korean words from splitting */
    overflow-wrap: break-word;
}

/* Responsive Line Breaks */
.br-pc {
    display: block;
}

.br-mo {
    display: none;
}

@media (max-width: 768px) {
    .br-pc {
        display: none;
        /* Hide PC breaks on mobile */
    }

    .br-mo {
        display: block;
        /* Show mobile breaks if needed */
    }
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop') no-repeat center center/cover;
    /* Using a placeholder image from Unsplash that looks like a clinic/clean aesthetic */
}

.hero-overlay {
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-text .en-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-text .kr-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-links {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.hero-link {
    border: 1px solid var(--text-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.hero-link:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #0a0a0a;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-message {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.highlight {
    font-weight: 700;
}

.sub-message {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.contact-prompt {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Bottom Navigation */
.bottom-nav {
    padding: 2rem 0;
    background-color: #0a0a0a;
    border-top: 1px solid #222;
}

.bottom-nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.bottom-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.info-block h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-block p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-block .address-list p {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.info-block .address-list strong {
    color: var(--text-light);
    font-weight: 500;
    margin-right: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text .kr-text {
        font-size: 1.5rem;
    }

    .hero-links {
        flex-direction: column;
        gap: 1rem;
        bottom: 10%;
        align-items: center;
    }

    .bottom-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-info {
        text-align: center;
    }
}

/* Doctor Page Styles */
.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.doctor-profile {
    padding: 4rem 2rem;
    background-color: #050505;
}

.profile-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.profile-image {
    flex: 1;
    min-width: 300px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    border-radius: 4px;
}

.profile-text {
    flex: 1.5;
    padding-top: 2rem;
}

.profile-text h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-quote {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.philosophy-desc {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.career-history h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.career-history ul li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

.career-history ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #111;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
}

.form-group input:focus {
    outline: none;
    border-color: #666;
}

.submit-btn {
    padding: 1rem;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #ccc;
}

@media (max-width: 900px) {
    .profile-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .profile-image {
        width: 100%;
    }

    .image-placeholder {
        height: 400px;
    }
}

/* Space Page Styles */
.space-intro {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #050505;
}

.intro-content h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.intro-main {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.intro-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.space-gallery {
    display: flex;
    flex-direction: column;
}

.gallery-item {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.02);
}

/* Equipment Page Styles */
.equipment-intro {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background-color: #050505;
}

.equipment-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.equipment-intro p {
    color: var(--text-secondary);
}

.equipment-list {
    padding: 4rem 2rem;
    background-color: #050505;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.equipment-item.reverse {
    flex-direction: row-reverse;
}

.equipment-image {
    flex: 1;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.equipment-info {
    flex: 1;
}

.equipment-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.equipment-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {

    .equipment-item,
    .equipment-item.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .equipment-image {
        width: 100%;
        height: 250px;
    }
}

/* Treatment Page Styles */
.treatment-intro {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background-color: #050505;
}

.treatment-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.treatment-intro p {
    color: var(--text-secondary);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #050505;
}

.treatment-card {
    background-color: #111;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-image {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.treatment-content {
    padding: 2rem;
    text-align: center;
}

.treatment-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.treatment-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Page Styles */
.process-visual {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=2032&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.visual-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-content {
    padding: 6rem 2rem;
    background-color: #050505;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.content-wrapper p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Recommendation Page Styles */
.recommendation-intro {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background-color: #050505;
}

.recommendation-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.recommendation-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background-color: #050505;
    max-width: 1200px;
    margin: 0 auto;
}

.social-item {
    position: relative;
    padding-bottom: 100%;
    /* Square aspect ratio */
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.social-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.social-item:hover .social-image {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-overlay p {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.social-overlay span {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.4;
}

/* Top Navigation & Hamburger Menu */
.top-nav {
    display: flex;
    gap: 2rem;
}

.top-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-nav a:hover,
.top-nav a.active {
    color: var(--text-color);
}

/* Mobile Scroll Interaction for Vision Page */
@media (max-width: 768px) {
    .social-item.active .social-overlay {
        opacity: 1;
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.3s ease;
    }

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

    .top-nav a {
        font-size: 1.5rem;
        color: var(--text-color);
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

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

/* Workflow Page Styles */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

/* Workflow Tabs */
.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 1px solid #333;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--text-color);
    color: var(--text-color);
}

.tab-btn.active {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    font-weight: 600;
}

/* Workflow Tabs Mobile */
@media (max-width: 768px) {
    .workflow-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .tab-btn {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .workflow-tabs {
        gap: 0.4rem;
    }

    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Workflow Sections */
.workflow-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.workflow-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smart Checkup Styles */
.workflow-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
    border-left: 4px solid var(--text-color);
    padding-left: 1rem;
}

/* Smart Checkup List Style */
.smart-workflow-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .smart-workflow-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smart-step {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}

.smart-step:hover {
    transform: translateY(-5px);
    border-color: #fff;
}

.step-num {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.smart-step h4 {
    color: var(--text-color);
}

.smart-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Product Access Section */
.product-access {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2rem 4rem;
    background-color: #050505;
    flex-wrap: wrap;
}

.access-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.access-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.access-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.access-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.access-btn:hover {
    background-color: #ccc;
    transform: scale(1.05);
}

.access-btn.secondary {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.access-btn.secondary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.step-item {
    background: #111;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Contact Page Styles */
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

/* CEO Page New Styles */
.ceo-greeting {
    padding: 6rem 2rem;
    background-color: #050505;
    text-align: center;
    border-bottom: 1px solid #111;
}

.greeting-content {
    max-width: 800px;
    margin: 0 auto;
}

.greeting-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.greeting-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    word-break: keep-all;
}

.greeting-text strong {
    color: var(--text-color);
    font-weight: 700;
}

.signature {
    margin-top: 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.leadership-section {
    padding: 6rem 2rem;
    background-color: #000;
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.leader-card {
    background-color: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}

.leader-image {
    width: 100%;
    height: 400px;
}

.leader-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.leader-info {
    padding: 2.5rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.leader-info h3 .role {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.leader-career {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
}

.leader-career li {
    margin-bottom: 0.8rem;
    color: #888;
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.leader-career li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
}

@media (max-width: 900px) {
    .leadership-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leader-image {
        height: 350px;
    }
}

/* Founder's Story Section */
.founder-story {
    padding: 6rem 2rem;
    background-color: #050505;
    text-align: center;
    border-bottom: 1px solid #111;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.story-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    word-break: keep-all;
}

/* Product Tabs Styles */
.product-tabs-section {
    background-color: #050505;
    padding: 2rem 2rem 4rem;
}

.product-tabs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.product-tab-card {
    background: #0a0a0a;
    border: 3px solid #222;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-tab-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-tab-card:hover {
    transform: translateY(-5px);
    border-color: #444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-tab-card.active {
    border-color: #fff;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.product-tab-card.active::after {
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.tab-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tab-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.product-tab-card.active .tab-card-image::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.tab-card-content {
    padding: 2rem;
    text-align: left;
}

.tab-card-content h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-tab-card.active .tab-card-content h3 {
    color: #fff;
}

.tab-card-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-tab-card.active .tab-card-subtitle {
    color: #aaa;
}

.tab-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.product-tab-card.active .tab-card-desc {
    color: #ccc;
}

.product-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.product-tab-content.active {
    display: block;
}

/* Tab Hero Section */
.tab-hero {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #0a0a0a;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.tab-hero h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tab-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.tab-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Feature Showcase (Enhanced Equipment Item) */
.feature-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 12rem;
}

.feature-showcase.reverse {
    flex-direction: row-reverse;
}

.feature-showcase .equipment-image {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
}

.feature-showcase.vertical-feature .equipment-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: none;
    transform: translateY(-150px);
    /* Shift up vertical images */
}

.feature-showcase.vertical-feature .equipment-image img {
    border-radius: 20px;
    /* More rounded for phone screens */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-showcase .equipment-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.feature-showcase .equipment-info {
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid #444;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.feature-benefits li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.feature-benefits li:last-child {
    margin-bottom: 0;
}

.feature-benefits li::before {
    content: none;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.cta-primary:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    opacity: 1;
}

.cta-primary.large,
.cta-secondary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-radius: 12px;
    border: 1px solid #222;
}

.section-cta h4 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Tab Bottom CTA */
.tab-bottom-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 12px;
    margin-top: 4rem;
    border: 2px solid #222;
}

.tab-bottom-cta h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tab-bottom-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sticky Mobile CTA */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 999;
    border-top: 1px solid #333;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.sticky-cta-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
    opacity: 1;
}

/* Service Preview Cards */
.service-preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 2px solid #222;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #444;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-type {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: 2px solid #333;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    border-color: var(--text-color);
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateX(5px);
    opacity: 1;
}

/* Hero Section - Main Page Enhanced */
.hero-text .main-copy {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-text .main-copy .highlight {
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .sub-copy {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-link.primary {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    font-weight: 600;
}

.hero-link.primary:hover {
    background-color: transparent;
    color: #fff;
}

.hero-link.secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

.hero-link.secondary:hover {
    border-color: #fff;
    color: #fff;
}

/* Crisis & Solution Section */
.crisis-solution {
    padding: 6rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-headline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.section-headline .highlight {
    color: #fff;
    position: relative;
}

.section-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-body {
    text-align: left;
}

.section-body p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.section-body strong {
    color: var(--text-color);
    font-weight: 600;
}

.section-body .keyword {
    color: #fff;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.solution-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

/* Digital Workflow Section */
.digital-workflow {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: none;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.feature-tagline {
    font-size: 1rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Product & Offer Section */
.product-offer {
    padding: 6rem 2rem;
    background-color: #000;
    text-align: center;
}

.price-highlight {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.product-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border: 2px solid #222;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

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

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.product-type {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.product-tagline {
    font-size: 1.1rem;
    color: #aaa;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-link {
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: 2px solid #333;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.product-link:hover {
    border-color: var(--text-color);
    background-color: var(--text-color);
    color: var(--bg-color);
    opacity: 1;
}

/* Mobile Responsive - New Sections */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text .main-copy {
        font-size: 1.6rem;
    }

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

    .section-headline {
        font-size: 1.4rem;
    }

    .section-body p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .product-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .price-highlight {
        font-size: 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-tabs-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .tab-card-image {
        height: 180px;
    }

    .tab-card-content {
        padding: 1.5rem;
    }

    .tab-card-content h3 {
        font-size: 1.4rem;
    }

    .tab-hero h3 {
        font-size: 1.8rem;
    }

    .tab-hero p {
        font-size: 1rem;
    }

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

    .feature-showcase,
    .feature-showcase.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .tab-hero {
        margin-bottom: 3rem;
    }



    .feature-showcase .equipment-image {
        width: 100%;
        height: auto;
        transform: none;
        margin-bottom: 2rem;
    }

    .feature-showcase.vertical-feature .equipment-image {
        transform: none;
        margin: 0 auto 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-cta h4 {
        font-size: 1.3rem;
    }

    .tab-bottom-cta h3 {
        font-size: 1.5rem;
    }

    .tab-bottom-cta p {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 1rem;
    }

    .sticky-cta-mobile {
        display: block;
    }

    /* Add padding to content to prevent overlap with sticky CTA */
    .container {
        padding-bottom: 80px;
    }

    .service-preview-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Visibility Utilities */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}