
:root {
  --primary: #0f172a;
  --secondary: #1e3a8a;
  --accent: #482ff7;      
  --neon: #ffffff;
  --whatsapp: #25d366;
  --white: #ffffff;
  --bg-light: #f8fafc; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Myriad Pro", Myriad, "Liberation Sans", "Nimbus Sans L", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: #1e293b;
  overflow-x: hidden;
  top: 0px !important;
  position: static !important;
}

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

.notranslate {
  translate: no !important;
}


nav {
  background: var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  height: clamp(40px, 8vw, 60px);
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--neon);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--neon);
}

.nav-right-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* HAMBURGER TOGGLE BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   3. BUTTONS & DROPDOWNS
   ========================================================================== */
.wa-btn-custom {
  background-color: var(--whatsapp) !important;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
  padding: 10px 18px !important;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.wa-btn-custom:hover {
  background-color: #20ba5a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.premium-lang-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  min-width: 130px;
  gap: 8px;
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
}

.current-flag, .menu-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.dropdown-menu-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  list-style: none;
  min-width: 140px;
  display: none;
  z-index: 1001;
}

.premium-lang-dropdown.is-open .dropdown-menu-list {
  display: block;
}

.premium-lang-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-mark {
  display: none;
}

.dropdown-item.is-selected .check-mark {
  display: inline;
  color: #3b82f6;
}


