/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html, body { overflow-x: hidden; }

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

/* Header Styles */
.header {
    background: #0b4f24;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.cta-button { border: none; cursor: pointer; }
.header-demo {
    background: #fbbf24;
    color: #0b4f24;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-weight: 800;
}
.header-demo:hover { filter: brightness(0.95); }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 8rem 0 3rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-dots { position: absolute; width: 220px; height: 220px; background-image: radial-gradient(rgba(183,247,207,0.6) 3px, transparent 3px); background-size: 14px 14px; opacity: 0.7; pointer-events: none; filter: saturate(1.2); z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-dots.tl { position: absolute; top: -30px; left: -30px; }
.hero-dots.br { position: absolute; bottom: -40px; right: 0; transform: rotate(180deg); clip-path: inset(0 20px 0 0); }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    color: #334155;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b4f24;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.emphasis { font-style: italic; color: #0b4f24; }

.hero-text p { font-size: 1.1rem; color: #475569; }
.subnote { color: #64748b; font-size: 0.95rem; margin-top: 0.75rem; }
.trusted-title { color: #64748b; font-weight: 600; font-size: 0.95rem; margin-top: 16px; margin-bottom: 4px; }
.trusted-logos { display: flex; gap: 36px; align-items: center; margin-top: 6px; opacity: 0.85; }
.trusted-logos img { height: 44px; filter: grayscale(1); }
.trusted-logos img.logo-samsung { height: 56px; }
.trusted-logos img.logo-lg { height: 52px; }
.trusted-logos img:hover { filter: grayscale(0.2); opacity: 1; }

.hero-buttons { display: flex; gap: 1rem; }
.btn-cta-yellow {
    background: #fbbf24;
    color: #0f6d2f;
    border: none;
    padding: 1.05rem 1.8rem;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 0 #e19c00;
    transition: transform 0.05s, filter 0.2s;
}
.btn-cta-yellow:active { transform: translateY(2px); box-shadow: 0 4px 0 #e19c00; }

.btn-primary {
    background: #0b4f24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #093f1d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0b4f24;
    border: 2px solid #0b4f24;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0b4f24;
    color: white;
}

.hero-media { position: relative; }
.media-card {
    height: 360px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    position: relative; /* ensure overlay positions against this card */
    background-image: url("Hero Video Image.png");
    background-size: cover;
    background-position: center;
}
.media-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.media-play i { width: 64px; height: 64px; background: #ffffff; color: #0b4f24; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,0.12); font-size: 1.25rem; }
.media-play i:before { margin-left: 4px; }
.lang-chips {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chip {
    background: #ffffff;
    color: #111827;
    padding: 6px 12px 6px 8px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip .flag { width: 18px; height: 18px; border-radius: 50%; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.chip .flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Document icons to video conversion */
.doc-icons { position: absolute; top: -70px; left: 50%; transform: translateX(-50%); display: flex; gap: 18px; z-index: 2; }
.doc-icon { width: 56px; height: 56px; border-radius: 12px; background: #ffffff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.doc-icon i { font-size: 28px; }
.doc-icon.ppt i { color: #d0472c; }
.doc-icon.pdf i { color: #e11d48; }
.doc-icon.doc i { color: #2563eb; }

.conversion-arrows { position: absolute; top: -14px; left: 0; width: 100%; height: 90px; pointer-events: none; z-index: 1; }
.conversion-arrows path { stroke: #157347; stroke-width: 2; stroke-dasharray: 3 6; fill: none; stroke-linecap: round; opacity: 0.9; }

.conversion-glow { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 50%; height: 120px; background: radial-gradient(ellipse at center, rgba(34,197,94,0.12), rgba(34,197,94,0) 60%); filter: blur(10px); z-index: 0; }

/* Avatar rail */
.avatar-rail { position: absolute; left: -18px; top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 2; }
.avatar-rail .avatar { width: 44px; height: 44px; border-radius: 9999px; overflow: hidden; box-shadow: 0 0 0 4px #86efac, 0 6px 18px rgba(0,0,0,0.15); background: #e2e8f0; }
.avatar-rail .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-caption { text-align: center; color: #157347; font-weight: 700; margin-top: 10px; opacity: 0.9; }

.books-stack {
    position: absolute;
    left: 0;
    top: 50px;
}

.book {
    width: 60px;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.book1 { background: #ef4444; }
.book2 { background: #3b82f6; }
.book3 { background: #f59e0b; }

.person-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.floating-icons {
    position: absolute;
    top: 20px;
    right: 20px;
}

.icon-lg, .icon-samsung {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: #22c55e;
    color: white;
    padding: 4rem 0;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-content p {
    opacity: 0.9;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.comparison-side {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.traditional {
    border-left: 4px solid #ef4444;
}

.hyrastlabs {
    border-left: 4px solid #0b4f24;
}

.comparison-side h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.traditional li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.hyrastlabs li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.learn-more-btn {
    background: #0b4f24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.learn-more-btn:hover {
    background: #093f1d;
}

/* Team Gallery */
.team-gallery {
    padding: 5rem 0;
    background: #1e293b;
    color: white;
}

.team-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

/* Training Section */
.training-section {
    padding: 5rem 0;
    background: white;
}

/* With HyrastLabs deep green section */
.with-hyrast { background: #0b4f24; padding: 4rem 0; color: #ecfdf5; }
.with-hyrast { position: relative; overflow: hidden; }
.with-dots { position: absolute; width: 260px; height: 260px; background-image: radial-gradient(rgba(183,247,207,0.55) 3px, transparent 3px); background-size: 16px 16px; opacity: 0.65; pointer-events: none; filter: saturate(1.2); }
.with-dots.left { top: 20px; left: -40px; }
.with-eyebrow { text-align: center; color: #b7f7cf; font-weight: 700; font-size: 0.9rem; opacity: 0.9; }
.with-title { text-align: center; color: #ffffff; font-size: 2.2rem; font-weight: 800; margin-top: 8px; margin-bottom: 28px; }
.training-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.training-card { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.training-card img { width: 100%; height: 340px; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.05); }
.training-tag { position: absolute; top: 12px; left: 12px; padding: 8px 12px; border-radius: 9999px; font-size: 0.78rem; font-weight: 800; color: #052e16; background: #a7f3d0; box-shadow: 0 6px 16px rgba(0,0,0,0.25); text-transform: uppercase; letter-spacing: .02em; z-index: 2; }
.tag-emerald { background: #a7f3d0; }
.tag-cyan { background: #a5f3fc; }
.tag-amber { background: #fde68a; }
.tag-rose { background: #fecdd3; }

/* Productivity Strip (light green) */
.productivity-strip { background: #b7f7cf; padding: 1.2rem 0; color: #0b4f24; }
.prod-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; }
.prod-text { display: flex; flex-direction: column; }
.prod-headline { font-size: 1.9rem; font-weight: 900; line-height: 1.05; }
.prod-sub { font-size: 1rem; font-weight: 800; opacity: 0.95; line-height: 1.1; margin-top: 2px; }
.prod-number { font-size: 3.2rem; font-weight: 900; line-height: 1; }

/* Before / After Section */
.before-after { padding: 3rem 0 4rem; background: #f5f7f9; }
.before-after .container { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.before-title { color: #334155; font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.before-list { list-style: none; display: grid; gap: 0.8rem; }
.before-list li { color: #6b7280; font-weight: 700; display: flex; align-items: flex-start; gap: 10px; }
.icon.bad { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 9999px; background: #f87171; color: #ffffff; font-weight: 900; line-height: 1; flex: 0 0 auto; }

.after-card { position: relative; background: #ffffff; border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.16); padding: 1.75rem 1.75rem 4.5rem; border: 1px solid #e5e7eb; }
.after-title { color: #0b4f24; font-size: 2.25rem; font-weight: 900; margin-bottom: 1rem; }
.after-list { list-style: none; display: grid; gap: 1.15rem; margin-bottom: 0; }
.after-list li { color: #0b4f24; font-weight: 900; font-size: 1.25rem; display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 14px; }
.after-list .face { width: 52px; height: 52px; border-radius: 9999px; overflow: hidden; box-shadow: 0 0 0 4px #86efac; }
.after-list .face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.after-cta { position: absolute; right: 1.5rem; bottom: 1.5rem; background: #fbbf24; color: #0b4f24; border: none; padding: 1rem 1.6rem; border-radius: 14px; font-weight: 900; cursor: pointer; }

@media (min-width: 900px) {
  .before-after .container { grid-template-columns: 1fr; align-items: start; }
}

.training-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Teams Knowledge (deep green grid with scribbles) */
.teams-knowledge { background: #0b4f24; color: #ecfdf5; padding: 3.5rem 0; position: relative; overflow: hidden; }
.tk-dots { position: absolute; width: 160px; height: 160px; background-image: radial-gradient(rgba(183,247,207,0.45) 2px, transparent 2px); background-size: 12px 12px; opacity: 0.6; pointer-events: none; }
.tk-dots.tl { top: -20px; left: -20px; }
.tk-dots.br { bottom: -20px; right: -20px; transform: rotate(180deg); }
.tk-title { text-align: left; color: #ffffff; font-weight: 900; font-size: 2.1rem; margin-bottom: 1.25rem; }
.tk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.tk-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.tk-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.tk-pill { position: absolute; top: 10px; left: 10px; background: #b7f7cf; color: #0b4f24; font-weight: 900; padding: 6px 12px; border-radius: 9999px; font-size: 0.85rem; }
/* removed scribble lines */

/* Quick Production (light green video callout) */
.quick-production { position: relative; background: #b7f7cf; color: #0b4f24; padding: 2.5rem 0 3rem; overflow: hidden; scroll-margin-top: 90px; }
.qp-dots { position: absolute; left: 50%; bottom: -60px; transform: translateX(-50%); width: 70%; height: 160px; background-image: radial-gradient(rgba(11,79,36,0.25) 3px, transparent 3px); background-size: 18px 18px; opacity: 0.6; pointer-events: none; filter: blur(0.2px); }
.quick-production h2 { text-align: center; font-size: 2.4rem; font-weight: 900; margin-bottom: 0.5rem; }
.quick-subtitle { text-align: center; color: #0b4f24; font-weight: 700; opacity: 0.9; margin-bottom: 1.25rem; }
            
/* Video disclaimer under grid */
.video-disclaimer { text-align: center; color: #111827; font-weight: 500; font-size: 0.9rem; margin-top: 10px; opacity: 0.9; }

/* Three-video responsive grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 6px 0; }
.video-card { background: transparent; }
.video-caption { text-align: center; font-weight: 800; color: #0b4f24; margin-top: 8px; }

/* 16:9 responsive wrapper */
.video-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.2); background: #0b4f24; }
.video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #64748b, #475569);
    height: 450px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #22c55e;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.safety-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0b4f24;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: #0b4f24;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.cta-large {
    background: white;
    color: #0b4f24;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons { justify-content: center; }
    .lang-chips { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 1rem; }
    .media-card { height: 240px; }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-section h2,
    .comparison-section h2,
    .team-gallery h2,
    .training-section h2 {
        font-size: 1.8rem;
    }

    .prod-row { grid-template-columns: 1fr auto; }
    .prod-headline { font-size: 1.2rem; }
    .prod-sub { font-size: 0.9rem; }
    .prod-number { font-size: 2.2rem; }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tk-grid { grid-template-columns: repeat(2, 1fr); }
    .tk-card img { height: 180px; }
    .tk-title { font-size: 1.6rem; text-align: center; }
    .tk-scribbles { display: none; }
    .quick-production h2 { font-size: 1.6rem; }
    .quick-subtitle { font-size: 0.95rem; }

    .training-grid { grid-template-columns: 1fr 1fr; }
    .with-title { font-size: 1.6rem; }
    .training-card img { height: 260px; }
}

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

.hero-text,
.stat-card,
.comparison-side,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide page vertical scrollbar to remove thin right-side stripe (keeps inner scrollers visible) */
html {
    -ms-overflow-style: none; /* IE/Edge legacy */
    scrollbar-width: none;    /* Firefox */
}
html::-webkit-scrollbar { /* Chrome, Safari, Edge */
    width: 0;
    height: 0;
}

/* Logos strip removed as requested */
