/* ==========================================================================
   LASERN PAGE – DYNAMIC ANIMATIONS & ENHANCED DESIGN
   ========================================================================== */

/* ---- HERO SECTION ---- */
.laser-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: 90vh;
    background-color: #1a1210;
    color: var(--light-color);
    overflow: hidden;
    position: relative;
    padding: 80px 5%;
}

/* Animated Grid Background */
.laser-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.laser-grid {
    position: absolute;
    inset: -20px;
    background-image:
        linear-gradient(rgba(255, 201, 52, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 201, 52, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Laser Beams */
.laser-beam {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    opacity: 0;
    animation: laserSweep 6s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 201, 52, 0.8));
}

.laser-beam-1 {
    top: 20%;
    left: -100%;
    width: 100%;
    animation-delay: 0s;
}

.laser-beam-2 {
    top: 50%;
    left: -100%;
    width: 80%;
    animation-delay: 2s;
    height: 2px;
}

.laser-beam-3 {
    top: 75%;
    left: -100%;
    width: 60%;
    animation-delay: 4s;
}

@keyframes laserSweep {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        left: 100%;
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Floating Glow Orbs */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 15s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 201, 52, 0.6), transparent 70%);
    top: -10%;
    left: -5%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 71, 50, 0.4), transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -50px) scale(1.15);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    100% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

/* Particle Canvas - constrained to engrave area */
.laser-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.laser-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 201, 52, 0.6);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        transform: translateY(-120px) scale(0);
        opacity: 0;
    }
}

/* Hero Content */
.laser-hero-content {
    flex: 0 1 auto;
    width: auto;
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.laser-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards 0.3s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 201, 52, 0.6);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
        box-shadow: 0 0 0 8px rgba(255, 201, 52, 0);
    }
}

/* Title Animation */
.laser-title {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 800;
    overflow: hidden;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title-line-1 .title-word:nth-child(1) {
    animation-delay: 0.4s;
}

.title-line-1 .title-word:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line-1 .title-word:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line-2 .title-word:nth-child(1) {
    animation-delay: 0.7s;
}

.title-line-2 .title-word:nth-child(2) {
    animation-delay: 0.8s;
}

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

.title-word+.title-word {
    margin-left: 0.3em;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    opacity: 0;
    color: rgba(250, 247, 246, 0.8);
    animation: fadeSlideUp 0.8s ease forwards 0.9s;
    line-height: 1.7;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards 1.1s;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 201, 52, 0.3), transparent);
}

/* Scroll CTA */
.scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards 1.3s;
    transition: all 0.3s ease;
}

.scroll-cta:hover {
    color: var(--primary-color);
    gap: 14px;
}

.scroll-arrow {
    display: flex;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Hero Image / SVG Engrave Area */
.laser-hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 5;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

.engrave-svg-wrapper {
    position: relative;
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.engrave-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Initial state: paths are invisible with stroke only */
.engrave-path {
    fill: transparent;
    stroke: rgba(255, 201, 52, 0.9);
    stroke-width: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    filter: url(#laserGlow);
    transition: stroke 0.8s ease, stroke-width 0.5s ease, filter 0.8s ease;
}

/* When path is being drawn (animating) */
.engrave-path.drawing {
    animation: engraveDraw 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* When the drawing is complete – burned-in look (NO white fill) */
.engrave-path.engraved {
    fill: transparent;
    stroke: rgba(255, 201, 52, 0.55);
    stroke-width: 1;
    filter: url(#engravedGlow);
}

@keyframes engraveDraw {
    0% {
        stroke-dashoffset: 2000;
        stroke-width: 1;
    }

    80% {
        stroke-width: 1.5;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-width: 1;
    }
}

/* Laser point (glowing dot) */
.laser-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffc934;
    border-radius: 50%;
    box-shadow:
        0 0 12px 4px rgba(255, 201, 52, 0.8),
        0 0 30px 8px rgba(255, 201, 52, 0.4),
        0 0 60px 15px rgba(255, 201, 52, 0.15);
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.2s ease;
    transform: translate(-50%, -50%);
}

.laser-point.active {
    opacity: 1;
    animation: laserPointPulse 0.4s ease-in-out infinite alternate;
}

@keyframes laserPointPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* Spark particles during engraving */
.engrave-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 15;
}

.engrave-spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px rgba(255, 201, 52, 0.8);
}

.engrave-spark.active {
    animation: sparkFly 0.6s ease-out forwards;
}

@keyframes sparkFly {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--spark-x, 20px), var(--spark-y, -20px)) scale(0);
    }
}