.opera-hero {
  background: radial-gradient(circle at 15% 35%, #fffcf8 0%, #ffffff 65%);
  color: #0f172a;
  padding: clamp(60px, 10vw, 110px) 0 clamp(60px, 8vw, 80px) 0; 
  position: relative;
}

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

.hero-title-direct {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.highlight {
  color: #FF8C00;
}

.btn-opera-hero {
  background: var(--accent);
  color: white;
  padding: 15px 35px;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(72, 47, 247, 0.25);
  transition: all 0.3s ease;
}

.opera-hero-visual {
  width: 100%;
  position: relative;
}

.opera-image-mask {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.opera-image-mask img {
  width: 100%;
  height: auto;
  display: block;
}


.hero-bubble {
  position: absolute;
  background: white;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
  white-space: nowrap;
}

.bubble-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

.bubble-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
}

.icon-purple { background: #f3e8ff; color: #a855f7; }
.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-orange { background: #ffedd5; color: #f97316; }
.icon-dark-blue { background: #e0e7ff; color: #4f46e5; }
.icon-green { background: #dcfce7; color: #16a34a; }

.bubble-1 { top: 15%; left: -15%; animation: float-slow 4s ease-in-out infinite alternate; }
.bubble-2 { top: 45%; right: -12%; animation: float-medium 3.5s ease-in-out infinite alternate; }
.bubble-3 { bottom: 35%; left: -18%; animation: float-slow 4.5s ease-in-out infinite alternate; }
.bubble-4 { bottom: 8%; right: -5%; animation: float-medium 3.8s ease-in-out infinite alternate; }
.bubble-5 { top: 90%; left: -12%; animation: float-medium 4s ease-in-out infinite alternate; }

@keyframes float-slow { 0% { transform: translateY(0px); } 100% { transform: translateY(-8px); } }
@keyframes float-medium { 0% { transform: translateY(0px); } 100% { transform: translateY(-10px); } }


.about-section {
  background: #f1f5f9; 
  padding: 80px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content .sub-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: #FF8C00;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feat-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.feat-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 3px;
}

.feat-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.feat-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}


.crm-benefits-section {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.section-title-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-center h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: #0f172a;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.benefit-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 27px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.benefit-icon-wrapper {
  background: rgba(72, 47, 247, 0.08);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-icon-wrapper.warning-icon {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.benefit-icon-wrapper.mobile-icon {
  background: rgba(16, 185, 129, 0.08);
  color: #2052af;
}

.benefit-content h3 {
  font-size: 1.17rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.benefit-content p {
  color: #475569;
  font-size: 0.99rem;
  line-height: 1.5;
}

/* WHY CHOOSE US */
.why-choose-section {
  padding: 80px 0;
  background: 
#f1f5f9;
}

.blue-brand-text {
  color: #1E40AF !important; 
  font-weight: 800 !important;
}

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

.feature-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: #64748b;
  font-size: 0.97rem;
  line-height: 1.6;
}

.why-choose-action {
  margin-top: 40px; 
  text-align: center;
}


.faq-video-section {
  background:#ffffff;
  padding: 80px 0; 
}

.faq-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 750;
  color: #0f172a;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.video-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-box {
  width: 100%;
  max-width: 500px; 
  height: 450px;
  background: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=1350&auto=format&fit=crop') center/cover;
  border-radius: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
}

.video-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  border-radius: 16px;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: white;
  border: none;
  border-left: 4px solid #e2e8f0; 
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item h4 {
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-item h4 i {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  overflow: hidden;
}

.faq-answer p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 14px;
}

.faq-item.active { 
  border-left-color: var(--accent); 
  box-shadow: 0 10px 25px rgba(72, 47, 247, 0.06);
  background: #ffffff;
}

.faq-item.active h4 { color: var(--accent); }
.faq-item.active h4 i { transform: rotate(45deg); color: var(--accent); }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }


.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  background: rgba(11, 17, 32, 0.05);
  backdrop-filter: blur(4px);
  z-index: 2000;
  padding: 15px 20px;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;         
  justify-content: center; 
}

.cookie-banner.show { bottom: 0; }

.cookie-container {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-emoji {
  font-size: 2.2rem;
  line-height: 1;
  animation: cookie-wiggle 4s ease-in-out infinite;
  display: inline-block;
  color: var(--accent);
}

@keyframes cookie-wiggle {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

.cookie-text {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn-cookie-agree {
  background: #3b82f6; 
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}


.custom-footer {
  background-color: #0b132b; 
  padding: 20px 40px;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; 
  gap: 20px;
}


.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 0.7;
}


.footer-rights {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #a0aec0;
}

.footer-rights a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-rights a:hover {
  color: #ffffff;
}

.footer-rights .separator {
  color: #4a5568;
  margin: 0 2px;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .footer-rights {
    justify-content: center;
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) {
  #google_translate_element {
    display: inline-block !important;
    margin-right: 15px !important;
    vertical-align: middle !important;
  }
}


@media (max-width: 991px) {
  .menu-toggle {
    display: flex; 
  }

  .nav-menu {
    position: fixed;
    top: 75px; 
    left: -100%; 
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transition: left 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .nav-menu.mobile-active {
    left: 0;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .opera-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .btn-opera-hero {
    justify-content: center;
  }
  
  .hero-bubble {
    display: none !important;
  }

  .about-grid, .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .video-box {
    height: 280px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 12px;                  
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hamburger-menu {
    order: -1;          
    cursor: pointer;
    flex-shrink: 0;     
  }

  .logo {
    order: 0;          
    display: flex;
    align-items: center;
  }
  
  .left-side-icon {
    margin-left: auto;  
  }

  
  .why-choose-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    padding: 12px;
  }

  .why-choose-item {
    width: 100%;
    box-sizing: border-box;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999999;          
    padding: 18px 15px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-text {
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
    margin: 0;
  }

  .cookie-agree-btn {
    display: block !important; 
    width: 100%;              
    padding: 12px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }

  /* Japanese Typography Optimization */
  :lang(ja), .japanese-text, .ja-lang {
    font-size: 13px !important;      
    font-family: 'Helvetica Neue', Noto Sans, Haettenschweiler, 'Arial Narrow Bold', sans-serif, 'Hiragino Kaku Gothic ProN', 'Segoe UI', sans-serif; 
    letter-spacing: 0.03em;          
    line-height: 1.5 !important;      
    font-weight: 400;                
  }


  .mobile-menu-items #google_translate_element,
  .mobile-menu #google_translate_element,
  .nav-links #google_translate_element {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 30px auto 10px auto !important; 
    text-align: center !important;
    width: 85% !important;
  }

  .goog-te-gadget-simple {
    background-color: #1e293b !important; 
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
  }
}


@media (max-width: 575px) {
  .nav-right-wrapper {
    gap: 8px;
  }
  .wa-btn-custom {
    padding: 8px 12px !important;
  }
  .wa-btn-custom span {
    display: none; 
  }
  .premium-lang-dropdown {
    min-width: auto;
  }
  .dropdown-trigger {
    min-width: 90px;
    padding: 6px 8px;
  }
  #currentLangText {
    display: none; 
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}

body > .skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner,
.goog-te-menu-value,
iframe[class*="goog-te-banner-frame"],
iframe[id*="goog-te-banner-frame"],
#goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

#google_translate_element, 
.goog-logo-link, 
.goog-te-gadget {
  display: none !important;
  visibility: hidden !important;
}

.goog-tooltip, 
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 769px) {
  
  #google_translate_element {
    display: inline-block !important;
    margin-right: 15px !important;
    vertical-align: middle !important;
  }
  

  .nav-menu .premium-lang-dropdown,
  .mobile-menu-items #google_translate_element,
  .mobile-menu #google_translate_element,
  .nav-links #google_translate_element {
    display: none !important;
  }

  
  .nav-right-wrapper .premium-lang-dropdown {
    display: inline-block !important;
  }
}


@media screen and (max-width: 768px) {
  

  .nav-right-wrapper .premium-lang-dropdown,
  nav #google_translate_element {
    display: none !important;
  }


  .nav-menu .premium-lang-dropdown,
  .mobile-menu-items #google_translate_element,
  .mobile-menu #google_translate_element,
  .nav-links #google_translate_element {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 25px auto 10px auto !important;
    text-align: center !important;
    width: fit-content !important;
  }

  .goog-te-gadget-simple {
    background-color: #1e293b !important; 
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
  }
}

@media screen and (max-width: 768px) {
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 12px;                  
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hamburger-menu {
    order: -1;          
    cursor: pointer;
    flex-shrink: 0;     
  }

  .logo {
    order: 0;          
    display: flex;
    align-items: center;
  }
  
  .left-side-icon {
    margin-left: auto;  
  }

  
  .why-choose-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    padding: 12px;
  }

  .why-choose-item {
    width: 100%;
    box-sizing: border-box;
  }

  
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999999;          
    padding: 18px 15px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-text {
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
    margin: 0;
  }

  .cookie-agree-btn {
    display: block !important; 
    width: 100%;              
    padding: 12px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }

  
  .nav-menu .premium-lang-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 25px auto 10px auto !important;
    text-align: center !important;
    width: fit-content !important;
  }

@media (max-width: 575px) {
  .nav-right-wrapper {
    gap: 10px; 
  }

  
  .wa-btn-custom {
    padding: 8px 16px !important; 
    font-size: 0.85rem !important;  
    border-radius: 30px !important; 
    width: auto !important;         
    height: auto !important;
    display: inline-flex !important;
  }

  
  .wa-btn-custom span {
    display: inline !important; 
  }

  
  .premium-lang-dropdown {
    min-width: auto;
  }

  .dropdown-trigger {
    min-width: 110px; 
    padding: 6px 12px;
  }

  #currentLangText {
    display: inline !important;
    font-size: 0.85rem;
  }

  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  

  .nav-right-wrapper .premium-lang-dropdown,
  nav .premium-lang-dropdown:not(.nav-menu .premium-lang-dropdown),
  #google_translate_element:not(.nav-menu #google_translate_element) {
    display: none !important;
  }

  .nav-menu, .mobile-menu-items {
    height: auto !important;
    max-height: 75vh !important;      
    overflow-y: visible !important;    
    padding-bottom: 25px !important;   
    margin-bottom: 0 !important;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 12px;                  
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hamburger-menu {
    order: -1;          
    cursor: pointer;
    flex-shrink: 0;     
  }

  .logo {
    order: 0;          
    display: flex;
    align-items: center;
  }
  
  .left-side-icon {
    margin-left: auto;  
  }


  .why-choose-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    padding: 12px;
  }

  .why-choose-item {
    width: 100%;
    box-sizing: border-box;
  }

  
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999999;          
    padding: 18px 15px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  
  .nav-menu .premium-lang-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 20px auto 0 auto !important; 
    text-align: center !important;
    width: fit-content !important;
  }
}

