@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Avenir';
    src: url('avenir.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Holographic Tablet Tokens */
:root{
  --ink:#0b2239;
  --ink-2:#3a536b;
  --panel:#f4f9ff;
  --panel-2:#eef6ff;
  --rim:#cfe6ff;
  --glow:#7cc6ff;
  --border:#e1edff;
  --shadow-1:0 12px 28px rgba(9,30,66,.14);
  --shadow-2:0 28px 70px rgba(9,30,66,.18);
  --r-xl:26px; --r-lg:16px; --r-md:12px;
  --device-w: 680px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #000000;
    background: #e8f4fd;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #000000;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
}
/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    min-height: 3.5rem;
    min-width: 280px;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.4);
    color: #000000;
    border: 2px solid transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.1rem 0;
    will-change: transform;
    transform: translateZ(0);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.navbar-hidden {
    transform: translateY(-100%) translateZ(0) !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.75rem;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 2rem;
    color: #000000;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-image {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
    text-decoration: none !important;
}

.nav-link:visited {
    color: #000000 !important;
    text-decoration: none !important;
}

.nav-link:hover {
    color: #000000;
    text-decoration: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: #000000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    text-decoration: none !important;
}

.nav-link:hover::after {
    width: 100%;
    color: #000000;
    text-decoration: none !important;
}

.nav-link.active {
    color: #000000 !important;
    font-weight: 600;
    text-decoration: none !important;
}

.nav-link.active::after {
    width: 100%;
    color: #000000;
    text-decoration: none !important;
}

.nav-link.active:hover {
    color: #000000 !important;
    text-decoration: none !important;
}

