/* ========================================
   IMPORTS & FONTS
   ======================================== */
   @import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700;800&display=swap');

   /* ========================================
      GLOBAL RESET & BASE STYLES
      ======================================== */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   html {
       scroll-behavior: smooth;
   }
   
   body {
       font-family: 'Baloo Bhaijaan 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
       background: #ffffff;
       color: #192a56;
       overflow-x: hidden;
       transition: opacity 0.2s ease;
   }
   
   [data-translate] {
       transition: opacity 0.15s ease;
   }
   
   body.switching-language {
       pointer-events: none;
   }
   
   body.switching-language [data-translate] {
       opacity: 0.7;
   }
   
   /* ========================================
      ANIMATIONS & KEYFRAMES
      ======================================== */
   @keyframes float {
       0%, 100% { transform: translate(0, 0) rotate(0deg); }
       33% { transform: translate(30px, -30px) rotate(120deg); }
       66% { transform: translate(-20px, 20px) rotate(240deg); }
   }
   
   @keyframes slideDown {
       from {
           opacity: 0;
           transform: translateY(-30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(40px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* ========================================
      HERO SECTION
      ======================================== */
   .hero {
       background: linear-gradient(135deg, #192a56 0%, #273c75 100%);
       min-height: 100vh;
       position: relative;
       overflow: hidden;
   }
   
   .hero::before {
       content: '';
       position: absolute;
       top: -50%;
       right: -20%;
       width: 800px;
       height: 800px;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       animation: float 20s ease-in-out infinite;
   }
   
   .hero::after {
       content: '';
       position: absolute;
       bottom: -30%;
       left: -10%;
       width: 600px;
       height: 600px;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
       border-radius: 50%;
       animation: float 15s ease-in-out infinite reverse;
   }
   
   .hero-container {
       max-width: 1400px;
       margin: 0 auto;
       padding: 0 40px;
       position: relative;
       z-index: 1;
   }
   
   .hero-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 80px;
       align-items: center;
       padding: 60px 0 100px;
   }
   
   .hero-text {
       animation: fadeInUp 1s ease-out 0.2s backwards;
   }
   
   .hero-title {
       font-size: 56px;
       font-weight: 800;
       color: white;
       line-height: 1.2;
       margin-bottom: 24px;
   }
   
   .hero-subtitle {
       font-size: 20px;
       font-weight: 500;
       color: rgba(255, 255, 255, 0.9);
       line-height: 1.6;
       margin-bottom: 32px;
   }
   
   .hero-features {
       display: flex;
       flex-wrap: wrap;
       gap: 12px;
       margin-bottom: 40px;
   }
   
   .feature-tag {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: rgba(255, 255, 255, 0.15);
       backdrop-filter: blur(10px);
       padding: 10px 18px;
       border-radius: 50px;
       color: white;
       font-weight: 600;
       font-size: 14px;
       border: 1px solid rgba(255, 255, 255, 0.2);
   }
   
   .feature-tag svg {
       width: 18px;
       height: 18px;
   }
   
   .hero-cta-buttons {
       display: flex;
       gap: 16px;
       flex-wrap: wrap;
   }
   
   /* ========================================
      NAVIGATION BAR
      ======================================== */
   .navbar {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 30px 0;
       animation: slideDown 0.8s ease-out;
       transition: all 0.3s ease;
   }
   
   .logo-container {
       display: flex;
       align-items: center;
       gap: 16px;
   }
   
   .nav-logo {
       width: 60px;
       height: 60px;
       object-fit: contain;
       background: white;
       border-radius: 12px;
       padding: 6px;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   }
   
   .nav-brand {
       font-size: 36px;
       font-weight: 800;
       color: white;
   }
   
   .nav-actions {
       display: flex;
       align-items: center;
       gap: 16px;
   }
   
   .nav-login-btn,
   .nav-demo-btn {
       background: transparent;
       color: white;
       padding: 12px 28px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 600;
       font-size: 16px;
       transition: all 0.3s ease;
       border: 2px solid rgba(255, 255, 255, 0.3);
   }
   
   .nav-login-btn:hover {
       background: rgba(255, 255, 255, 0.1);
       border-color: white;
   }
   
   .nav-demo-btn:hover {
       background: rgba(255, 255, 255, 0.25);
       border-color: rgba(255, 255, 255, 0.5);
   }
   
   .nav-cta-btn {
       background: white;
       color: #192a56;
       padding: 12px 28px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 700;
       font-size: 16px;
       transition: all 0.3s ease;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   }
   
   .nav-cta-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
   }
   
   /* ========================================
      LANGUAGE SWITCHER
      ======================================== */
   .language-switcher {
       position: relative;
   }
   
   .lang-btn {
       display: flex;
       align-items: center;
       gap: 8px;
       background: transparent;
       color: white;
       padding: 12px 20px;
       border-radius: 50px;
       border: 2px solid rgba(255, 255, 255, 0.3);
       font-weight: 600;
       font-size: 16px;
       cursor: pointer;
       transition: all 0.3s ease;
       font-family: 'Baloo Bhaijaan 2', sans-serif;
   }
   
   .lang-btn:hover {
       background: rgba(255, 255, 255, 0.1);
       border-color: white;
   }
   
   .lang-btn svg {
       transition: transform 0.3s ease;
   }
   
   .lang-btn.active svg {
       transform: rotate(180deg);
   }
   
   .lang-dropdown {
       position: absolute;
       top: calc(100% + 10px);
       right: 0;
       background: white;
       border-radius: 12px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
       overflow: hidden;
       opacity: 0;
       visibility: hidden;
       transform: translateY(-10px);
       transition: all 0.3s ease;
       z-index: 1000;
       min-width: 140px;
   }
   
   .lang-dropdown.show {
       opacity: 1;
       visibility: visible;
       transform: translateY(0);
   }
   
   .lang-option {
       display: block;
       padding: 12px 20px;
       color: #192a56;
       text-decoration: none;
       font-weight: 600;
       font-size: 15px;
       transition: background 0.2s ease, color 0.2s ease;
   }
   
   .lang-option:hover {
       background: rgba(25, 42, 86, 0.08);
   }
   
   /* ========================================
      HAMBURGER MENU
      ======================================== */
   .hamburger {
       display: none;
       flex-direction: column;
       gap: 5px;
       background: transparent;
       border: none;
       cursor: pointer;
       padding: 8px;
       z-index: 1001;
   }
   
   .hamburger span {
       width: 28px;
       height: 3px;
       background: white;
       border-radius: 3px;
       transition: all 0.3s ease;
   }
   
   .hamburger.active span:nth-child(1) {
       transform: rotate(45deg) translate(8px, 8px);
   }
   
   .hamburger.active span:nth-child(2) {
       opacity: 0;
   }
   
   .hamburger.active span:nth-child(3) {
       transform: rotate(-45deg) translate(7px, -7px);
   }
   
   .mobile-menu-overlay {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 0, 0, 0.5);
       z-index: 999;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.3s ease, visibility 0.3s ease;
   }
   
   .mobile-menu-overlay.show {
       opacity: 1;
       visibility: visible;
   }
   
   /* ========================================
      CTA BUTTONS
      ======================================== */
   .cta-button {
       display: inline-block;
       padding: 18px 40px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 700;
       font-size: 18px;
       transition: all 0.3s ease;
   }
   
   .cta-primary {
       background: white;
       color: #192a56;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
   }
   
   .cta-primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
   }
   
   .cta-secondary {
       background: transparent;
       color: white;
       border: 2px solid white;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
   }
   
   .cta-secondary:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateY(-3px);
       box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
   }
   
   /* ========================================
      IPHONE MOCKUPS
      ======================================== */
   .hero-mockups {
       position: relative;
       height: 650px;
       animation: fadeInUp 1s ease-out 0.4s backwards;
   }
   
   .iphone-mockup {
       position: absolute;
       width: 300px;
       transition: transform 0.3s ease;
   }
   
   .iphone-left {
       left: 0;
       top: 80px;
       z-index: 2;
   }
   
   .iphone-right {
       right: 0;
       top: 0;
       z-index: 1;
   }
   
   .iphone-mockup:hover {
       transform: scale(1.05) !important;
       z-index: 10 !important;
   }
   
   .iphone-frame {
       background: #1a1a1a;
       border-radius: 45px;
       padding: 12px;
       box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
       position: relative;
   }
   
   .iphone-notch {
       position: absolute;
       top: 12px;
       left: 50%;
       transform: translateX(-50%);
       width: 120px;
       height: 28px;
       background: #1a1a1a;
       border-radius: 0 0 20px 20px;
       z-index: 2;
   }
   
   .iphone-screen {
       background: #f7fafc;
       border-radius: 35px;
       overflow: hidden;
       height: 620px;
   }
   
   /* ========================================
      MOCKUP CONTAINER - SHARED STYLES
      ======================================== */
   .mockup-container {
       width: 100%;
       height: 100%;
       background: white;
       display: flex;
       flex-direction: column;
       overflow: hidden;
       font-size: 11px;
   }
   
   .mockup-logo-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 18px 18px 0 18px;
       flex-shrink: 0;
   }
   
   .mockup-logo-img {
       width: 50px;
       height: 50px;
       object-fit: contain;
       background-color: #f0fff4;
   }
   
   .mockup-brand-name {
       font-family: 'Baloo Bhaijaan 2', cursive;
       font-size: 32px;
       font-weight: 800;
       color: #192a56;
       line-height: 1;
   }
   
   .mockup-header {
       text-align: center;
       padding: 0 18px 24px 18px;
       flex-shrink: 0;
   }
   
   .mockup-header-text {
       font-size: 20px;
       font-weight: 800;
       color: #192a56;
       line-height: 1.4;
       margin-bottom: 6px;
   }
   
   .mockup-header-subtitle {
       color: #192a56;
       font-size: 11px;
       font-weight: 700;
   }
   
   .mockup-content-wrapper {
       overflow-y: auto;
       padding: 0 18px 15px 18px;
       flex-grow: 1;
   }
   
   /* ========================================
      MOCKUP - ALERTS SCREEN
      ======================================== */
   .mockup-alert-card {
       background: white;
       border-radius: 10px;
       padding: 15px;
       margin-bottom: 10px;
       border: 2px solid #fee;
       display: flex;
       justify-content: space-between;
       align-items: flex-start;
       gap: 12px;
   }
   
   .mockup-employee-name {
       font-size: 14px;
       font-weight: 700;
       color: #192a56;
   }
   
   .mockup-alert-details {
       display: flex;
       flex-direction: column;
       gap: 6px;
       align-items: flex-end;
   }
   
   .mockup-alert-category {
       display: inline-flex;
       align-items: center;
       gap: 6px;
       padding: 6px 10px;
       background: #fff5f5;
       color: #c53030;
       border-radius: 6px;
       font-size: 10px;
       font-weight: 600;
       border: 1px solid #feb2b2;
   }
   
   .mockup-category-percentage {
       font-weight: 700;
       font-size: 11px;
       color: #e53e3e;
   }
   
   /* ========================================
      MOCKUP - RATING SCREEN
      ======================================== */
   .mockup-person-card {
       background: #f7fafc;
       border-radius: 10px;
       padding: 15px;
       margin-bottom: 12px;
       border: 2px solid #e2e8f0;
   }
   
   .mockup-person-name {
       font-size: 14px;
       font-weight: 700;
       color: #192a56;
       margin-bottom: 15px;
       padding-bottom: 10px;
       border-bottom: 2px solid #e2e8f0;
   }
   
   .mockup-question {
       margin-bottom: 12px;
   }
   
   .mockup-question:last-child {
       margin-bottom: 0;
   }
   
   .mockup-question-text {
       font-size: 11px;
       color: #192a56;
       margin-bottom: 8px;
       font-weight: 700;
   }
   
   .mockup-rating-group {
       display: flex;
       justify-content: space-between;
       gap: 6px;
   }
   
   .mockup-rating-option {
       flex: 1;
   }
   
   .mockup-rating-label {
       display: block;
       padding: 8px 6px;
       text-align: center;
       background: white;
       border: 2px solid #e2e8f0;
       border-radius: 6px;
       font-size: 11px;
       font-weight: 700;
       color: #192a56;
   }
   
   .mockup-rating-selected .mockup-rating-label {
       background: #192a56;
       color: white;
       border-color: #192a56;
       transform: scale(1.05);
   }
   
   .mockup-submit-btn {
       width: 100%;
       padding: 12px;
       background: #192a56;
       color: white;
       border: none;
       border-radius: 6px;
       font-size: 12px;
       font-weight: 700;
       margin-top: 18px;
       box-shadow: 0 3px 10px rgba(25, 42, 86, 0.4);
       font-family: 'Baloo Bhaijaan 2', sans-serif;
   }
   
   /* ========================================
      MOCKUP - BOTTOM NAVIGATION
      ======================================== */
   .mockup-bottom-nav {
       background: white;
       display: flex;
       justify-content: space-around;
       padding: 10px 15px;
       border-top: 1px solid #e2e8f0;
       flex-shrink: 0;
   }
   
   .mockup-nav-item {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 3px;
       color: #192a56;
       font-size: 9px;
       font-weight: 700;
       padding: 6px 15px;
       border-radius: 6px;
   }
   
   .mockup-nav-active {
       color: #192a56;
       background: #edf2f7;
   }
   
   .mockup-nav-icon {
       font-size: 18px;
       line-height: 1;
   }
   
   .mockup-nav-icon svg {
       width: 18px;
       height: 18px;
   }
   
   /* ========================================
      HOW IT WORKS SECTION
      ======================================== */
   .how-section {
       padding: 120px 40px 10px 40px;
       background: white;
   }
   
   .how-container {
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .steps-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px;
       margin-top: 60px;
   }
   
   .step-card {
       text-align: center;
       position: relative;
   }
   
   .step-number {
       width: 80px;
       height: 80px;
       background: linear-gradient(135deg, #192a56 0%, #273c75 100%);
       color: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 32px;
       font-weight: 800;
       margin: 0 auto 24px;
       box-shadow: 0 10px 30px rgba(25, 42, 86, 0.3);
   }
   
   .step-title {
       font-size: 24px;
       font-weight: 700;
       color: #192a56;
       margin-bottom: 12px;
   }
   
   .step-description {
       font-size: 16px;
       font-weight: 500;
       color: #64748b;
       line-height: 1.6;
   }
   
   /* ========================================
      FEATURES SECTION
      ======================================== */
   .features-section {
       padding: 60px 40px 80px 40px;
       background: #f7fafc;
       margin-top: 80px;
   }
   
   .features-container {
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .section-title {
       font-size: 42px;
       font-weight: 800;
       color: #192a56;
       text-align: right;
       margin-bottom: 60px;
       padding-right: 40px;
       position: relative;
       z-index: 10;
   }
   
   .section-title-light {
       color: white;
   }
   
   .features-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
   }
   
   .feature-card {
       background: white;
       padding: 40px 30px;
       border-radius: 20px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       transition: all 0.3s ease;
       border: 2px solid transparent;
   }
   
   .feature-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
       border-color: #192a56;
   }
   
   .feature-header {
       display: flex;
       align-items: center;
       gap: 20px;
       margin-bottom: 20px;
   }
   
   .feature-icon {
       width: 70px;
       height: 70px;
       background: linear-gradient(135deg, #192a56 0%, #273c75 100%);
       border-radius: 18px;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
       color: white;
   }
   
   .feature-title {
       font-size: 22px;
       font-weight: 700;
       color: #192a56;
       margin: 0;
   }
   
   /* ========================================
      CTA SECTION
      ======================================== */
   .cta-section {
       padding: 100px 40px;
       background: linear-gradient(135deg, #192a56 0%, #273c75 100%);
       text-align: center;
       position: relative;
       overflow: hidden;
   }
   
   .cta-section::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -10%;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
       border-radius: 50%;
   }
   
   .cta-container {
       max-width: 800px;
       margin: 0 auto;
       position: relative;
       z-index: 1;
   }
   
   .cta-title {
       font-size: 36px;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       display: flex;
       flex-direction: column;
       text-align: center;
       justify-content: center;
       align-items: center;
   }
   
   .cta-line {
       display: block;
   }
   
   .cta-buttons-group {
       display: flex;
       gap: 20px;
       justify-content: center;
       flex-wrap: wrap;
   }
   
   .cta-button-large {
       padding: 20px 50px;
       border: none;
       border-radius: 50px;
       font-size: 20px;
       font-weight: 700;
       cursor: pointer;
       transition: all 0.3s ease;
       font-family: 'Baloo Bhaijaan 2', sans-serif;
   }
   
   .cta-btn-primary {
       background: white;
       color: #192a56;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   }
   
   .cta-btn-primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
   }
   
   .cta-btn-secondary {
       background: transparent;
       color: white;
       border: 2px solid white;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   }
   
   .cta-btn-secondary:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateY(-3px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
   }
   
   /* ========================================
      FOOTER
      ======================================== */
   .footer {
       background: #0f1d3d;
       padding: 40px;
       color: white;
   }
   
   .footer-container {
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .footer-content {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 20px;
   }
   
   .footer-brand {
       display: flex;
       align-items: center;
       gap: 16px;
   }
   
   .footer-logo {
       width: 40px;
       height: 40px;
       object-fit: contain;
       background: white;
       border-radius: 10px;
       padding: 4px;
   }
   
   .footer-brand-name {
       font-size: 20px;
       font-weight: 700;
   }
   
   .footer-text {
       font-size: 14px;
       font-weight: 500;
       color: rgba(255, 255, 255, 0.7);
   }
   
   /* ========================================
      LTR (LEFT-TO-RIGHT) SUPPORT
      ======================================== */
   html[dir="ltr"] {
       direction: ltr;
   }
   
   html[dir="ltr"] .lang-dropdown {
       right: auto;
       left: 0;
   }
   
   html[dir="ltr"] .section-title {
       text-align: left;
       padding-right: 0;
       padding-left: 40px;
   }
   
   html[dir="ltr"] .nav-actions {
       right: auto;
       left: -100%;
       transition: left 0.3s ease;
   }
   
   html[dir="ltr"] .nav-actions.show {
       left: 0;
   }
   
   /* ========================================
   RESPONSIVE - DESKTOP (1025px+)
   ======================================== */
    @media (min-width: 1025px) {
        .how-section {
            margin-top: 190px;
        }
    }

    /* ========================================
    RESPONSIVE - TABLET VERTICAL (768px - 1024px, portrait)
    ======================================== */
    @media (min-width: 768px) and (max-width: 1024px) {
        .how-section {
            padding: 440px 40px 100px 40px;
            min-height: 800px;
            margin-top: 0 !important;
        }
        
        .hero {
            min-height: 1000px;
            padding-bottom: 100px;
            margin-bottom: 0;
        }
        .hero-content {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }
        
        .hero-title {
            font-size: 44px;
        }
        
        .hero-subtitle {
            font-size: 18px;
        }
        
        .hero-features {
            justify-content: center;
        }

        .hero-cta-buttons {
            justify-content: center;
        }
        
        .hero-mockups {
            height: 550px;
            margin: 0 auto;
            max-width: 600px;
        }
        
        .iphone-mockup {
            width: 260px;
        }
        
        .iphone-screen {
            height: 540px;
        }
        
        .iphone-left {
            left: 20px;
        }
        
        .iphone-right {
            right: 20px;
        }

        .steps-grid {
            grid-template-columns: 1fr;
        }

        html[dir="ltr"] .section-title {
            padding-left: 20px;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* ========================================
    RESPONSIVE - TABLET HORIZONTAL (768px - 1024px, landscape)
    ======================================== */
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        .how-section {
            padding: 290px 20px 60px 20px;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }
        
        .hero-title {
            font-size: 44px;
        }
        
        .hero-subtitle {
            font-size: 18px;
        }
        
        .hero-features {
            justify-content: center;
        }

        .hero-cta-buttons {
            justify-content: center;
            width: 100%;
        }
        
        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .steps-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* ========================================
    RESPONSIVE - MOBILE VERTICAL (≤767px, portrait)
    ======================================== */
    @media (max-width: 767px) and (orientation: portrait) {
        .hero-container {
            padding: 0 20px;
            pointer-events: auto;
        }
        
        .navbar {
            padding: 20px 0;
            position: relative;
            pointer-events: none;
        }
        
        .navbar > * {
            pointer-events: auto;
        }
        
        .nav-brand {
            font-size: 28px;
        }
        
        .nav-logo {
            width: 50px;
            height: 50px;
        }
        
        .hero-content {
            padding: 40px 0 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .hero-cta-buttons {
            width: 100%;
            justify-content: center;
        }
        
        .hero-title {
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero-subtitle {
            font-size: 16px;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        
        .hero-features {
            margin-bottom: 32px;
            justify-content: center;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 8px;
            gap: 6px;
        }
        
        .hero-features::-webkit-scrollbar {
            display: none;
        }
        
        .hero-features .feature-tag {
            flex-shrink: 0;
            white-space: nowrap;
            font-size: 13px;
            padding: 8px 12px;
            gap: 6px;
        }
        
        .hero-cta-buttons {
            justify-content: center;
        }
        
        .cta-button {
            padding: 16px 32px;
            font-size: 16px;
        }
        
        .hero-mockups {
            height: 380px;
            margin-top: 40px;
        }
        
        .iphone-mockup {
            width: 170px; 
        }
        
        .iphone-screen {
            height: 360px;
        }
        
        .iphone-left {
            left: 10px;
            top: 30px;
        }
        
        .iphone-right {
            right: 10px;
            top: 0;
        }
        
        .iphone-frame {
            padding: 8px;
            border-radius: 35px;
        }
        
        .iphone-notch {
            width: 90px;
            height: 22px;
            top: 8px;
        }
        
        .iphone-screen {
            border-radius: 28px;
        }
        
        .mockup-container {
            font-size: 8px;
        }
        
        .mockup-logo-header {
            padding: 12px 12px 0 12px;
        }
        
        .mockup-logo-img {
            width: 35px;
            height: 35px;
        }
        
        .mockup-brand-name {
            font-size: 22px;
        }
        
        .mockup-header {
            padding: 0 12px 16px 12px;
        }
        
        .mockup-header-text {
            font-size: 14px;
        }
        
        .mockup-header-subtitle {
            font-size: 8px;
        }
        
        .mockup-content-wrapper {
            padding: 0 12px 10px 12px;
        }
        
        .mockup-alert-card {
            padding: 10px;
            margin-bottom: 8px;
        }
        
        .mockup-employee-name {
            font-size: 10px;
        }
        
        .mockup-alert-category {
            font-size: 7px;
            padding: 4px 6px;
            gap: 4px;
        }
        
        .mockup-category-percentage {
            font-size: 8px;
        }
        
        .mockup-person-card {
            padding: 8px;
            margin-bottom: 8px;
        }
        
        .mockup-person-name {
            font-size: 10px;
            margin-bottom: 8px;
            padding-bottom: 6px;
        }
        
        .mockup-question {
            margin-bottom: 8px;
        }
        
        .mockup-question-text {
            margin-bottom: 5px;
            font-size: 9px;
        }
        
        .mockup-rating-group {
            gap: 3px;
        }
        
        .mockup-rating-label {
            padding: 4px 3px;
            font-size: 8px;
        }
        
        .mockup-submit-btn {
            padding: 8px;
            font-size: 9px;
            margin-top: 12px;
        }
        
        .mockup-bottom-nav {
            padding: 8px 10px;
        }
        
        .mockup-nav-item {
            font-size: 7px;
            padding: 4px 10px;
            gap: 2px;
        }
        
        .mockup-nav-icon svg {
            width: 14px;
            height: 14px;
        }
        
        .how-section {
            padding: 360px 20px 100px 20px;
            min-height: 700px;
        }
        
        .features-section {
            padding: 80px 20px 60px 20px;
            margin-top: 60px;
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 40px;
            text-align: center;
            padding-right: 0;
            padding-left: 0;
        }
        
        html[dir="ltr"] .section-title {
            text-align: center;
            padding-left: 0;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .feature-card {
            padding: 30px 24px;
        }
        
        .feature-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
        }
        
        .feature-title {
            font-size: 20px;
        }
        
        .feature-description {
            text-align: center;
            font-size: 15px;
        }
        
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .cta-section {
            padding: 60px 20px;
        }
        
        .cta-title {
            font-size: 26px;
            line-height: 1.4;
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .cta-line {
            display: block;
        }
        
        .cta-buttons-group {
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }
        
        .cta-button-large {
            padding: 16px 36px;
            font-size: 16px;
            width: 100%;
            max-width: 320px;
        }

        .hero {
            padding-bottom: 120px;
            margin-bottom: 0;
        }
    }

    /* ========================================
    RESPONSIVE - MOBILE HORIZONTAL (≤915px, landscape)
    ======================================== */
    @media (max-width: 915px) and (orientation: landscape) {
        .hero-container {
            padding: 0 20px;
            pointer-events: auto;
        }
        
        .navbar {
            padding: 20px 0;
            position: relative;
            pointer-events: none;
        }
        
        .navbar > * {
            pointer-events: auto;
        }
        
        .nav-brand {
            font-size: 28px;
        }
        
        .nav-logo {
            width: 50px;
            height: 50px;
        }
        
        .hero-content {
            padding: 40px 0 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .hero-cta-buttons {
            width: 100%;
            justify-content: center;
        }
        
        .hero-title {
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero-subtitle {
            font-size: 16px;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        
        .hero-features {
            margin-bottom: 32px;
            justify-content: center;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 8px;
            gap: 6px;
        }
        
        .hero-features::-webkit-scrollbar {
            display: none;
        }
        
        .hero-features .feature-tag {
            flex-shrink: 0;
            white-space: nowrap;
            font-size: 13px;
            padding: 8px 12px;
            gap: 6px;
        }
        
        .hero-cta-buttons {
            justify-content: center;
        }
        
        .cta-button {
            padding: 16px 32px;
            font-size: 16px;
        }
        
        .hero-mockups {
            height: 380px;
            margin-top: 40px;
        }
        
        .iphone-mockup {
            width: 200px; 
        }
        
        .iphone-screen {
            height: 400px;
        }
        
        .iphone-left {
            left: 40px;
            top: 30px;
        }
        
        .iphone-right {
            right: 40px;
            top: 0;
        }
        
        .iphone-frame {
            padding: 8px;
            border-radius: 35px;
        }
        
        .iphone-notch {
            width: 90px;
            height: 22px;
            top: 8px;
        }
        
        .iphone-screen {
            border-radius: 28px;
        }
        
        .mockup-container {
            font-size: 8px;
        }
        
        .mockup-logo-header {
            padding: 12px 12px 0 12px;
        }
        
        .mockup-logo-img {
            width: 35px;
            height: 35px;
        }
        
        .mockup-brand-name {
            font-size: 22px;
        }
        
        .mockup-header {
            padding: 0 12px 16px 12px;
        }
        
        .mockup-header-text {
            font-size: 14px;
        }
        
        .mockup-header-subtitle {
            font-size: 8px;
        }
        
        .mockup-content-wrapper {
            padding: 0 12px 10px 12px;
        }
        
        .mockup-alert-card {
            padding: 10px;
            margin-bottom: 8px;
        }
        
        .mockup-employee-name {
            font-size: 10px;
        }
        
        .mockup-alert-category {
            font-size: 7px;
            padding: 4px 6px;
            gap: 4px;
        }
        
        .mockup-category-percentage {
            font-size: 8px;
        }
        
        .mockup-person-card {
            padding: 8px;
            margin-bottom: 8px;
        }
        
        .mockup-person-name {
            font-size: 10px;
            margin-bottom: 8px;
            padding-bottom: 6px;
        }
        
        .mockup-question {
            margin-bottom: 8px;
        }
        
        .mockup-question-text {
            margin-bottom: 5px;
            font-size: 9px;
        }
        
        .mockup-rating-group {
            gap: 3px;
        }
        
        .mockup-rating-label {
            padding: 4px 3px;
            font-size: 8px;
        }
        
        .mockup-submit-btn {
            padding: 8px;
            font-size: 9px;
            margin-top: 12px;
        }
        
        .mockup-bottom-nav {
            padding: 8px 10px;
        }
        
        .mockup-nav-item {
            font-size: 7px;
            padding: 4px 10px;
            gap: 2px;
        }
        
        .mockup-nav-icon svg {
            width: 14px;
            height: 14px;
        }
        
        .how-section {
            padding: 135px 20px 100px 20px;
            min-height: 700px;
        }
        
        .features-section {
            padding: 80px 20px 60px 20px;
            margin-top: 60px;
        }
        
        .section-title {
            font-size: 32px;
            margin-bottom: 40px;
            text-align: right;
            padding-right: 0;
            padding-left: 0;
        }
        
        html[dir="ltr"] .section-title {
            text-align: center;
            padding-left: 0;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .feature-card {
            padding: 30px 24px;
        }
        
        .feature-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
        }
        
        .feature-title {
            font-size: 20px;
        }
        
        .feature-description {
            text-align: center;
            font-size: 15px;
        }
        
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .cta-section {
            padding: 60px 20px;
        }
        
        .cta-title {
            font-size: 26px;
            line-height: 1.4;
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .cta-line {
            display: block;
        }
        
        .cta-buttons-group {
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }
        
        .cta-button-large {
            padding: 16px 36px;
            font-size: 16px;
            width: 100%;
            max-width: 320px;
        }

        .hero {
            padding-bottom: 120px;
            margin-bottom: 0;
        }
    }

    /* ========================================
    RESPONSIVE - SHARED STYLES (ALL TABLET & MOBILE)
    ======================================== */
    @media (max-width: 1024px) {
        .hamburger {
            display: flex;
        }

        .mobile-menu-overlay {
            display: block;
        }

        .nav-actions {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, #192a56 0%, #273c75 100%);
            flex-direction: column;
            gap: 0;
            padding: 80px 0 20px 0;
            transition: right 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
        }

        .nav-actions.show {
            right: 0;
        }

        html[dir="ltr"] .nav-actions {
            right: auto;
            left: -100%;
            transition: left 0.3s ease;
        }

        html[dir="ltr"] .nav-actions.show {
            left: 0;
        }

        .language-switcher {
            width: 100%;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lang-btn {
            width: 100%;
            justify-content: center;
        }

        .nav-login-btn,
        .nav-cta-btn,
        .nav-demo-btn {
            width: calc(100% - 40px);
            margin: 10px 20px;
            text-align: center;
            padding: 14px 20px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 16px;
            background: transparent;
            color: white;
            display: block;
        }

        .nav-cta-btn {
            background: white;
            color: #192a56;
            border: none;
        }
    }