@media (max-width: 575px) {
  .nav-right-wrapper {
    gap:3px;
  }

  
  .wa-btn-custom {
    padding: 8px 16px !important;  
    font-size: 0.85rem !important;  
    border-radius: 30px !important; 
    width: auto !important;         
    height: auto !important;
    display: inline-flex !important;
  }

  .wa-btn-custom span {
    display: inline !important; 
  }


  .premium-lang-dropdown {
    min-width: auto;
  }

  .dropdown-trigger {
    min-width: 110px; 
    padding: 6px 12px;
  }

  
  .nav-right-wrapper .premium-lang-dropdown,
  #currentLangText {
    display: none !important; 
  }
  
  .nav-menu #currentLangText {
    display: inline !important; 
  }

  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}



body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}


.custom-footer {
  background-color: #0b132b; 
  padding: 60px 40px; 
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  
  
  margin-top: auto; 
  
  
  min-height: 120px; 
}
}

.why-choose-section {
  padding: 60px 0;
  background-color:#f1f5f9; 
  .why-choose-section {
  background-color: #f4f7fa  
}
}

.section-title-center {
  text-align: center;
  margin-bottom: 40px;
}

.blue-brand-text {
  color: #0284c7; 
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  grid-column: span 2;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; 
  box-sizing: border-box;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 32px;
  color: #4f46e5; 
}

