/* Copied 1:1 from root styles.css to match index.html on WordPress */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Minimal Scroll Animation System - Only for Headers */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes background-color { from { background-color: #ffffff; } to { background-color: var(--bg); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

:root { --scroll: 0; --delay: 0; --bg: #ff0000; --primary-color: #0d9488; --secondary-color: #f0f9ff; --accent-color: #06b6d4; --text-dark: #1f2937; --text-light: #6b7280; --white: #ffffff; --shadow: 0 10px 30px rgba(0, 0, 0, 0.1); --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); --d: 700ms; --e: cubic-bezier(0.19, 1, 0.22, 1); --font-sans: 'Open Sans', sans-serif; --font-serif: 'Ubuntu', sans-serif; }

.animate { animation-play-state: paused; animation-delay: calc((var(--scroll) - var(--delay)) * -1s); animation-iteration-count: 1; animation-fill-mode: both; animation-duration: 0.6s; animation-timing-function: ease-out; }
.animate-fade { animation-name: fadeIn; }
.animate-delay-1 { --delay: 0.1; }
.animate-delay-2 { --delay: 0.2; }
.animate-delay-3 { --delay: 0.3; }
.animate-delay-4 { --delay: 0.4; }
.animate-delay-5 { --delay: 0.5; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; background: #ffffff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 60px; background: linear-gradient(135deg, #ff6600 0%, #FFD0B0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; overflow: hidden; font-family: 'Ubuntu', sans-serif; }
.section-title::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); transition: left 0.8s ease-in-out; }
.section-title[data-aos].aos-animate::before { left: 100%; }
.section-title[data-aos] { transform: translateY(50px) scale(0.9); opacity: 0; filter: blur(5px); transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.section-title[data-aos].aos-animate { transform: translateY(0) scale(1); opacity: 1; filter: blur(0px); }
.section-description { font-size: 1.125rem; text-align: center; color: #64748b; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero { background: #ffffff; padding: 120px 0 80px; position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-title, .hero-subtitle { transition: opacity 0.1s ease-out, transform 0.1s ease-out; }
.hero-subtitle { font-size: 1.25rem; color: #64748b; margin-bottom: 32px; line-height: 1.6; font-family: 'Open Sans', sans-serif; }
.scroll-down-icon { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #ff6600; cursor: pointer; z-index: 10; animation: bounce 2s infinite; transition: opacity 0.1s ease-out, transform 0.1s ease-out; }
.scroll-down-icon svg { animation: arrowBounce 2s infinite; }
.scroll-down-icon span { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0);} 40% { transform: translateX(-50%) translateY(-10px);} 60% { transform: translateX(-50%) translateY(-5px);} }
@keyframes arrowBounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0);} 40% { transform: translateY(-3px);} 60% { transform: translateY(-1px);} }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6600" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff8c42" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); opacity: 0.5; z-index: 1; }
.hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: transparent; opacity: 0.1; pointer-events: none; }

/* Continue full styles: copied cards, sections, testimonials, CTA, AOS, responsive */
/* Hero container and image styling */
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; width: 100%; min-height: 80vh; }
.hero-content { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; position: relative; z-index: 3; max-width: 800px; }
.hero-content.hero-loaded { opacity: 1; transform: translateY(0); }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, #ff6600 0%, #FFD0B0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; margin-bottom: 20px; white-space: nowrap; font-family: 'Ubuntu', sans-serif; }
.hero-content .subtitle { font-size: 1.25rem; color: #64748b; margin-bottom: 32px; line-height: 1.6; }
.hero-image-center { margin-top: 40px; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.hero-image-center .image-container { position: relative; width: 480px; height: 360px; margin: 0 auto; animation: float 6s ease-in-out infinite; }
.hero-image-center .image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2); }
.hero-image-center .image-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); z-index: 10; }
.hero-image svg { max-width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(255, 102, 0, 0.2)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }

/* Benefits Section and cards */
.benefits { padding: 100px 0; background: #ffffff; position: relative; overflow: hidden; }
.benefits::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: #ffffff; animation: shimmer 3s ease-in-out infinite; opacity: 0.1; }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }
.benefits-grid { display: grid; grid-gap: 1rem; padding: 1rem; max-width: 1024px; margin: 60px auto 0; font-family: var(--font-sans); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.card { position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: 1rem; width: 100%; text-align: center; color: whitesmoke; background-color: #000; box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 2px 2px rgba(0,0,0,0.1), 0 4px 4px rgba(0,0,0,0.1), 0 8px 8px rgba(0,0,0,0.1), 0 16px 16px rgba(0,0,0,0.1); border-radius: 20px; height: 350px; }
.card-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; will-change: transform; backface-visibility: hidden; }
.card-video::-webkit-media-controls { display: none !important; }
.card-video::-webkit-media-controls-enclosure { display: none !important; }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.3s ease; z-index: 2; pointer-events: none; }
.card:nth-child(1):hover .card-overlay { opacity: 1; background: linear-gradient(135deg, rgba(34, 197, 94, 0.75) 0%, rgba(22, 163, 74, 0.75) 100%); }
.card:nth-child(2):hover .card-overlay { opacity: 1; background: linear-gradient(135deg, rgba(245, 158, 11, 0.75) 0%, rgba(249, 115, 22, 0.75) 100%); }
.card:nth-child(3):hover .card-overlay { opacity: 1; background: linear-gradient(135deg, rgba(139, 92, 246, 0.75) 0%, rgba(168, 85, 247, 0.75) 100%); }
.card:after { content: ''; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 200%; pointer-events: none; background-image: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.009) 11.7%, hsla(0, 0%, 0%, 0.034) 22.1%, hsla(0, 0%, 0%, 0.072) 31.2%, hsla(0, 0%, 0%, 0.123) 39.4%, hsla(0, 0%, 0%, 0.182) 46.6%, hsla(0, 0%, 0%, 0.249) 53.1%, hsla(0, 0%, 0%, 0.320) 58.9%, hsla(0, 0%, 0%, 0.394) 64.3%, hsla(0, 0%, 0%, 0.468) 69.3%, hsla(0, 0%, 0%, 0.540) 74.1%, hsla(0, 0%, 0%, 0.607) 78.8%, hsla(0, 0%, 0%, 0.668) 83.6%, hsla(0, 0%, 0%, 0.721) 88.7%, hsla(0, 0%, 0%, 0.762) 94.1%, hsla(0, 0%, 0%, 0.790) 100% ); transform: translateY(-50%); transition: transform calc(var(--d) * 2) var(--e); z-index: 2; }
.content { position: relative; display: flex; flex-direction: column; align-items: center; width: 100%; padding: 1rem; transition: transform var(--d) var(--e); z-index: 3; }
.content > * + * { margin-top: 1rem; }
.title { font-size: 1.3rem; font-weight: bold; line-height: 1.2; font-family: 'Ubuntu', sans-serif; color: #ffffff !important; }
.copy { font-family: 'Open Sans', sans-serif; font-size: 1.125rem; font-style: italic; line-height: 1.35; }
.btn { cursor: pointer; margin-top: 1.5rem; padding: 0.75rem 1.5rem; font-size: 0.65rem; font-weight: bold; letter-spacing: 0.025rem; text-transform: uppercase; color: white; background-color: black; border: none; border-radius: 8px; transition: background-color 0.3s ease; }
.btn:hover { background-color: rgba(0, 0, 0, 0.8); }
.btn:focus { outline: 1px dashed yellow; outline-offset: 3px; }
@media (hover: hover) and (min-width: 600px) { .card:after { transform: translateY(0); } .content { transform: translateY(calc(100% - 4.5rem)); } .content > *:not(.title) { opacity: 0; transform: translateY(1rem); transition: transform var(--d) var(--e), opacity var(--d) var(--e); } .card:hover, .card:focus-within { align-items: center; } .card:hover:before, .card:focus-within:before { transform: translateY(-4%); } .card:hover:after, .card:focus-within:after { transform: translateY(-50%); } .card:hover .content, .card:focus-within .content { transform: translateY(0); } .card:hover .content > *:not(.title), .card:focus-within .content > *:not(.title) { opacity: 1; transform: translateY(0); transition-delay: calc(var(--d) / 8); } .card:focus-within:before, .card:focus-within:after, .card:focus-within .content, .card:focus-within .content > *:not(.title) { transition-duration: 0s; } }
.laser-description { text-align: center; margin-top: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.laser-description p { font-size: 1.125rem; color: #475569; line-height: 1.7; }
.laser-edge { padding: 100px 0; background: #ffffff; text-align: center; }
.why-choose-inline { padding: 60px 0; background: #ffffff; text-align: center; }
.why-choose-inline .section-title { margin-bottom: 30px; }
.why-choose-inline .section-description { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: #64748b; }
.why-choose-inline { margin: 60px 0; text-align: center; }
.why-choose-inline .section-title { margin-bottom: 30px; }
.why-choose-inline .section-description { max-width: 800px; margin: 0 auto; }
.science-section { padding: 100px 0; background: linear-gradient(135deg, #F8F8F8 0%, #f2f2f2 100%); color: #333; position: relative; overflow: hidden; }
.science-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 70%, rgba(255, 102, 0, 0.1) 0%, transparent 50%); z-index: 1; }
.science-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.science-content p { font-size: 1.125rem; color: #64748b; margin-bottom: 40px; line-height: 1.7; }
.video-container { max-width: 800px; margin: 0 auto; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.video-placeholder { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.video-background-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 1; opacity: 0.7; }
.video-background-content .video-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.video-background-content h3 { font-family: 'Ubuntu', sans-serif; font-size: 1.5rem; font-weight: 600; color: #64748b; margin-bottom: 10px; }
.video-background-content p { font-size: 1rem; color: #94a3b8; max-width: 300px; line-height: 1.5; }
.play-button { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; position: relative; z-index: 2; box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2); }
.play-button:hover { background: white; transform: scale(1.1); }
.play-button svg circle { fill: rgba(255,255,255,0.9); }
.play-button svg path { fill: #ff6600; }
.testimonials { padding: 100px 0; background: #ffffff; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.05), transparent); transform: translateX(-100%); animation: shimmer 4s infinite; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.testimonial-card { background: #ffffff; padding: 40px; border-radius: 20px; box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.1); border: 1px solid #fed7aa; position: relative; overflow: hidden; transition: all 0.4s ease; }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, #ff6600, #ff8c42, #ff6600); opacity: 0.1; transition: left 0.8s ease; }
.testimonial-card:hover::before { left: 100%; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(255, 102, 0, 0.2); }
.testimonial-card p { font-size: 1.125rem; color: #475569; margin-bottom: 24px; line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #ff6600 0%, #FFD0B0 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 1.25rem; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-author span { font-weight: 600; color: #1e293b; }
.rating .star { color: #ff6600; }
.cta { padding: 100px 0; background: #ffffff; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); z-index: 1; }
.cta-content { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.cta h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; background: linear-gradient(135deg, #ff6600 0%, #FFD0B0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Ubuntu', sans-serif; }
.cta .subtitle { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.9; color: #64748b; }
.btn-primary { background: #ffffff; color: transparent; background-image: linear-gradient(135deg, #ff6600 0%, #FFD0B0 50%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; padding: 15px 30px; border: 2px solid #ff6600; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4); background: #ffffff; background-image: linear-gradient(135deg, #FFD0B0 0%, #ff6600 50%, #FFD0B0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; border-color: #FFD0B0; }
.cta-button { display: inline-block; background: linear-gradient(45deg, #ff6600, #FFD0B0, #ff6600, #FFD0B0); background-size: 400% 400%; color: #ffffff; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; position: relative; z-index: 2; box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3); border: none; animation: gradientShift 3s ease-in-out infinite; overflow: hidden; }
.cta-button:hover { background: linear-gradient(45deg, #FFD0B0, #ff6600, #FFD0B0, #ff6600); background-size: 400% 400%; color: #ffffff; transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 25px -5px rgba(255, 102, 0, 0.4); animation: gradientShift 2s ease-in-out infinite; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
[data-aos="fade-up"] { opacity: 0; transform: translateY(50px) scale(0.95); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0) scale(1); }
[data-aos="slide-right"] { opacity: 0; transform: translateX(-80px) rotate(-5deg); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="slide-right"].aos-animate { opacity: 1; transform: translateX(0) rotate(0deg); }
[data-aos="slide-left"] { opacity: 0; transform: translateX(80px) rotate(5deg); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="slide-left"].aos-animate { opacity: 1; transform: translateX(0) rotate(0deg); }
[data-aos="zoom-in"] { opacity: 0; transform: scale(0.6) rotate(10deg); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1) rotate(0deg); }
@media (max-width: 1024px) { .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-content h1 { font-size: 3rem; white-space: normal; } .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; } }
@media (max-width: 768px) { .container { padding: 0 16px; } .hero { min-height: 80vh; padding: 60px 0; } .hero-content h1 { font-size: 2.5rem; white-space: normal; } .section-title { font-size: 2rem; } .benefits, .science-section, .testimonials, .cta { padding: 80px 0; } .benefits-grid { grid-template-columns: 1fr; gap: 24px; } .benefit-card { padding: 30px 20px; } .testimonial-card { padding: 30px 24px; } }
@media (max-width: 480px) { .hero-content h1 { font-size: 2rem; white-space: normal; } .section-title { font-size: 1.75rem; } .cta h2 { font-size: 1.75rem; } }

/* WordPress parent theme overrides: ensure headings aren't cropped and text matches index.html */
/* Scope to this content by body class for both Post and Page ID 11214 */
body.postid-11214 .section-title,
body.page-id-11214 .section-title {
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: normal;
  overflow: visible; /* prevent gradient-clipped text from cropping descenders */
  display: inline-block; /* stabilize background-clip rendering */
  padding-bottom: 2px; /* small buffer to avoid clip */
}

/* Normalize heading line-height to match index.html across theme typography */
body.postid-11214 h1,
body.postid-11214 h2,
body.postid-11214 h3,
body.page-id-11214 h1,
body.page-id-11214 h2,
body.page-id-11214 h3 {
  line-height: 1.2;
}

/* Ensure hero title wraps to avoid cropping on narrower containers */
body.postid-11214 .hero-content h1,
body.page-id-11214 .hero-content h1 {
  white-space: normal;
}

/* Center-align specific section headings that render outside centered containers */
body.postid-11214 .science-section .section-title,
body.page-id-11214 .science-section .section-title,
body.postid-11214 .testimonials .section-title,
body.page-id-11214 .testimonials .section-title {
  display: block;            /* allow margin auto centering */
  margin: 0 auto 24px;       /* center the heading block */
  text-align: center;        /* ensure text inside is centered */
}

/* Match paragraph line-height to index.html for specific sections */
body.postid-11214 .laser-description p,
body.page-id-11214 .laser-description p {
  line-height: 1.7;
}

/* Section description paragraphs consistent with index.html */
body.postid-11214 .section-description,
body.page-id-11214 .section-description {
  line-height: 1.6;
}
