/* Global Variables & Theme Setup */
:root {
    /* Brand Colors */
    --primary: #256A80;
    --primary-dark: #194a5a;
    --primary-light: #f2f7f9;
    --primary-10: rgba(37, 106, 128, 0.1);
    --primary-20: rgba(37, 106, 128, 0.2);
    
    --text-dark: #1C1B1A;
    --text-medium: #4A4947;
    --text-light: #8E8D8A;
    
    --accent: #CE4C20;
    --accent-dark: #a63b17;
    --accent-light: #fdf3ef;
    --accent-10: rgba(206, 76, 32, 0.1);
    
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: rgba(37, 106, 128, 0.1);
    --border-glow: rgba(206, 76, 32, 0.15);
    
    /* Dark Theme for App Mockup */
    --app-bg: #121211;
    --app-card: #1C1B1A;
    --app-border: #2A2927;
    --app-text: #EAEAEA;
    
    /* Layout & Styling details */
    --font-main: 'Rubik', 'Assistant', sans-serif;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 30px rgba(37, 106, 128, 0.08);
    --shadow-lg: 0 20px 40px rgba(37, 106, 128, 0.12);
    --shadow-glow: 0 0 25px rgba(37, 106, 128, 0.15);
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 500;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 106, 128, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 106, 128, 0.35);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--primary-10);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-20);
    transform: translateY(-2px);
}

.btn-secondary-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Header Typography */
.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-header.text-right {
    text-align: right;
}