.feature-card h3 {
  font-size: 18px;
  color: #0f172a;
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.4;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}


@media (min-width: 992px) {

  .feature-card:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  
  
  .feature-card:nth-child(5) {
    grid-column-start: 4;
    grid-column-end: 6;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
  .feature-card {
    grid-column: span 1;
  }
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr; 
  }
  .feature-card {
    grid-column: span 1;
  }
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.why-choose-action {
  text-align: center;
  margin-top: 30px;
}

.opera-hero-grid {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.opera-hero-text {
  flex: 0 0 45%; 
  max-width: 520px;
}

.opera-hero-visual {
  flex: 0 0 52%; 
  position: relative;
}


.hero-title-direct {
  font-size: 48px; 
  line-height: 1.2;
  margin-bottom: 25px;
}


.hero-text-semibold {
  font-weight: 600 !important; 
  color: #0f172a;
}


.hero-text-normal {
  font-weight: 400 !important;
  color: #1e293b;
}


.highlight-orange {
  font-weight: 800 !important;
  color: #f59e0b; 
}


.highlight-dark {
  font-weight: 800 !important;
  color: #0f172a; 
}

.play-btn {
  text-decoration: none !important; 
  outline: none !important;          
  border-bottom: none !important;   
}


.play-btn:hover, .play-btn:focus {
  text-decoration: none !important;
  outline: none !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  gap: 24px;
  grid-auto-rows: 175px !important;
  
}


.feature-card {
  background: #ffffff !important;
  border-radius: 16px !important; 
  padding: 20px !important; 
  grid-column: span 2; 
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100% !important; 
  box-sizing: border-box;
  
  
  border: 1px solid #eef2f6 !important; 
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important; 
  
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}


.feature-card:hover {
  transform: translateY(-6px) !important; 
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.08) !important; 
  border-color: #cbd5e1 !important; 
}

/* Icon Container Styling */
.feature-icon {
  margin-bottom: 12px !important;
  display: inline-flex;
}

.feature-icon i {
  font-size: 26px !important;
  color: #4f46e5 !important; 
  transition: transform 0.3s ease !important;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
}


.feature-card h3 {
  font-size: 16px !important;
  color: #0f172a !important; 
  margin: 0 0 6px 0 !important;
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 13px !important;
  color: #64748b !important;
  line-height: 1.45;
  margin: 0;
}


@media (min-width: 992px) {
  .feature-card:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .feature-card:nth-child(5) {
    grid-column-start: 4;
    grid-column-end: 6;
  }
}

:root { --primary: #0f172a; --accent: #482ff7; --white: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
body { background: var(--white); color: #1e293b; overflow-x: hidden; }


.why-choose-section { padding: 60px 0; background: #ffffff !important; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 20px;
  grid-column: span 2;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}


@media (min-width: 992px) {
  .feature-card:nth-child(4) { grid-column-start: 2; grid-column-end: 4; }
  .feature-card:nth-child(5) { grid-column-start: 4; grid-column-end: 6; }
}


@media (max-width: 991px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .feature-card { grid-column: span 1; }
}


@media (max-width: 767px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { grid-column: span 1; }
}

.custom-footer { background: #0b132b; padding: 30px; color: #fff; text-align: center; }
.footer-container { display: flex; flex-direction: column; gap: 15px; align-items: center; }


#google_translate_element, .skiptranslate, .goog-te-banner-frame { display: none !important; }

@media (max-width: 991px) {
  .opera-hero-grid {
    display: flex !important;
    flex-direction: column !important; 
    text-align: center !important;
    gap: 30px !important;
  }

  .opera-hero-text {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .opera-hero-visual {
    flex: 0 0 100% !important;
    order: 2; 
  }

  .hero-title-direct {
    font-size: 32px !important; 
    line-height: 1.3 !important;
  }
}

.opera-image-mask img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.why-choose-section {
  padding: 60px 0 !important;
  background-color: #f1f5f9 !important; 

}
.custom-footer {
  background-color: #0b132b !important; 
  padding: 20px 40px !important;
  color: #ffffff !important;
  font-family: sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
}

.footer-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  flex-wrap: wrap !important; 
  gap: 20px !important;
}

.footer-socials { display: flex !important; gap: 20px !important; }
.footer-socials a { color: #ffffff !important; font-size: 18px !important; text-decoration: none !important; }

.footer-rights { display: flex !important; align-items: center !important; gap: 10px !important; color: #a0aec0 !important; }
.footer-rights a { color: #a0aec0 !important; text-decoration: none !important; }

@media (max-width: 768px) {
  .footer-container { flex-direction: column !important; text-align: center !important; }
  .footer-rights { justify-content: center !important; flex-direction: column !important; }
}

.footer-rights {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  color: #a0aec0 !important;
}

.footer-rights a {
  color: #a0aec0 !important;
  text-decoration: none !important;
}

/* Responsive Footer - Exact to SS */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
  }
  
  .footer-rights {
    justify-content: center !important;
    line-height: 1.6 !important;
  }
}

.footer-socials {
  display: flex !important;
  gap: 12px !important;
}

.footer-socials a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;      
  height: 36px !important;
  background: rgba(255, 255, 255, 0.1) !important; 
  border-radius: 50% !important; 
  color: #ffffff !important;
  font-size: 18px !important;
  text-decoration: none ;
  transition: all 0.3s ease ;
}


.footer-socials a:hover {
  background: #ffffff !important;
  color: #0b132b !important;
}

.footer-socials {
  display: flex !important;
  gap: 12px !important;
}

.footer-socials a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;      
  height: 40px !important;
  background-color: #ffffff !important; 
  border-radius: 50% !important;       
  color: #0b132b !important;            
  font-size: 20px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}


.footer-socials a:hover {
  background-color: #e2e8f0 !important;
  transform: translateY(-2px);
}

.services-section-new {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-box-new {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-box-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #0284c7;
}
.service-icon-new {
    width: 55px;
    height: 55px;
    background-color: rgba(2, 132, 199, 0.1);
    color: #0284c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-box-new:hover .service-icon-new {
    background-color: #0284c7;
    color: #ffffff;
}


.service-content-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-content-new p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .services-section-new {
        padding: 50px 0;
    }
    .services-grid-new {
        gap: 20px;
    }
}
#why-choose-fixed .container {
      max-width: 1200px !important;
      width: 100% !important;
      margin: 0 auto !important;
      padding: 0 15px !important;
      box-sizing: border-box !important;
  }
  #why-choose-fixed .features-grid-fixed {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 25px !important;
      justify-content: center !important;
      width: 100% !important;
      margin-top: 40px !important;
      box-sizing: border-box !important;
  }
  #why-choose-fixed .feature-card-fixed {
      flex: 1 1 calc(33.33% - 20px) !important;
      max-width: calc(33.33% - 20px) !important;
      min-width: 290px !important;
      background: #ffffff !important;
      padding: 30px 25px !important;
      border-radius: 12px !important;
      border: 1px solid #e2e8f0 !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
      box-sizing: border-box !important;
      transition: transform 0.3s ease !important;
      
    
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: flex-start !important;
      text-align: left !important;
  }
  #why-choose-fixed .feature-card-fixed:hover {
      transform: translateY(-5px) ;
  }
  #why-choose-fixed .feature-icon-fixed {
      width: 50px ;
      height: 50px ;
      
      color: 
