:root {
    --primary-green: #139B7B;
    --primary-green-glow: rgba(19, 155, 123, 0.4);
    --dark-green: #0A7A5A;
    --accent-dark: #2A3A36;
    --light-bg: #EBFFFA;
    --bg-light: #ffffff;
    --bg-gradient: linear-gradient(135deg, #e0f2ef 0%, #ffffff 100%);
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --status-active: #139B7B;
    --status-amber: #f59e0b;
    --status-red: #ef4444;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Loading */
#loading {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #fff; z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader { width: 48px; height: 48px; border: 3px solid rgba(19, 155, 123, 0.2); border-radius: 50%; border-top-color: var(--primary-green); animation: spin 1s ease-in-out infinite; margin-bottom: 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Cinematic Hero (Unchanged) */
#hero { height: 500vh; position: relative; background: #000; font-family: 'Outfit', sans-serif;}
.sticky-container { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; justify-content: center; align-items: center; }
canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; display: flex; justify-content: center; align-items: center; pointer-events: none; background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%); opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; padding: 2rem; }
.hero-overlay.active { opacity: 1; transform: translateY(0); }
.hero-overlay.active-out { opacity: 0; transform: translateY(-20px); }
.brand-text { font-family: 'Inter', sans-serif; font-size: 8vw; color: #fff; letter-spacing: 0.2em; font-weight: 300; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.text-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)); }
.headline { font-size: 5vw; color: #fff; font-weight: 500; line-height: 1.2; text-align: center; text-shadow: 0 4px 20px rgba(0,0,0,0.6); max-width: 900px; }
.align-right { text-align: right; margin-left: auto; margin-right: 10%; }
.align-left { text-align: left; margin-right: auto; margin-left: 10%; }
.accent { color: var(--primary-green); }
h1, h2, h3, h4, .brand-text, .headline, .section-title { font-family: 'Inter', sans-serif; }

/* Globals for New Sections */
.content-wrapper { position: relative; z-index: 10; background: #fff; overflow: hidden; font-family: 'Inter', sans-serif; }
.section-container { max-width: 1440px; margin: 0 auto; padding: 6rem 40px; }
.section-title { font-family: 'Anton', sans-serif; font-size: 3rem; font-weight: 400; margin-bottom: 3rem; text-align: center; color: #1A2E29; letter-spacing: 0.05em; text-transform: uppercase;}
.pattern-bg { background: linear-gradient(to bottom, var(--light-bg), #fff); }

/* Animation Classes */
.reveal { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-fade { transform: none; }
.reveal-scale { transform: scale(0.9); }

.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* Sec 1: Why You Need Oreyov */
.why-need-oreyov { background: #fff; }
.why-split { display: grid; grid-template-columns: 1.2fr 1.6fr; gap: 6rem; align-items: flex-start; }
.text-left { text-align: left; }
.section-desc { font-size: 1.9rem; color: var(--text-main); font-weight: 400; line-height: 1.4; margin-top: 0; margin-bottom: 1.5rem; }
.why-text .section-title { font-size: 4.5rem; text-align: left; line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0; }
.why-mascot { width: 100%; max-width: 800px; margin-top: 2rem; border-radius: 20px; object-fit: contain; }
.why-text .section-subtext { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
.why-card { background: transparent; border-radius: 0; padding: 0; box-shadow: none; text-align: left; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; transition: transform 0.3s ease; }
.why-card:hover { transform: translateY(-5px); }
.card-icon { width: 120px; height: 120px; object-fit: contain; margin-bottom: 1.5rem; }
.why-card h4 { font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 400; color: var(--text-main); line-height: 1.2; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.why-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }

/* Sec 2: Stats Strip */
.stats-strip { background: #376D74; color: #fff; padding: 7rem 0; }
.stats-strip .section-container { padding: 0 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 4rem; font-weight: 700; display: inline-block; font-family: 'DM Sans', sans-serif;}
.stat-plus { font-size: 2.5rem; font-weight: 700; vertical-align: super; }
.stat-label { font-size: 1.1rem; font-weight: 500; opacity: 0.9; margin-top: 0.5rem; }

/* Sec 3: What Oreyov Does */
.what-it-does { background: linear-gradient(to bottom, #F9FAFB, #fff); }
.text-center { text-align: center; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: center;}
.text-center .section-title { margin-bottom: 1rem; }
.text-center .section-desc { margin-bottom: 0; }
.does-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.04); text-align: left; transition: transform 0.3s ease; border: 1px solid rgba(19, 155, 123, 0.05); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(19, 155, 123, 0.3); box-shadow: 0 15px 40px rgba(19, 155, 123, 0.08); }
.feature-icon { width: 128px; height: 128px; object-fit: contain; margin-bottom: 1.5rem; }
.feature-card h4 { font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; color: var(--text-main); line-height: 1.2; letter-spacing: -0.02em; }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem;}

/* Sec 4: App Showcase */
.app-showcase { 
    background-color: #fff; 
    padding: 4rem 0; 
    position: relative; 
    z-index: 1; 
}
.app-showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/Oreyov_assets/background-shape.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}
.showcase-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}
.showcase-col { display: flex; flex-direction: column; }
.showcase-title-area { margin-bottom: 2rem; }
.showcase-title-area .section-title { margin-bottom: 0.5rem; font-size: 3rem; letter-spacing: -0.01em; line-height: 1.1; }
.showcase-title-area .section-desc { text-align: left; font-size: 1.5rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 0; }

.col-left .mt-large { margin-top: 8rem; }
.col-center { margin-top: 6rem; }
.col-center .mt-medium { margin-top: 8rem; }
.col-right { margin-top: 14rem; }

.screen-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.screen-text { margin-bottom: 1.5rem; width: 100%; max-width: 90%; display: flex; flex-direction: column; align-items: center; }
.screen-text h4 { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 500; color: var(--text-main); margin-bottom: 0.5rem; line-height: 1.2; letter-spacing: -0.01em; }
.screen-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.screen-img { width: 100%; max-width: 600px; border-radius: 0; border: none; box-shadow: none; object-fit: contain; }

.floating-1 { animation: float 6s ease-in-out infinite; }
.floating-2 { animation: float 8s ease-in-out infinite reverse; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }



/* Sec 5: How It Works */
.how-it-works { background: #fff; padding-bottom: 2rem; padding-top: 2rem; }
.how-it-works .section-desc { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }

.saas-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    position: relative;
}

.process-step {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    z-index: 1;
}

.step-badge {
    width: 44px;
    height: 44px;
    background: #376D74;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem 1.2rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 22px; /* space for the badge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.process-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.process-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.process-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a4ceca;
    margin-top: 22px; /* align with card center visually */
}



/* Sec 6: CTA Section */
.cta-section { background: linear-gradient(135deg, var(--primary-green), var(--dark-green)); padding: 3rem 2rem; color: #fff; border-top-left-radius: 40px; border-top-right-radius: 40px; margin-top: 1rem;}
.cta-heading { font-family: 'Anton', sans-serif; font-size: 4.5rem; font-weight: 400; margin-bottom: 1rem; color: #fff; letter-spacing: 0.05em; text-transform: uppercase;}
.cta-subheading { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; gap: 1.5rem; }
.btn { padding: 1.2rem 2.5rem; border-radius: 100px; font-weight: 600; font-size: 1.1rem; cursor: pointer; border: none; transition: all 0.3s ease; display: inline-flex; align-items: center; }
.btn-primary { background: #fff; color: var(--dark-green); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.play-icon { color: var(--primary-green); margin-right: 0.8rem; font-size: 1.2rem; }

/* Sec 10: Footer — Unified Oreyov brand gradient (matches Delivery + Eldercare) */
.footer {
    background: linear-gradient(180deg, #1A3F3B 0%, #0F2D2A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Subtle teal accent line at the very top of the footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.4), transparent);
    z-index: 2;
}
.footer .section-container { padding-top: 3.5rem; padding-bottom: 3.5rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary-green); font-family: 'Outfit', sans-serif; letter-spacing: 0.1em; }
.footer-col p { opacity: 0.7; line-height: 1.6; }
.footer-col h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-placeholder { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; font-size: 0.9rem; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: left; font-size: 0.9rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { margin: 0; opacity: 0.5; }
.footer-bottom-email { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.footer-bottom-email:hover { color: #6EE7B7; }

/* Global Responsive Design Matrices */
@media (max-width: 1200px) {
    .section-container { padding: 5rem 30px; }
    .why-split { gap: 3rem; }
    .app-showcase::before { background-size: cover; }
    
    /* Process Flow */
    .saas-process-flow { flex-wrap: wrap; justify-content: center; gap: 4rem; margin-top: 3rem; }
    .process-connector { display: none; }
    .process-step { flex: 0 0 calc(33.33% - 2.5rem); max-width: none; }
}

@media (max-width: 1024px) {
    .section-container { padding: 4rem 30px; }
    
    /* Structural Grid Collapses */
    .why-split { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .why-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .why-text .section-title { font-size: 3.5rem; text-align: center; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .does-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    /* App Showcase */
    .showcase-grid-custom { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .col-right { margin-top: 0; }
    .col-left .mt-large { margin-top: 4rem; }
}

@media (max-width: 768px) {
    .section-container { padding: 3rem 20px; }
    
    /* Typography Scaling */
    .headline { font-size: 8vw; }
    .brand-text { font-size: 12vw; }
    .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
    
    /* Why Oreyov */
    .why-text .section-title { font-size: 2.8rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-card { align-items: center; text-align: center; }
    .card-icon { width: 90px; height: 90px; margin-bottom: 1rem; }
    .why-card h4 { font-size: 1.8rem; margin-bottom: 1rem; }
    
    /* What it does / Cards */
    .does-grid { grid-template-columns: 1fr; gap: 2rem; }
    .feature-card { padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .feature-icon { width: 80px; height: 80px; margin-bottom: 1rem; }
    
    /* Stats */
    .stats-strip { padding: 5rem 0; }
    .stat-num { font-size: 3rem; }
    .stat-plus { font-size: 2rem; }
    
    /* Showcase Stagger Adjustments */
    .showcase-grid-custom { grid-template-columns: 1fr; gap: 4rem;}
    .col-left .mt-large { margin-top: 2rem; }
    .col-center { margin-top: 2rem; }
    .col-center .mt-medium { margin-top: 2rem; }
    .col-right { margin-top: 2rem; }
    .showcase-title-area .section-title { font-size: 2.5rem; text-align: center; }
    .showcase-title-area .section-desc { text-align: center; }
    .screen-img { max-width: 100%; width: 90%; margin: 0 auto; }
    
    /* Process Flow */
    .process-step { flex: 0 0 calc(50% - 2rem); }
    
    /* CTA */
    .cta-heading { font-size: 3rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 1rem; }
    .btn { justify-content: center; width: 100%; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-logo { margin-bottom: 1rem; }
    .footer-col ul { align-items: center; }
    .social-icons { justify-content: center; margin-top: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; padding-top: 1.5rem; margin-top: 2rem; gap: 12px; }
}

@media (max-width: 480px) {
    .section-container { padding: 2.5rem 15px; }
    .why-text .section-title { font-size: 2.2rem; }
    .cta-heading { font-size: 2.5rem; line-height: 1.2; }
    .stat-num { font-size: 2.5rem; }
    
    /* Break 2-column thresholds */
    .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-step { flex: 0 0 100%; max-width: 300px; margin: 0 auto; }
}

/* ============================================
   UNIFIED OREYOV HEADER — shared across all products
   ============================================ */
.oreyov-header {
  position: fixed;
  top: 16px;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 64px);
  z-index: 1000;
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(26, 46, 43, 0.06);
  border-radius: 18px;
  padding: 12px 20px;
  box-shadow: 0 8px 32px -8px rgba(19, 77, 73, 0.12), 0 2px 8px rgba(19, 77, 73, 0.04);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* On scroll — same look, slightly more see-through */
.oreyov-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: rgba(26, 46, 43, 0.06);
  box-shadow: 0 8px 32px -8px rgba(19, 77, 73, 0.12), 0 2px 8px rgba(19, 77, 73, 0.04);
}
.oreyov-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.oreyov-logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.oreyov-logo:hover { opacity: 0.85; }
.oreyov-logo-img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.oreyov-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: #1A2E2B;
  letter-spacing: -0.02em;
}
.oreyov-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.oreyov-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #5C6B68;
  text-decoration: none;
  transition: color 0.2s;
}
.oreyov-nav-link:hover { color: #2D8A7F; }

.oreyov-dropdown { position: relative; }
.oreyov-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: #5C6B68;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.oreyov-dropdown-trigger:hover { color: #2D8A7F; }
.oreyov-dropdown-trigger svg { transition: transform 0.25s ease; }
.oreyov-dropdown:hover .oreyov-dropdown-trigger svg,
.oreyov-dropdown:focus-within .oreyov-dropdown-trigger svg { transform: rotate(180deg); }
.oreyov-dropdown::before {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  width: 200px; height: 20px;
  transform: translateX(-50%);
}
.oreyov-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 340px;
  background: #fff;
  border: 1px solid rgba(26, 46, 43, 0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 60px -15px rgba(19, 77, 73, 0.25), 0 4px 12px rgba(19, 77, 73, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.oreyov-dropdown:hover .oreyov-dropdown-menu,
.oreyov-dropdown:focus-within .oreyov-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.oreyov-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.oreyov-dropdown-item:hover { background: #EEF7F3; }
.oreyov-dropdown-item--active {
  background: #EEF7F3;
  pointer-events: none;
}
.oreyov-dropdown-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.oreyov-dropdown-ico svg { width: 20px; height: 20px; }
.oreyov-dropdown-ico--delivery,
.oreyov-dropdown-ico--warranty {
  background: linear-gradient(135deg, #DCF2EA, #B8E5DC);
  color: #1E6B62;
}
.oreyov-dropdown-ico--eldercare {
  background: linear-gradient(135deg, #F4EBDA, #E8D9B5);
  color: #8B6F47;
}
.oreyov-dropdown-name {
  font-size: 14px;
  font-weight: 600;
  color: #1A2E2B;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.oreyov-dropdown-current {
  font-size: 11px;
  font-weight: 500;
  color: #4CAF87;
  letter-spacing: 0;
}
.oreyov-dropdown-sub {
  font-size: 12.5px;
  color: #9AA8A5;
  line-height: 1.4;
}

.oreyov-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.oreyov-hamburger:hover { background: rgba(45, 138, 127, 0.08); }
.oreyov-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A2E2B;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.oreyov-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oreyov-hamburger.is-open span:nth-child(2) { opacity: 0; }
.oreyov-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.oreyov-drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.oreyov-drawer.is-open { visibility: visible; opacity: 1; }
.oreyov-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 58, 55, 0.5);
  backdrop-filter: blur(8px);
}
.oreyov-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -20px 0 60px rgba(11, 58, 55, 0.25);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.oreyov-drawer.is-open .oreyov-drawer__panel { transform: translateX(0); }
.oreyov-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(26, 46, 43, 0.08);
}
.oreyov-drawer__header .oreyov-logo { height: 40px; }
.oreyov-drawer__header .oreyov-logo-img { max-width: 140px; }
.oreyov-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #EEF7F3;
  color: #1E6B62;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.oreyov-drawer__close svg { width: 18px; height: 18px; }
.oreyov-drawer__nav {
  flex: 1;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oreyov-drawer__section-label {
  font-size: 11px;
  font-weight: 700;
  color: #9AA8A5;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px 6px;
}
.oreyov-drawer__product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.oreyov-drawer__product:hover { background: #EEF7F3; }
.oreyov-drawer__product--active { background: #EEF7F3; pointer-events: none; }
.oreyov-drawer__product .oreyov-dropdown-ico { width: 38px; height: 38px; }
.oreyov-drawer__product-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #1A2E2B;
  margin-bottom: 2px;
}
.oreyov-drawer__product-sub {
  font-size: 12px;
  color: #9AA8A5;
}
.oreyov-drawer__product--active .oreyov-drawer__product-sub {
  color: #4CAF87;
  font-weight: 500;
}
.oreyov-drawer__footer {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(26, 46, 43, 0.08);
}
.oreyov-drawer__back {
  font-size: 14px;
  color: #5C6B68;
  text-decoration: none;
  font-weight: 500;
}
.oreyov-drawer__back:hover { color: #2D8A7F; }

body.oreyov-drawer-open { overflow: hidden; }

@media (max-width: 900px) {
  .oreyov-nav { display: none; }
  .oreyov-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .oreyov-header {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 14px;
    border-radius: 14px;
  }
  .oreyov-logo { height: 38px; }
  .oreyov-logo-img { max-width: 140px; }
  .oreyov-logo-text { font-size: 18px; }
}

/* ============================================
   Brand logo replacements (hero + footer)
   ============================================ */
/* Hero brand logo — large, centered, white */
.brand-logo-img {
  height: clamp(60px, 9vw, 110px);
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

/* Footer logo image — white version, fits footer column */
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .brand-logo-img { height: clamp(48px, 14vw, 80px); }
  .footer-logo-img { height: 48px; max-width: 180px; }
}

/* Mobile drawer divider + section text links */
.oreyov-drawer__divider {
    height: 1px;
    background: rgba(26, 46, 43, 0.08);
    margin: 12px 16px;
}
.oreyov-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1A2E2B;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.01em;
    transition: background 0.2s, color 0.2s;
}
.oreyov-drawer__link::after {
    content: '→';
    color: #9AA8A5;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: transform 0.2s, color 0.2s;
}
.oreyov-drawer__link:hover,
.oreyov-drawer__link:active {
    background: #EEF7F3;
    color: #1E6B62;
}
.oreyov-drawer__link:hover::after {
    color: #2D8A7F;
    transform: translateX(3px);
}

/* "Back to Oreyov" link visual emphasis in nav */
.oreyov-nav-link--back {
    color: #2D8A7F;
    font-weight: 600;
    padding-left: 12px;
    margin-left: 4px;
    border-left: 1px solid rgba(26, 46, 43, 0.12);
}
.oreyov-nav-link--back:hover { color: #1E6B62; }

/* Watch demo button in header */
.oreyov-watch-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding: 9px 18px;
    background: #134D49;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    white-space: nowrap;
}
.oreyov-watch-demo:hover {
    background: #1E6B62;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(19, 77, 73, 0.3);
}
.oreyov-watch-demo__play {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.oreyov-watch-demo__play svg { width: 11px; height: 11px; margin-left: 1px; }

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 24px;
}
.video-lightbox.is-open { display: flex; opacity: 1; }
.video-lightbox__inner {
    position: relative;
    width: min(1000px, 100%);
    transform: scale(0.94);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-lightbox.is-open .video-lightbox__inner { transform: scale(1); }
.video-lightbox__close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.25s, transform 0.25s;
}
.video-lightbox__close:hover { background: rgba(255, 255, 255, 0.28); transform: rotate(90deg); }
.video-lightbox__close svg { width: 20px; height: 20px; }
.video-lightbox__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.video-lightbox__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Section nav links — tighter spacing on smaller desktop screens */
@media (max-width: 1100px) {
    .oreyov-nav { gap: 18px; }
    .oreyov-nav-link { font-size: 13.5px; }
}

/* Footer social icons (Instagram + YouTube) */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hide the old placeholder if it still renders */
.social-icons,
.social-placeholder { display: none !important; }

/* Footer grid responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
}
@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
