/* ==========================================
   CELLMEC HOME PAGE STYLES
   Professional & Sophisticated Design
   ========================================== */

/* ==========================================
   HERO SECTION
   ========================================== */

.cellmec-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1534 50%, var(--navy) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
            repeating-linear-gradient(0deg, rgba(200, 162, 91, 0.03) 0px, rgba(200, 162, 91, 0.03) 1px, transparent 1px, transparent 80px),
            repeating-linear-gradient(90deg, rgba(200, 162, 91, 0.03) 0px, rgba(200, 162, 91, 0.03) 1px, transparent 1px, transparent 80px);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 162, 91, 0.15) 0%, transparent 50%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Text Content */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(200, 162, 91, 0.15);
    border: 2px solid rgba(200, 162, 91, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(200, 162, 91, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 162, 91, 0.5);
    color: var(--white);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(200, 162, 91, 0.5), transparent);
}

/* Hero Visual */
.hero-visual-content {
    position: relative;
    height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: rgba(200, 162, 91, 0.1);
    border: 3px solid rgba(200, 162, 91, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.visual-icon {
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(200, 162, 91, 0.4);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 162, 91, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

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

.hero-floating-card i {
    font-size: 28px;
    color: var(--gold);
}

.hero-floating-card.card-1 {
    top: 50px;
    left: 30px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 80px;
    left: 20px;
    animation-delay: 2s;
}

.hero-floating-card.card-3 {
    top: 40%;
    right: 20px;
    animation-delay: 4s;
}

.hero-floating-card:hover {
    background: rgba(200, 162, 91, 0.2);
    transform: scale(1.05) translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(200, 162, 91, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 30px; }
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */

.partners-section {
    padding: 100px 0;
    background: var(--warm-white);
    overflow: hidden;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 162, 91, 0.1);
    border: 2px solid rgba(200, 162, 91, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Carousel */
.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scrollPartners 40s linear infinite;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-card {
    flex-shrink: 0;
    width: 220px;
    height: 130px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--cool-gray);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-formal);
    border-color: var(--gold);
}

.partner-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition-smooth);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */

.about-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 38, 92, 0.1), transparent);
}

.certification-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-formal);
}

.certification-badge i {
    font-size: 36px;
    color: var(--gold);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.badge-subtitle {
    font-size: 12px;
    color: var(--charcoal);
}

.about-preview-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--warm-white);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    border-color: var(--gold);
    background: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 14px;
    color: var(--charcoal);
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    width: fit-content;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.about-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 162, 91, 0.4);
}

/* ==========================================
   SOLUTIONS SHOWCASE SECTION
   ========================================== */

.solutions-showcase-section {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
}

.section-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image:
            repeating-linear-gradient(0deg, rgba(200, 162, 91, 0.02) 0px, rgba(200, 162, 91, 0.02) 1px, transparent 1px, transparent 60px),
            repeating-linear-gradient(90deg, rgba(200, 162, 91, 0.02) 0px, rgba(200, 162, 91, 0.02) 1px, transparent 1px, transparent 60px);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.solution-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    border: 2px solid var(--cool-gray);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.solution-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
}

.solution-features i {
    color: var(--gold);
    font-size: 16px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.solution-link:hover {
    color: var(--gold);
    gap: 14px;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    padding-top: 5px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

/* Why Choose Visual */
.why-choose-visual {
    position: relative;
}

.visual-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box-item {
    background: var(--warm-white);
    border: 2px solid var(--cool-gray);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-formal);
    border-color: var(--gold);
}

.stat-box-item .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.stat-data {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-box-item .stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-plus,
.stat-percentage {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.stat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   SERVICES OVERVIEW SECTION
   ========================================== */

.services-overview-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
}

.services-overview-section .section-background {
    position: absolute;
    inset: 0;
}

.bg-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 162, 91, 0.1) 0%, transparent 70%);
}

.services-overview-section .section-label {
    background: rgba(200, 162, 91, 0.15);
    border-color: rgba(200, 162, 91, 0.3);
}

.services-overview-section .section-title {
    color: var(--white);
}

.services-overview-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.services-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.services-timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 162, 91, 0.3), transparent);
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
}

.timeline-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 0 0 6px var(--navy);
    z-index: 2;
}

.timeline-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(200, 162, 91, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    transition: var(--transition-smooth);
    z-index: 1;
}

.timeline-item:hover .timeline-icon {
    background: rgba(200, 162, 91, 0.15);
    border-color: var(--gold);
    transform: scale(1.1);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(200, 162, 91, 0.3);
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 162, 91, 0.4);
    color: var(--white);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1534 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 162, 91, 0.15) 0%, transparent 70%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
            repeating-linear-gradient(0deg, rgba(200, 162, 91, 0.03) 0px, rgba(200, 162, 91, 0.03) 1px, transparent 1px, transparent 80px),
            repeating-linear-gradient(90deg, rgba(200, 162, 91, 0.03) 0px, rgba(200, 162, 91, 0.03) 1px, transparent 1px, transparent 80px);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 35px;
    box-shadow: 0 15px 50px rgba(200, 162, 91, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(200, 162, 91, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(200, 162, 91, 0.5);
    }
}

.cta-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(200, 162, 91, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 162, 91, 0.5);
    color: var(--white);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
    color: var(--white);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1400px) {
    .hero-container,
    .section-container {
        padding: 0 2rem;
    }

    .hero-grid,
    .about-preview-grid,
    .why-choose-grid {
        gap: 60px;
    }

    .hero-title {
        font-size: 58px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visual-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-timeline {
        flex-wrap: wrap;
        gap: 50px;
    }

    .timeline-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .services-timeline::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .about-preview-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual-content {
        height: 400px;
    }

    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 40px;
    }

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

    .visual-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        flex: 0 0 calc(50% - 15px);
    }

    .cta-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .cellmec-hero-section {
        padding: 120px 0 80px;
    }

    .hero-container,
    .section-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
    }

    .partners-section,
    .about-preview-section,
    .solutions-showcase-section,
    .why-choose-section,
    .services-overview-section,
    .cta-section {
        padding: 70px 0;
    }

    .partner-card {
        width: 180px;
        height: 110px;
    }

    .visual-stats-box {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex: 0 0 100%;
    }

    .cta-title {
        font-size: 34px;
    }

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-visual-content {
        height: 350px;
    }

    .hero-main-visual {
        width: 250px;
        height: 250px;
    }

    .visual-icon {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }

    .hero-floating-card {
        padding: 14px 18px;
        font-size: 11px;
    }

    .hero-floating-card i {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .partner-card {
        width: 160px;
        height: 100px;
        padding: 20px;
    }

    .certification-badge {
        bottom: 20px;
        right: 20px;
        padding: 16px 20px;
    }

    .certification-badge i {
        font-size: 28px;
    }

    .solution-card {
        padding: 30px 25px;
    }

    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 38px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .scroll-indicator,
    .hero-floating-card {
        display: none !important;
    }
}