/* ---- FEATURES BAR (Enhanced) ---- */
.features-bar {
    background-color: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-bar .feature-item {
    text-align: center;
    max-width: 300px;
    position: relative;
    padding-bottom: 1rem;
    cursor: default;
}

.features-bar .feature-item .icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--dark-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.features-bar .feature-item:hover .icon-box {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(69, 53, 50, 0.3);
}

.feature-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item:hover .feature-hover-line {
    width: 60px;
}


/* ---- MATERIAL SECTION (Enhanced) ---- */
.material-section {
    padding: 100px 5%;
    background-color: #fff;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 4px 16px;
    border: 1px solid rgba(218, 71, 50, 0.2);
    border-radius: 50px;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro p {
    color: #888;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Cards */
.material-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.material-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 25px 50px rgba(69, 53, 50, 0.18);
}

.card-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.material-card:hover .card-glow {
    opacity: 0.3;
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.material-card:hover .card-content h3 {
    color: var(--secondary-color);
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}


/* ---- PROCESS / TIMELINE (Enhanced) ---- */
.process-section {
    background-color: var(--light-color);
    padding: 100px 5%;
    overflow: hidden;
    position: relative;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}

/* Animated Progress Track */
.timeline-progress-track {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: 0;
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px rgba(255, 201, 52, 0.5);
}

.timeline-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step[data-step="2"] {
    transition-delay: 0.2s;
}

.timeline-step[data-step="3"] {
    transition-delay: 0.4s;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--dark-color);
    color: var(--light-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid var(--light-color);
    box-shadow: 0 0 0 4px var(--primary-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.step-number {
    font-size: 1.15rem;
    font-weight: 700;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: stepPulse 2.5s ease-in-out infinite;
}

.timeline-step[data-step="2"] .step-pulse {
    animation-delay: 0.8s;
}

.timeline-step[data-step="3"] .step-pulse {
    animation-delay: 1.6s;
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.timeline-step:hover .step-circle {
    transform: scale(1.15);
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 4px var(--secondary-color), 0 10px 25px rgba(218, 71, 50, 0.3);
}

.step-content {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    min-height: 220px;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 201, 52, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-step:hover .step-content::before {
    opacity: 1;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 201, 52, 0.1);
    border-radius: 12px;
    margin: 0 auto 1rem auto;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.timeline-step:hover .step-icon {
    background: rgba(218, 71, 50, 0.1);
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}


/* ---- CTA SECTION (Enhanced) ---- */
.laser-cta {
    position: relative;
    overflow: hidden;
}

.cta-floating-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ctaParticleRise 4s ease-in-out infinite;
}

@keyframes ctaParticleRise {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        transform: translateY(-200px) translateX(30px) scale(0);
        opacity: 0;
    }
}

.cta-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-shimmer {
    background: linear-gradient(90deg,
            var(--light-color) 0%,
            var(--primary-color) 25%,
            var(--light-color) 50%,
            var(--primary-color) 75%,
            var(--light-color) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease !important;
}

.cta-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-glow:hover::before {
    left: 100%;
}

.cta-glow:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(255, 201, 52, 0.4) !important;
}

.cta-glow svg {
    transition: transform 0.3s ease;
}

.cta-glow:hover svg {
    transform: translateX(4px);
}


/* ---- SCROLL REVEAL ANIMATIONS ---- */
.material-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.material-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.material-card:nth-child(1) {
    transition-delay: 0s;
}

.material-card:nth-child(2) {
    transition-delay: 0.1s;
}

.material-card:nth-child(3) {
    transition-delay: 0.2s;
}

.material-card:nth-child(4) {
    transition-delay: 0.3s;
}

.section-intro {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-item:nth-child(3) {
    transition-delay: 0.3s;
}

.final-cta-section .cta-content {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta-section .cta-content.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .laser-hero {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
        padding: 40px 5% 30px;
        align-items: flex-start;
    }

    .laser-hero-content {
        max-width: 100%;
    }

    .laser-title {
        font-size: 2.6rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Stats ROW – always side by side */
    .hero-stats {
        flex-direction: row;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-unit {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
    }

    .laser-hero-image {
        width: 100%;
        justify-content: center;
        order: -1;
    }

    .engrave-svg-wrapper {
        width: 220px;
    }

    .scroll-cta {
        margin-top: 0.5rem;
    }

    /* Features bar */
    .features-bar {
        padding: 2rem 5%;
    }

    .feature-item {
        padding: 1.2rem;
    }

    /* Timeline */
    .timeline-container {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-progress-track {
        display: none;
    }

    .timeline-step {
        padding: 0;
    }

    /* CTA */
    .final-cta-section .cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-section {
        padding: 3rem 5%;
    }
}

@media (max-width: 600px) {
    .laser-hero {
        padding: 30px 4% 20px;
        gap: 1rem;
    }

    .laser-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

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

    /* Stats – STILL side by side, just smaller */
    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-unit {
        font-size: 0.8rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .stat-divider {
        height: 30px;
    }

    .engrave-svg-wrapper {
        width: 180px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .laser-badge {
        font-size: 0.7rem;
    }
}