#482ff7;
      border-radius: 50% ;
      display: flex ;
      align-items: center ;
      justify-content: center ;
      font-size: 32px ;
      margin-right: 20px ; 
      flex-shrink: 0 ;
  }
  
  
  #why-choose-fixed .feature-content-fixed {
      display: contents ;
  }
  
  #why-choose-fixed h3 {
      font-size: 20px;
      font-weight: 700 ;
      color: #1e293b ;
      line-height: 1.3 ;
      margin: 0 ;
      flex: 1 ; 
  }
  
  #why-choose-fixed p {
      font-size: 18px ;
      color: #64748b ;
      line-height: 1.5 ;
      margin: 12px 0 0 0 ;
      flex-basis: 100% ; 
      width: 100% ;
  }
  
  @media (max-width: 1024px) {
      #why-choose-fixed .feature-card-fixed {
          flex: 1 1 calc(50% - 20px);
          max-width: calc(50% - 20px) ;
      }
  }
  @media (max-width: 768px) {
      #why-choose-fixed .feature-card-fixed {
          flex: 1 1 100% ;
          max-width: 100% ;
      }
  }

  


.goog-te-banner-frame, 
.goog-te-banner, 
.goog-te-balloon-frame,
#goog-gt-tt, 
.goog-te-balloon-wrapper {
    display: none !important;
}