.demo-btn,
.nav-link.demo-btn {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.demo-btn:hover,
.nav-link.demo-btn:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.demo-btn:visited,
.nav-link.demo-btn:visited,
.demo-btn:active,
.nav-link.demo-btn:active,
.demo-btn:focus,
.nav-link.demo-btn:focus {
    color: #ffffff !important;
    background: #000000 !important;
}

.demo-btn:hover:visited,
.nav-link.demo-btn:hover:visited {
    color: #ffffff !important;
    background: #1a1a1a !important;
}

.demo-btn::after,
.nav-link.demo-btn::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: transparent;
    border: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(207, 234, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(243, 243, 244, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    justify-self: start;
    width: 100%;
    max-width: 550px;
    margin-left: -7rem;
}

/* Product page hero - full viewport centered text */
body:has(.hero-container > .hero-content:only-child) .hero {
    height: 100vh;
}

body:has(.hero-container > .hero-content:only-child) .hero-container {
    grid-template-columns: 1fr;
    max-width: 1000px;
    text-align: center;
}

body:has(.hero-container > .hero-content:only-child) .hero-content {
    margin-left: 0;
    max-width: 100%;
    justify-self: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #000000;
    letter-spacing: -0.01em;
}

.hero-title {
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 450;
    line-height: 0.9;
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.highlight {
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: #e8f4fd;
    z-index: -1;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    margin-bottom: 3rem;
    color: #333333;
    max-width: 1000px;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

/* Center buttons on product page */
body:has(.hero-container > .hero-content:only-child) .hero-buttons {
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Holographic Tablet Device Styles */
.hero-device{
  margin:0;
  margin-left: 7rem;
  justify-self:start;
  perspective:2000px;
  perspective-origin: center center;
}

.device-frame{
  width:min(var(--device-w), 92vw);
  background: linear-gradient(145deg, #dfe9f3 0%, #d0dfe8 100%);
  border-radius: var(--r-xl);
  position:relative;
  padding:18px;
  transform: rotateY(-15deg);
  box-shadow: 
    0 25px 50px rgba(9,30,66,.12),
    0 10px 25px rgba(9,30,66,.08);
  filter: none;
  transition: transform 0.3s ease;
  isolation:isolate;
}

.device-frame:hover{
  transform: rotateY(-20deg) translateY(-6px);
}

.device-frame::before{
  content:"";
  position:absolute; inset:-3px;
  border-radius: calc(var(--r-xl) + 3px);
  background: linear-gradient(145deg, 
    rgba(235,245,252,0.95) 0%, 
    rgba(215,235,248,0.9) 50%, 
    rgba(200,225,242,0.85) 100%);
  box-shadow:
    0 0 0 2px rgba(220,235,248,0.7),
    0 0 8px 0 rgba(160,200,230,0.15),
    inset 0 1px 1px rgba(255,255,255,0.9);
  z-index:-1;
}

.device-frame::after{
  content:"";
  position:absolute; inset:12px;
  border-radius: calc(var(--r-xl) - 12px);
  box-shadow: 
    inset 0 1px 3px rgba(9,30,66,.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  pointer-events:none;
}

.device-bezel-top{
  display:flex; align-items:center; gap:8px;
  padding:6px 8px;
}
.sensor{display:inline-block; background:#a8bdd1}
.sensor.cam{width:22px; height:14px; border-radius:9px}
.sensor.dot{width:12px; height:12px; border-radius:999px}
.lang-pill{
  margin-left:auto; font: inherit; color:var(--ink);
  background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:6px 10px;
  cursor: pointer;
}

.device-body{
  background: #ffffff;
  border:1px solid var(--border);
  border-radius: calc(var(--r-xl) - 8px);
  padding:0;
  box-shadow: 0 10px 20px rgba(9,30,66,.08);
  overflow: hidden;
  position: relative;
}

.device-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 8px);
}

/* Preview Hint - Subtle hover hint positioned inside the image */
.preview-hint {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.device-frame:hover .preview-hint,
.preview-hint:hover,
.preview-hint:active {
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  border: none;
  box-shadow: none;
}

.device-title{margin:6px 0 6px; font-size:20px; text-align:center; color:var(--ink)}
.device-sub{margin:0 0 18px; font-size:14px; text-align:center; color:var(--ink-2)}

.device-grid{
  display:grid; gap:18px; grid-template-columns:1fr 1fr;
}
.device-card{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; min-height:120px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
  border:1px solid var(--border);
  color:var(--ink); font-weight:600;
  box-shadow: 0 12px 26px rgba(9,30,66,.10);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  cursor: pointer;
}
.device-card--wide{grid-column:1/-1; min-height:110px}
.device-card .ico{font-size:26px; line-height:1}
.device-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(9,30,66,.14);
}

@keyframes floaty{0%,100%{transform: rotateY(-15deg) translateY(0)}
                  50%{transform: rotateY(-15deg) translateY(-4px)}}

@media (max-width: 980px){
  .hero-device{justify-self:stretch}
  .device-frame{transform:none}
  .device-frame:hover{transform:none}
  
  .preview-hint {
    font-size: 0.6rem;
    padding: 0.35rem 0.7rem;
    top: 0.75rem;
  }
}

/* Tablet Mockup Styles */
.tablet-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.15);
}

.tablet-frame {
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
    border-radius: 2.5rem;
    padding: 1.5rem;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    max-width: 650px;
    width: 100%;
    position: relative;
    transform: none;
}

.tablet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.tablet-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.tablet-status {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.tablet-screen {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 0;
    min-height: 420px;
    box-shadow: 
        inset 0 2px 12px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #94a3b8;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-dots {
    display: flex;
    gap: 0.75rem;
}

.card-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-dots span:first-child {
    background: #000000;
}

.card-dots span:nth-child(2) {
    background: rgba(0, 0, 0, 0.6);
}

.card-dots span:last-child {
    background: rgba(0, 0, 0, 0.3);
}

.card-title {
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.interface-preview {
    text-align: center;
}

.category-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.selected-message {
    background: #000000;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1.25rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

section:nth-child(odd) {
    background: rgba(255, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    color: #000000;
}

.section-header p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: -0.01em;
}

/* Problem Section */
.problem {
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.problem-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Communication Gap Section */
.communication-gap {
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.problem-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.problem-stat-card {
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.05);
}

.stat-visual {
    margin-bottom: 1.5rem;
}

.stat-number-large {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
}

.stat-description {
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.stat-source {
    font-size: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.stat-source a {
    color: #333333;
    text-decoration: none;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.stat-source a:hover {
    opacity: 1;
    text-decoration: underline;
}

.impact-quote {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 900px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #000000;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.quote-text strong {
    font-weight: 700;
    color: #000000;
}

.founder-story {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 4rem;
    border-radius: 2rem;
    margin-top: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.founder-story::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    font-family: Georgia, serif;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.story-text p {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

.story-mission {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
    color: #000000;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.story-mission strong {
    font-weight: 700;
}

/* Clinical Demonstrations Section */
.clinical-demos {
    position: relative;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.stat-highlight {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.stat-highlight .stat-number {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-highlight .stat-label {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
}

.stat-highlight .stat-detail {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #333333;
    line-height: 1.5;
}

.demo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.demo-showcase {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.demo-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    margin-top: -20px;
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -50px;
}

.demo-showcase:hover {
    transform: scale(1.05);
}

.demo-caption {
    padding: 2.5rem;
}

.demo-caption h4 {
    color: #000000;
    font-weight: 600;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.demo-caption p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Interaction Methods Section */
.interaction-methods {
    background: rgba(255, 255, 255, 0.4);
    padding: 8rem 0;
}

.interaction-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

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

.interaction-item.reverse {
    direction: rtl;
}

.interaction-item.reverse > * {
    direction: ltr;
}

.interaction-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.interaction-item.reverse .interaction-visual {
    animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.interaction-text {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.interaction-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.interaction-text p {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* Interaction Device Styles */
.interaction-device {
    margin: 0;
    perspective: 2000px;
    perspective-origin: center center;
}

.interaction-frame {
    width: min(800px, 92vw);
    background: linear-gradient(145deg, #dfe9f3 0%, #d0dfe8 100%);
    border-radius: var(--r-xl);
    position: relative;
    padding: 18px;
    box-shadow: 
        0 25px 50px rgba(9,30,66,.12),
        0 10px 25px rgba(9,30,66,.08);
    filter: none;
    transition: transform 0.3s ease;
    isolation: isolate;
}

.interaction-device-right .interaction-frame {
    transform: rotateY(15deg);
}

.interaction-device-left .interaction-frame {
    transform: rotateY(-15deg);
}

.interaction-device-right .interaction-frame:hover {
    transform: rotateY(20deg) translateY(-6px);
}

.interaction-device-left .interaction-frame:hover {
    transform: rotateY(-20deg) translateY(-6px);
}

.interaction-frame::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--r-xl) + 3px);
    background: linear-gradient(145deg, 
        rgba(235,245,252,0.95) 0%, 
        rgba(215,235,248,0.9) 50%, 
        rgba(200,225,242,0.85) 100%);
    box-shadow:
        0 0 0 2px rgba(220,235,248,0.7),
        0 0 8px 0 rgba(160,200,230,0.15),
        inset 0 1px 1px rgba(255,255,255,0.9);
    z-index: -1;
}

.interaction-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: calc(var(--r-xl) - 12px);
    box-shadow: 
        inset 0 1px 3px rgba(9,30,66,.08),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    pointer-events: none;
}

.interaction-body {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: calc(var(--r-xl) - 8px);
    padding: 0;
    box-shadow: 0 10px 20px rgba(9,30,66,.08);
    overflow: hidden;
}

.interaction-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--r-xl) - 8px);
}

/* AI-Powered Data Insights Section */
.ai-insights {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(240, 248, 255, 0.6) 100%);
    padding: 8rem 0;
    position: relative;
}

.insights-visual {
    display: flex;
    justify-content: center;
    margin: 4rem 0 5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Insights Device Styles */
.insights-device {
    margin: 0;
    perspective: 2000px;
    perspective-origin: center center;
}

.insights-frame {
    width: min(1200px, 90vw);
    background: linear-gradient(145deg, #dfe9f3 0%, #d0dfe8 100%);
    border-radius: var(--r-xl);
    position: relative;
    padding: 24px;
    box-shadow: 
        0 30px 60px rgba(9,30,66,.15),
        0 15px 35px rgba(9,30,66,.12);
    filter: none;
    transition: transform 0.3s ease;
    isolation: isolate;
}

.insights-frame:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 40px 80px rgba(9,30,66,.18),
        0 20px 45px rgba(9,30,66,.14);
}

.insights-frame::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--r-xl) + 3px);
    background: linear-gradient(145deg, 
        rgba(235,245,252,0.95) 0%, 
        rgba(215,235,248,0.9) 50%, 
        rgba(200,225,242,0.85) 100%);
    box-shadow:
        0 0 0 2px rgba(220,235,248,0.8),
        0 0 12px 0 rgba(160,200,230,0.2),
        inset 0 1px 1px rgba(255,255,255,0.9);
    z-index: -1;
}

.insights-frame::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--r-xl) - 18px);
    box-shadow: 
        inset 0 2px 4px rgba(9,30,66,.1),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    pointer-events: none;
}

.insights-body {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: calc(var(--r-xl) - 16px);
    padding: 0;
    box-shadow: 0 15px 30px rgba(9,30,66,.12);
    overflow: hidden;
}

.insights-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--r-xl) - 16px);
}

.insights-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.insight-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.insight-content p {
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    background: rgba(255, 255, 255, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0 1.5rem;
    display: block;
}

.step-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Key Outcomes Section */
.outcomes {
    background: rgba(255, 255, 255, 0.3);
}

.outcomes-disclaimer {
    margin-top: 1rem;
    text-align: center;
}

.outcomes-disclaimer small {
    color: #666666;
    font-style: italic;
    font-size: 0.875rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.outcome-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.outcome-number .stat-number {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.outcome-number .stat-suffix {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-left: 0.25rem;
}

.outcome-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.outcome-card p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Product Highlights Section */
.product-highlights {
    background: rgba(255, 255, 255, 0.5);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.highlight-card p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.solution-features {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.feature-text h4 {
    margin-bottom: 0.75rem;
    color: #000000;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.feature-text p {
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.solution-cards {
    display: grid;
    gap: 2rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-preview {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.preview-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.body-diagram {
    text-align: center;
}

.pain-point {
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

.pain-scale {
    font-weight: 600;
    color: #ff4757;
}

/* Social Proof Section */
.social-proof {
    background: rgba(255, 255, 255, 0.3);
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.testimonial-section .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author .author-info h4 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author .author-info span {
    color: #666666;
    font-size: 0.875rem;
}

.credentials-section {
    display: grid;
    gap: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-text h4 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.credential-text p {
    color: #333333;
    margin: 0;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Security & Compliance Section */
.security-compliance {
    background: rgba(255, 255, 255, 0.3);
}

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

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.security-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-item span {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: rgba(255, 255, 255, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border: 2px solid #000000;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pricing-header p {
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #333333;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: #000000;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Advantage Section */
.advantage {
    background: rgba(255, 255, 255, 0.3);
}

.advantage .section-header {
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    width: 100%;
    max-width: 350px;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.advantage-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.advantage-card p {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.65;
    color: #333333;
    margin: 0;
}

/* Competitive Landscape */
.competitive-landscape {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.competitive-landscape h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landscape-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.competitor-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.competitor-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.competitor-image-container {
    width: 100%;
    height: 250px;
    background: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 1rem;
}

.competitor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.competitor-item h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.competitor-limitation {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.competitive-comparison {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.competitor {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.05);
}

.competitor.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.competitor-image {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.competitor-image.voxeasy {
    font-weight: bold;
    color: white;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-header .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-preview {
    margin-top: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.dashboard-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.chart-preview {
    flex: 1;
    height: 40px;
    position: relative;
    min-width: 100px;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    transform: translateY(-50%);
}

.chatbot-preview {
    display: grid;
    gap: 0.5rem;
}

.chat-message {
    padding: 0.7rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.chat-message.patient {
    background: #e3f2fd;
    justify-self: end;
    max-width: 70%;
}

.chat-message.ai {
    background: #f5f5f5;
    justify-self: start;
    max-width: 80%;
}

.keyboard-preview {
    text-align: center;
}

.keyboard-row {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.key {
    width: 35px;
    height: 35px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.speak-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Impact Section */
.impact {
    background: rgba(255, 255, 255, 0.5);
}

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

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-weight: 600;
    margin: 0.5rem 0;
    color: #333;
}

.stat-detail {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.market-size {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.market-stats {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.market-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.market-label {
    font-weight: 700;
    color: #667eea;
}

.market-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.market-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-contact {
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.member-contact a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.member-contact a:hover {
    color: #667eea;
}

.team-structure {
    display: grid;
    gap: 2rem;
}

.structure-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.roles {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.role-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.role-title {
    font-weight: 600;
}

.role-status {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

.team-stats {
    margin-top: 1rem;
}

.stat {
    text-align: center;
    margin-bottom: 1rem;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat .label {
    color: #666;
    font-weight: 600;
}

.universities p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Demo Section */
.demo {
    background: rgba(255, 255, 255, 0.3);
}

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

.demo-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.demo-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 11000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 400px;
    max-width: 90%;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-notification.show {
    top: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.success-content p {
    font-size: 1rem;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

/* Image Preview Modal Styles */
.image-preview-modal {
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
}

.image-preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.preview-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: white;
}

.image-preview-modal .modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10002;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for iframe modal */
@media (max-width: 768px) {
    .image-preview-modal {
        width: 100vw;
        height: 100vh;
        padding: 0;
    }
    
    .preview-iframe {
        border-radius: 0;
    }
    
    .image-preview-modal .modal-close {
        position: fixed;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.modal-content.image-preview-modal {
    max-width: none;
    width: 100vw;
    max-height: none;
    height: 100vh;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000000;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem 3rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
}

.modal-header p {
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    color: #333333;
    margin: 0;
}

.modal-body {
    padding: 2rem 3rem 3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Team Page Styles */
.team-page {
    min-height: 80vh;
    padding: 10rem 0 8rem;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.team-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 4rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.team-structure-card {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.85);
}

.team-tier {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.team-tier:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.team-tier:first-child {
    padding-top: 0;
}

.team-tier h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-info p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: #333333;
    margin-bottom: 0.5rem;
}

.team-info p:last-child {
    margin-bottom: 0;
}

.team-info strong {
    font-weight: 600;
    color: #000000;
}

.founder-link-btn {
    display: inline-block;
    background: #000000;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.75rem;
    margin-left: -0.5rem;
    text-align: center;
}

.founder-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none !important;
}

.founder-link-btn:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.founder-link-btn strong {
    color: #ffffff !important;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-logo .logo-icon {
    color: #ffffff;
    font-size: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 400px;
}

.contact-info {
    display: grid;
    gap: 0.75rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    }
}

/* Utility Classes for Advanced Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.magnetic-hover {
    transition: transform 0.2s ease;
}

.text-gradient {
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container,
    .solution-content,
    .impact-content,
    .demo-content {
        gap: 6rem;
    }
    
    .problem-stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .demo-gallery {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-container {
        padding: 0.4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 100px;
    }
    
    .footer-logo .logo-image {
        height: 50px;
    }
    
    .communication-gap {
        padding: 4rem 0;
    }
    
    .problem-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .problem-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-quote {
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .founder-story {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
    }
    
    .founder-story::before {
        font-size: 4rem;
        top: 1rem;
        left: 1rem;
    }
    
    .clinical-demos {
        padding: 4rem 0;
    }
    
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .stat-highlight {
        padding: 2rem 1.5rem;
    }
    
    .demo-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-image-wrapper {
        height: 250px;
    }
    
    .demo-caption {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger .bar {
        background: #000000;
        width: 28px;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        padding: 8rem 2rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1rem 0;
    }
    
    .demo-btn {
        margin-top: 2rem;
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card {
        max-width: 100%;
        padding: 2rem;
    }
    
    .tablet-frame {
        max-width: 520px;
        padding: 1.25rem;
    }
    
    .tablet-screen {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 3rem;
    }
    
    .solution-content,
    .impact-content,
    .demo-content,
    .team-grid,
    .interaction-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .insights-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interaction-item.reverse {
        direction: ltr;
    }
    
    .interaction-showcase {
        gap: 4rem;
    }
    
    .insights-features {
        gap: 2rem;
    }
    
    .insights-frame {
        width: min(700px, 90vw);
    }
    
    .interaction-device-right .interaction-frame,
    .interaction-device-left .interaction-frame {
        transform: none;
    }
    
    .interaction-device-right .interaction-frame:hover,
    .interaction-device-left .interaction-frame:hover {
        transform: translateY(-6px);
    }
    
    .interaction-frame {
        width: min(650px, 90vw);
    }
    
    .problem-grid,
    .advantage-grid,
    .features-grid,
    .steps-grid,
    .outcomes-grid,
    .highlights-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .problem-card,
    .advantage-card,
    .feature-card,
    .step-card,
    .outcome-card,
    .highlight-card,
    .pricing-card {
        padding: 2rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .competitive-landscape {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }
    
    .competitors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .competitor-image-container {
        height: 220px;
        padding: 0.75rem;
    }
    
    .proof-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .team-page {
        padding: 8rem 0 6rem;
    }
    
    .team-structure-card {
        padding: 3rem 2rem;
    }
    
    .team-tier {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .success-notification {
        min-width: auto;
        width: 90%;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .success-content h3 {
        font-size: 1.25rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0.3rem 1rem;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 85px;
    }
    
    .footer-logo .logo-image {
        height: 45px;
    }
    
    .communication-gap {
        padding: 3rem 0;
    }
    
    .interaction-methods {
        padding: 3rem 0;
    }
    
    .ai-insights {
        padding: 3rem 0;
    }
    
    .insights-visual {
        margin: 2rem 0 3rem;
    }
    
    .interaction-showcase {
        gap: 3rem;
        margin-top: 2rem;
    }
    
    .insights-features {
        gap: 1.5rem;
    }
    
    .insight-feature {
        padding: 1.5rem;
    }
    
    .insights-frame {
        width: min(500px, 88vw);
        padding: 16px;
    }
    
    .interaction-frame {
        width: min(500px, 88vw);
    }
    
    .problem-stats-grid {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .problem-stat-card {
        padding: 1.5rem 1.25rem;
    }
    
    .impact-quote {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .founder-story {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .founder-story::before {
        font-size: 3rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .clinical-demos {
        padding: 3rem 0;
    }
    
    .stats-banner {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-highlight {
        padding: 1.5rem 1.25rem;
    }
    
    .demo-gallery {
        gap: 1.5rem;
    }
    
    .demo-image-wrapper {
        height: 200px;
    }
    
    .demo-caption {
        padding: 1.25rem;
    }
    
    .benefit-item {
        padding: 1rem;
        margin-bottom: 1.25rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .tablet-frame {
        padding: 0.75rem;
    }
    
    .tablet-screen {
        padding: 1rem;
        min-height: 200px;
    }
    
    .image-placeholder {
        height: 150px;
        font-size: 0.875rem;
    }
    
    .category-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 1.25rem 2rem;
    }
    
    .problem-card,
    .advantage-card,
    .feature-card,
    .step-card,
    .outcome-card,
    .highlight-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .competitive-landscape {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .competitor-image-container {
        height: 180px;
        padding: 0.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dashboard-preview {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .chart-preview {
        order: -1;
        margin-bottom: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .team-page {
        padding: 6rem 0 4rem;
    }
    
    .team-title {
        margin-bottom: 3rem;
    }
    
    .team-structure-card {
        padding: 2rem 1.5rem;
    }
    
    .team-tier {
        padding: 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .chart-preview {
        order: -1;
        margin-bottom: 1rem;
    }
}

/* ===========================
   PRODUCT PAGE STYLES
   =========================== */

/* Product Hero */
.product-hero-new {
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.product-hero-content-new {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.product-hero-new h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-stat {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

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

.problem-stat h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #555;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #3498db;
    font-size: 1.5rem;
}

.problem-impact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.impact-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
}

.impact-box.highlight {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.impact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact-box p {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: #2c3e50;
    font-style: italic;
}

.solution-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.solution-feature.reverse {
    direction: rtl;
}

.solution-feature.reverse > * {
    direction: ltr;
}

.solution-demo {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background: white;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-visual {
    flex: 1;
}

.feature-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mockup-header {
    background: #f5f5f5;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    font-weight: 600;
    color: #333;
}

.mockup-lang {
    font-size: 0.875rem;
    color: #666;
}

.mockup-content {
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bubble {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 80%;
}

.chat-bubble p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.mockup-keyboard {
    padding: 2rem;
    background: #f9f9f9;
}

.keyboard-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.keyboard-row button {
    min-width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.keyboard-row button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.keyboard-row button.space {
    flex: 1;
    max-width: 300px;
}

.keyboard-row.bottom {
    margin-bottom: 1rem;
}

.speak-button {
    background: #1a1a1a;
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.speak-button:hover {
    background: #333;
    transform: scale(1.02);
}

.mockup-tabs {
    display: flex;
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    gap: 1.5rem;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.mockup-tabs span {
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.mockup-tabs span.active {
    color: #3498db;
    font-weight: 600;
}

.feature-description h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-detail {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
}

.feature-full-width {
    margin-top: 4rem;
}

.feature-image-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.feature-full-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.feature-full-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.feature-full-description h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-tagline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
}

/* Why VoxEasy Section */
.why-voxeasy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2c3e50;
}

.why-circle-diagram {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    background: #1a1a1a;
    color: white;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10;
}

.center-circle h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

.orbit-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-300px) rotate(calc(-1 * var(--angle)));
}

.orbit-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.orbit-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.orbit-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.orbit-content p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}

/* Competitive Advantage Section */
.competitive-advantage-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle-large {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 600;
}

.advantage-boxes {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
}

.advantage-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.advantage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
}

.advantage-list strong {
    font-size: 1.25rem;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.advantage-list p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Competitive Landscape Section */
.competitive-landscape-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.competitor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.competitor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.competitor-issue {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.competitor-image-placeholder {
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hardware-icon,
.complex-icon,
.static-icon {
    font-size: 4rem;
    opacity: 0.3;
}

/* Real World Section */
.real-world-section {
    padding: 80px 0;
    background: white;
}

.real-world-content {
    max-width: 1100px;
    margin: 0 auto;
}

.validation-points {
    margin-bottom: 4rem;
}

.validation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.validation-icon {
    font-size: 2rem;
    color: #27ae60;
    font-weight: bold;
    flex-shrink: 0;
}

.validation-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.impact-metrics h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.metric-detail {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* Market Size Section */
.market-size-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
}

.market-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    color: #2c3e50;
}

.market-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.market-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.market-box.tam {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.market-box.sam {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.market-box.som {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.market-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.market-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.market-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.globe-illustration {
    font-size: 4rem;
    text-align: center;
    margin-top: 2rem;
}

/* GTM Section */
.gtm-section {
    padding: 80px 0;
    background: white;
}

.gtm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gtm-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid #3498db;
}

.gtm-card.full-width {
    grid-column: 1 / -1;
}

.gtm-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.gtm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.gtm-card p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.gtm-detail {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D8E9F0 0%, #B8D4E1 100%);
}

.team-structure {
    max-width: 900px;
    margin: 0 auto;
}

.team-tier {
    margin-bottom: 3rem;
}

.team-tier h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-tier.founder .team-member {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.team-tier.executives .team-member {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.team-tier.interns .team-member {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.25rem;
    font-weight: 600;
}

.member-desc {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* CTA Section */
.product-cta-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-new h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-new p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.btn-primary-large {
    background: #3498db;
    color: white;
}

.btn-primary-large:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Responsive Design for Product Page */
@media (max-width: 1024px) {
    .solution-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-feature.reverse {
        direction: ltr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .why-circle-diagram {
        height: auto;
        padding: 50px 0;
    }
    
    .orbit-item {
        position: static;
        transform: none;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .center-circle {
        position: static;
        width: 100%;
        height: auto;
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .competitors-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-diagram {
        grid-template-columns: 1fr;
    }
    
    .gtm-grid {
        grid-template-columns: 1fr;
    }
    
    .executives-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero-new h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-impact {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
}