.section-tagline {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background-color: var(--accent-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 760px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(28, 27, 26, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(rgba(0, 112, 149, 0.25) 0px 4px 10px);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #007095 0%, #CE4C20 60%, #E26A39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0px 0px;
  font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #FFFFFF;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Mobile Nav Dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #1c1b1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav a.active {
    color: #FFFFFF;
    border-right: 3px solid var(--accent);
    padding-right: 12px;
}

/* Subpage Header Banner */
.page-title-banner {
    position: relative;
    padding: 120px 0 30px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.page-title-card {
    position: relative;
    padding: 70px 32px;
    border-radius: var(--radius-lg);
    background-color: #161514;
    background-image: linear-gradient(rgba(28, 27, 26, 0.75), rgba(28, 27, 26, 0.85)), url('assets/images/subpage_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(28, 27, 26, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-align: center;
}

.page-title-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 106, 128, 0.25) 0%, rgba(206, 76, 32, 0.08) 50%, transparent 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.page-title-card * {
    position: relative;
    z-index: 2;
}

.page-title-card .section-tagline {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.page-title-card h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-title-card p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-bg-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(37, 106, 128, 0.08);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(206, 76, 32, 0.05);
    bottom: -150px;
    left: -150px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-container {
    margin-bottom: 24px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(37, 106, 128, 0.15);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}



.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.query-terminal {
    width: 100%;
    max-width: 620px;
    background-color: var(--app-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--app-border);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    font-family: var(--font-main);
    direction: ltr;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background-color: #191817;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--app-border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dots .dot.red { background-color: #FF5F56; }
.terminal-dots .dot.yellow { background-color: #FFBD2E; }
.terminal-dots .dot.green { background-color: #27C93F; }

.terminal-title {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.terminal-body {
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #121211;
    flex: 1;
    direction: rtl;
    text-align: right;
}

.terminal-line {
    font-size: 1rem;
    line-height: 1.5;
}

.input-line {
    color: #F8F8F2;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
}

.prompt {
    display: none;
}

.typewriter-text {
    font-weight: 500;
    color: #FFFFFF;
}

.cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
    font-weight: bold;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--accent) }
}

.terminal-response {
    color: #EAEAEA;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    background-color: rgba(37, 106, 128, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(37, 106, 128, 0.15);
    box-shadow: var(--shadow-sm);
}

.terminal-response.show {
    opacity: 1;
    transform: translateY(0);
}

.terminal-resp-row {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terminal-resp-row:last-child {
    margin-bottom: 0;
}

.terminal-resp-key {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terminal-resp-val {
    color: #FFFFFF;
    font-size: 0.95rem;
}

/* Social Proof Stats Bar Styles */
.social-proof-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.stat-card {
    padding: 12px;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(37, 106, 128, 0.15);
}

.stats-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 24px;
}

/* Section 2 — The Problem Section Styles */
.problem-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
}

.problem-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-card.new-way {
    background-color: var(--primary-light);
    border-color: var(--primary-20);
    box-shadow: 0 10px 40px rgba(37, 106, 128, 0.05);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(206, 76, 32, 0.08);
    border-radius: 50%;
    filter: blur(50px);
    top: -50px;
    left: -50px;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.card-icon-wrapper.red-theme {
    background-color: var(--accent-light);
    color: var(--accent);
}

.card-icon-wrapper.teal-theme {
    background-color: var(--primary);
    color: var(--bg-white);
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-medium);
}

.problem-list li i {
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.problem-list li i[data-lucide="x-circle"] {
    color: #D32F2F;
}

.problem-list li i[data-lucide="check-circle2"] {
    color: var(--primary);
}

.problem-card.new-way .problem-list li {
    color: var(--text-dark);
}

/* NEW Remote & Mobile Section Styles */
.mobile-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-visual {
    display: flex;
    justify-content: center;
}

/* Pure CSS Smartphone Mockup */
.phone-mockup {
    width: 290px;
    height: 580px;
    background-color: #000000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 4px solid #282725;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--app-bg);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #1c1b1a;
}

.phone-header {
    height: 28px;
    background-color: #0E0D0D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.7rem;
    color: #8E8D8A;
    font-weight: bold;
}

.phone-speaker {
    width: 60px;
    height: 12px;
    background-color: #000000;
    border-radius: 6px;
}

.phone-app-header {
    height: 52px;
    background-color: #191817;
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: bold;
}

.phone-user-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.phone-app-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.phone-app-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.phone-app-card {
    background-color: var(--app-card);
    border: 1px solid var(--app-border);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.phone-app-card.dark-card {
    background-color: #0A0A0A;
}

.phone-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #8E8D8A;
    margin-bottom: 6px;
}

.phone-card-title i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.phone-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #27C93F;
}

.phone-card-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-white);
}

.phone-card-subtitle {
    font-size: 0.7rem;
    color: #27C93F;
}

.phone-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.phone-action-btn {
    background-color: var(--primary-10);
    border: 1px solid var(--primary-20);
    color: var(--bg-white);
    font-size: 0.7rem;
    padding: 8px 4px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.phone-action-btn i {
    width: 12px;
    height: 12px;
}

.ai-spark-icon {
    color: var(--accent) !important;
}

.phone-chat-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.72rem;
}

.phone-chat-preview .chat-u {
    color: var(--app-text);
    background-color: var(--app-border);
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
}

.phone-chat-preview .chat-ai {
    color: #A6E22E;
    align-self: flex-start;
}

.mobile-text {
    text-align: right;
}

.mobile-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.mobile-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.mobile-features-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

/* Demo Showcase Styles (Dark UI Mirror) */
.demo-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dashboard-showcase {
    margin-top: 56px;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tab-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary-20);
    transform: translateY(-1px);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(37, 106, 128, 0.25);
}

.showcase-viewport {
    perspective: 1000px;
}

.browser-frame {
    background-color: var(--app-bg);
    border: 1px solid var(--app-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.browser-top {
    background-color: #191817;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--app-border);
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 24px;
}

.b-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.b-dot.close { background-color: #FF5F56; }
.b-dot.minimize { background-color: #FFBD2E; }
.b-dot.maximize { background-color: #27C93F; }

.browser-address {
    margin: 0 auto;
    background-color: #0E0D0D;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: 'Consolas', monospace;
    padding: 6px 40px;
    border-radius: 30px;
    border: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.lock-icon {
    width: 14px;
    height: 14px;
    color: #4CAF50;
}

.browser-content {
    padding: 40px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-pane {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.pane-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.pane-image {
    background-color: #0E0D0D;
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--app-border);
}

.pane-image img {
    border-radius: var(--radius-sm);
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.pane-desc {
    color: var(--app-text);
}

.pane-desc h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-white);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 6px;
}

.pane-desc p {
    color: #B5B4B2;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pane-desc .highlight-p {
    background-color: rgba(206, 76, 32, 0.08);
    border-right: 4px solid var(--accent);
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--bg-white);
}

.pane-desc .highlight-p i {
    vertical-align: middle;
    margin-left: 6px;
    color: var(--accent);
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.spec-badge {
    background-color: var(--app-card);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid var(--app-border);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spec-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Features Grid Section Styles */
.features-section,
.features-preview-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card p strong {
    color: var(--accent-dark);
}

/* Timeline - How it Works Section Styles */
.how-works-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 64px;
    position: relative;
}

.steps-timeline::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
    opacity: 0.3;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-item:nth-child(2) .step-number {
    border-color: var(--accent);
    color: var(--accent);
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Audience Grid Styles */
.audience-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.audience-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    border-color: var(--primary-20);
}

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

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.audience-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section Styling */
.faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-sm);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(206, 76, 32, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Contact us Lead Capture Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.contact-info .section-title {
    margin-top: 8px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span:first-child {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-text a,
.detail-text span:last-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-text a:hover {
    color: var(--accent);
}

/* Lead Form Styling */
.contact-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-10);
}

.contact-form button[type="submit"] {
    margin-top: 10px;
    height: 52px;
}

.form-alert {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-top: 10px;
    animation: fadeIn 0.3s ease forwards;
}

.success-alert {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

/* Footer Section Styles */
.main-footer {
    background-color: var(--text-dark);
    color: #B5B4B2;
    padding: 48px 0;
    border-top: 1px solid #2A2927;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--bg-white);
}

/* Fade In Classes for Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mobile-visual {
        order: -1;
    }
    
    .mobile-text {
        text-align: center;
    }
    
    .mobile-features-list {
        align-items: center;
        text-align: right;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    
    .pane-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .steps-timeline::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .page-title-card h1 {
        font-size: 2rem;
    }
    
    .page-title-card {
        padding: 48px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-content {
        padding: 24px;
    }
    
    .cta-box {
        padding: 48px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* כפתורים עדינים יותר במובייל */
    .btn {
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 11px 22px;
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }

    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Floating Widget Styles */
.whatsapp-widget-container {
    position: fixed;
    bottom: 24px;
    z-index: 999999;
    font-family: 'LatinForBirzia', 'birzia', sans-serif !important;
    direction: rtl;
}

.whatsapp-widget-left {
    left: 24px;
}

.whatsapp-widget-right {
    right: 24px;
}

/* כפתור צף מודרני */
.whatsapp-float-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    position: relative;
    animation: whatsapp-pulse 2s infinite;
}

/* אנימציית פעימה אלגנטית */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-button:hover {
    transform: translateY(-3px) scale(1.05);
    animation-play-state: paused;
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* חלון צ'אט */
.whatsapp-chat-box {
    position: absolute;
    bottom: 75px;
    width: 320px;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.whatsapp-chat-box.left {
    left: 0;
    transform-origin: bottom left;
}

.whatsapp-chat-box.right {
    right: 0;
    transform-origin: bottom right;
}

.whatsapp-chat-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* כותרת החלון */
.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.whatsapp-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-icon {
    width: 26px;
    height: 26px;
    fill: white;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* נקודת "מחובר" */
.whatsapp-online-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

.whatsapp-close {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
    position: relative;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-close::before,
.whatsapp-close::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.whatsapp-close::before { transform: rotate(45deg); }
.whatsapp-close::after { transform: rotate(-45deg); }

/* אזור תוכן ההודעה */
.whatsapp-content {
    padding: 24px 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e5e5e5' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* בועת צ'אט */
.whatsapp-message {
    background: white;
    padding: 14px 18px;
    border-radius: 12px 0 12px 12px;
    line-height: 1.5;
    color: #4a4a4a;
    position: relative;
    margin-bottom: 24px;
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.whatsapp-message::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: white;
    border-right: 0;
    border-bottom: 0;
}

/* כפתור קריאה לפעולה */
.whatsapp-action-button {
    box-sizing: border-box;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-action-button:hover {
    background: #1DA851;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-action-button svg {
    width: 18px;
    height: 18px;
    fill: white;
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.whatsapp-action-button:hover svg {
    transform: rotate(180deg) translateX(4px);
}

/* הגדרות כלליות ומובייל */
* { -webkit-tap-highlight-color: transparent !important; }

@media print {
    .whatsapp-widget-container { display: none !important; }
}

@media (max-width: 480px) {
    /* כפתורים קומפקטיים יותר במסכים קטנים מאוד */
    .btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .whatsapp-widget-container { bottom: 16px; }
    .whatsapp-widget-left { left: 16px; }
    .whatsapp-widget-right { right: 16px; }
    .whatsapp-chat-box { 
        width: calc(100vw - 32px); 
        bottom: 70px;
    }
}

/* נעילת צבעים במעבר עכבר */
.whatsapp-float-button,
.whatsapp-float-button:hover,
.whatsapp-float-button:focus,
.whatsapp-float-button:active {
    background: #25D366 !important;
    color: #ffffff !important;
}
.whatsapp-float-button svg,
.whatsapp-float-button:hover svg {
    fill: #ffffff !important;
}
.whatsapp-action-button,
.whatsapp-action-button:hover,
.whatsapp-action-button:focus,
.whatsapp-action-button:active {
    background: #25D366 !important;
    color: #ffffff !important;
}
.whatsapp-action-button svg,
.whatsapp-action-button:hover svg {
    fill: #ffffff !important;
}

/* ירושת פונט האתר */
#whatsapp-widget,
#whatsapp-widget .whatsapp-float-button,
#whatsapp-widget .whatsapp-action-button,
#whatsapp-widget .whatsapp-title,
#whatsapp-widget .whatsapp-message,
#whatsapp-widget .whatsapp-close {
    font-family: 'LatinForBirzia', 'birzia', sans-serif !important;
}