body {
    top: 0px ;
    position: static ;
}

.goog-text-highlight {
    background: transparent ;
    box-shadow: none ;
    box-sizing: border-box ;
}


.goog-te-gadget-icon {
    display: none ;
}

.hero-monthly-text {
  font-size: 2.1rem !important; 
  color: #222020 !important;    
  font-weight: 400 !important;   
  font-style: italic !important;
  margin-left: 2px !important;  
  display: inline-block;
  vertical-align: middle;
}
.hero-text-italic {
  font-style: italic ;   
  display: inline ;      
  font-size: inherit;              
  font-weight: normal ;  
}
.crm-benefits-section {
  position: relative;

  background-image: url('Assets/shipping-ship.jpg'); 
  background-size: cover;          
  background-position: center;     
  background-repeat: no-repeat;
  background-attachment: fixed; 
  padding: 80px 0;                 
  z-index: 1;
}


.crm-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); 
  z-index: -1;
}


.crm-benefits-section .section-title-center h2 {
  color: #0f172a !important; 
  font-weight: 700;
  margin-bottom: 50px;
  font-size: 2.2rem;
  text-align: center;
}


.crm-benefits-section .benefit-box {
  background: rgba(255, 255, 255, 0.90); 
  border: 1px solid rgba(255, 255, 255, 0.7); 
  border-radius: 12px;                  
  padding: 26px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}


.crm-benefits-section .benefit-box:hover {
  transform: translateY(-5px); 
  background: #ffffff; 
  border-color: #0284c7; 
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.15);
}


.crm-benefits-section .benefit-content h3 {
  color: #1e293b !important; 
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.crm-benefits-section .benefit-content p {
  color: #475569 !important; 
  font-size: 0.95rem;
  line-height: 1.5;
}
crm-benefits-section {
  position: relative;

  background-image: url('../shipping-ship.jpg'); 
  background-size: cover;          
  background-position: center;     
  background-repeat: no-repeat;
  background-attachment: fixed;    
  padding: 80px 0;                 
  z-index: 1;
}


.crm-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); 
  z-index: -1;
}


.crm-benefits-section .section-title-center h2 {
  color: #0f172a !important; 
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5); 

}
.crm-benefits-section .section-title-center h2 {
  color: #ffffff !important; 
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); 
}

.btn-opera-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background: linear-gradient(135deg, #6a11cb, #2575fc); 
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4); 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-opera-hero i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}


.btn-opera-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 20%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-opera-hero:hover {
  
    background: linear-gradient(135deg, #7f00ff, #ff758c); 
    
    box-shadow: 0 6px 25px rgba(255, 117, 140, 0.6); 
    transform: translateY(-4px) scale(1.02);
}
.btn-opera-hero:hover::after {
    left: 125%;
    transition: all 0.75s ease-in-out;
}


.btn-opera-hero:hover i {
    transform: translateX(6px);
}


.btn-opera-hero:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 3px 10px rgba(106, 17, 203, 0.4);
}

.btn-opera-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background: linear-gradient(135deg, #6a11cb, #2575fc); 
    color: #ffffff !important;
    padding: 14px 34px;       
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;       
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4); 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}


.btn-opera-hero i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}


.btn-opera-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 20%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}


.btn-opera-hero:hover {
    
    background: linear-gradient(135deg, #7f00ff, #ff758c); 
    
    box-shadow: 0 6px 25px rgba(255, 117, 140, 0.6); 
    transform: translateY(-4px) scale(1.02); 
}


.btn-opera-hero:hover::after {
    left: 125%;
    transition: all 0.75s ease-in-out;
}


.btn-opera-hero:hover i {
    transform: translateX(6px);
}


.btn-opera-hero:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 3px 10px rgba(106, 17, 203, 0.4);
}
#acceptCookies {
    pointer-events: auto !important;
    cursor: pointer;
}

@media (max-width: 768px) {
    
    .navbar {
        width: 100%;
        padding: 10px 15px; 
        box-sizing: border-box;
    }

  
    .navbar-menu {
        display: flex;
        flex-direction: column; 
        width: 100%;
        background-color: #fff; 
        padding: 0;
    }


    .navbar-item {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #eee; 
        box-sizing: border-box;
    }
}


.faq-video-section {
    padding: 60px 0; 
    background: transparent !important;
    width: 100% !important;
}

.faq-video-section .container {
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box;
}


.faq-video-section .split-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap !important;
    gap: 40px !important; 
    align-items: flex-start !important; 
    width: 100% !important;
}


.faq-video-section .video-side {
    flex: 0 0 44% !important; 
    width: 44% !important;
    min-width: 320px !important;
}


.faq-video-section .faq-side {
    flex: 0 0 52% !important;
    width: 52% !important;
    min-width: 320px !important;
}


.faq-video-section .video-box {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important; 
    overflow: hidden !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
    background: transparent !important;
}

.faq-video-section .video-box iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    border: none !important;
}

.faq-video-section .faq-section-title {
    text-align: center;
    margin-bottom: 40px; 
}

.faq-video-section .faq-section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

@media (max-width: 991px) {
    .faq-video-section {
        padding: 40px 0;
    }
    
    .faq-video-section .split-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .faq-video-section .video-side,
    .faq-video-section .faq-side {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    .faq-video-section .video-box {
        max-width: 550px;
        margin: 0 auto;
    }
}
/* ==========================================================================
   ONLY MOBILE NAVBAR FIX 
   ========================================================================== */

@media (max-width: 576px) {
  
    .navbar .container, 
    .header .container,
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 15px !important; 
        box-sizing: border-box !important;
    }

   
    .navbar-brand, .logo-container, .logo-text {
        font-size: 14px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important; 
    }

   
    .wa-btn-custom .hide-on-mobile,
    .btn-demo .hide-on-mobile {
        display: none !important;
    }

  
    .wa-btn-custom,
    .btn-demo.wa-btn-custom {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 11px !important;      
        padding: 6px 10px !important;     
        font-weight: 600 !important;
        white-space: nowrap !important;
        border-radius: 20px !important;
        margin-right: 15px !important;  
        flex-shrink: 0 !important;    
    }

    .wa-btn-custom i {
        margin-right: 4px !important;
        font-size: 12px !important;
    }

    
    .menu-toggle {
        display: flex ;
        flex-direction: column;
        justify-content: space-between ;
        align-items: center ;
        visibility: visible;
        opacity: 1;
        flex-shrink: 0 ;    
        margin: 0 ;
        padding: 5px ;
        background: transparent ;
        border: none ;
        width: 24px ;    
        height: 18px ;
    }

    
    .menu-toggle span {
        display: block ;
        width: 20px ;          
        height: 2px ;
        background-color: #ffffff; 
    }
}


@media (max-width: 350px) {
    .navbar-brand {
        font-size: 12px ;
    }
    .wa-btn-custom {
        font-size: 10px ;
        padding: 5px 8px ;
        margin-right: 10px ;
    }
}