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

:root {
  --primary-dark: #0a0f1c;
  --primary-blue: #0052cc;
  --primary-blue-light: #0065ff;
  --neutral-50: #f8f9fa;
  --neutral-100: #e9ecef;
  --neutral-200: #dee2e6;
  --neutral-300: #ced4da;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  --white: #ffffff;
  --success: #28a745;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* TOP BAR DARK */
.top-bar-dark {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.top-bar-dark a:hover {
  color: #ffffff !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--neutral-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.enterprise-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.enterprise-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--neutral-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-cta {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-blue-light) !important;
}

.hero-enterprise {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.hero-content-enterprise {
  text-align: center;
}

.hero-title-main {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--neutral-700);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.stat-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--neutral-700);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary-enterprise {
  background: var(--primary-blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary-enterprise:hover {
  background: var(--primary-blue-light);
  transform: translateY(-1px);
}

.btn-secondary-enterprise {
  background: var(--white);
  color: var(--primary-blue);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary-blue);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary-enterprise:hover {
  background: var(--neutral-50);
}

.trust-bar {
  background: var(--primary-dark);
  padding: 32px 0;
}

.trust-text {
  text-align: center;
  color: var(--neutral-300);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.badge-item i {
  font-size: 20px;
  color: var(--success);
}

.section-white-enterprise {
  padding: 120px 0;
  background: var(--white);
}

.section-gray-enterprise {
  padding: 120px 0;
  background: var(--neutral-50);
}

.section-header-enterprise {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-label-white {
  color: var(--neutral-300);
}

.section-header-enterprise h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 18px;
  color: var(--neutral-700);
  max-width: 600px;
  margin: 0 auto;
}

.solutions-enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-enterprise-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s;
}

.solution-enterprise-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.solution-icon-enterprise {
  width: 56px;
  height: 56px;
  background: var(--neutral-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-icon-enterprise i {
  font-size: 24px;
  color: var(--primary-blue);
}

.solution-enterprise-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.solution-enterprise-card p {
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list-enterprise {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list-enterprise li {
  padding: 8px 0;
  color: var(--neutral-700);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.feature-list-enterprise li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.link-enterprise {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.link-enterprise:hover {
  gap: 12px;
}

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

.industry-enterprise-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s;
}

.industry-enterprise-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.industry-header-enterprise {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.industry-header-enterprise i {
  font-size: 28px;
  color: var(--primary-blue);
}

.industry-header-enterprise h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.industry-enterprise-card p {
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.compliance-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--neutral-100);
  color: var(--neutral-800);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.tech-grid-enterprise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.tech-card-enterprise {
  background: var(--neutral-50);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
}

.tech-card-enterprise h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.tech-card-enterprise ul {
  list-style: none;
}

.tech-card-enterprise li {
  padding: 8px 0;
  color: var(--neutral-700);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.tech-card-enterprise li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.insight-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s;
}

.insight-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.insight-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.insight-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.insight-card p {
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.section-contact-enterprise {
  padding: 120px 0;
  background: var(--primary-dark);
  color: var(--white);
}

.section-contact-enterprise h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.section-contact-enterprise p {
  color: var(--neutral-300);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-enterprise-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  gap: 16px;
}

.contact-method i {
  font-size: 24px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-method a,
.contact-method span {
  color: var(--neutral-300);
  text-decoration: none;
}

.contact-method a:hover {
  color: var(--white);
}

.social-enterprise {
  display: flex;
  gap: 16px;
}

.social-enterprise a {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: all 0.2s;
}

.social-enterprise a:hover {
  background: var(--primary-blue);
}

.contact-form-enterprise {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  border-color: var(--primary-blue);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit-enterprise {
  width: 100%;
  background: var(--primary-blue);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-submit-enterprise:hover {
  background: var(--primary-blue-light);
}

.footer-enterprise {
  background: var(--neutral-900);
  padding: 60px 0 32px;
  color: var(--neutral-300);
}

.footer-content-enterprise {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-col-enterprise p {
  color: var(--neutral-300);
  line-height: 1.7;
}

.footer-col-enterprise h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col-enterprise ul {
  list-style: none;
}

.footer-col-enterprise li {
  margin-bottom: 12px;
}

.footer-col-enterprise a {
  color: var(--neutral-300);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col-enterprise a:hover {
  color: var(--white);
}

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

.footer-bottom-enterprise p {
  font-size: 14px;
  color: var(--neutral-300);
}

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

.footer-links-enterprise a {
  color: var(--neutral-300);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links-enterprise a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .contact-enterprise-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-content-enterprise {
    grid-template-columns: 1fr 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title-main {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .section-header-enterprise h2 {
    font-size: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content-enterprise {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-enterprise {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* DARK MODE STYLES */
body.dark-mode {
  background: #000000;
  color: #e0e0e0;
}

.dark-nav {
  background: rgba(10, 15, 28, 0.95) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-nav .brand-name {
  color: #ffffff !important;
}

.dark-nav .nav-links a {
  color: #b0b0b0 !important;
}

.dark-nav .nav-links a:hover {
  color: #ffffff !important;
}

.dark-hero {
  background: linear-gradient(180deg, #000000 0%, #0a0f1c 100%) !important;
}

.dark-hero .hero-title-main {
  color: #ffffff !important;
}

.dark-hero .hero-subtitle {
  color: #b0b0b0 !important;
}

.dark-hero .stat-inline .stat-label {
  color: #808080 !important;
}

.section-dark-enterprise {
  background: #0a0a0a !important;
}

.section-darker-enterprise {
  background: #000000 !important;
}

.section-dark-enterprise .section-header-enterprise h2,
.section-darker-enterprise .section-header-enterprise h2 {
  color: #ffffff !important;
}

.section-dark-enterprise .section-description,
.section-darker-enterprise .section-description {
  color: #b0b0b0 !important;
}

.dark-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(0, 82, 204, 0.5) !important;
}

.dark-card h3, .dark-card h4 {
  color: #ffffff !important;
}

.dark-card p, .dark-card li {
  color: #b0b0b0 !important;
}

.dark-card .link-enterprise {
  color: #50a0e0 !important;
}

.dark-tag {
  background: rgba(0, 82, 204, 0.2) !important;
  color: #50a0e0 !important;
  border: 1px solid rgba(0, 82, 204, 0.3) !important;
}

.section-contact-dark {
  background: #0a0a0a !important;
  padding: 120px 0 !important;
}

.dark-footer {
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-footer .footer-brand,
.dark-footer h4 {
  color: #ffffff !important;
}

.dark-footer p,
.dark-footer a {
  color: #808080 !important;
}

.dark-footer a:hover {
  color: #ffffff !important;
}

.insight-meta {
  color: #50a0e0 !important;
}

.tech-card-enterprise.dark-card li::before {
  color: #50a0e0 !important;
}
/* PRODUCT LAUNCH BOX */
.product-launch-box {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(80, 160, 224, 0.1) 100%);
  border: 2px solid rgba(80, 160, 224, 0.3);
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.2);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0052cc, #50a0e0);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.4);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 82, 204, 0.6);
  }
}

.launch-badge i {
  font-size: 14px;
}

.product-launch-box h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-launch-box p {
  color: #b0b0b0;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-explore {
  background: linear-gradient(135deg, #0052cc, #50a0e0);
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3);
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.5);
}

.btn-explore i {
  transition: transform 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

@keyframes bounce-continuous {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(80, 160, 224, 0.4);
    background: rgba(80, 160, 224, 0.1);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(80, 160, 224, 0.6);
    background: rgba(80, 160, 224, 0.25);
  }
}

.learn-more-pulse {
  animation: bounce-continuous 1.5s ease-in-out infinite, glow-pulse 2s ease-in-out infinite;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

/* FOUNDER SHOWCASE SECTION */
.founder-showcase {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-showcase-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image-container {
  position: relative;
}

.founder-photo {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  border: 3px solid rgba(80, 160, 224, 0.3);
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.3);
  transition: all 0.4s ease;
}

.founder-photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 82, 204, 0.5);
  border-color: rgba(80, 160, 224, 0.6);
}

.founder-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0052cc, #50a0e0);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.4);
  animation: float 3s ease-in-out infinite;
}

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

.founder-info {
  padding: 0 20px;
}

.founder-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #50a0e0;
  font-weight: 700;
  margin-bottom: 12px;
}

.founder-name {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.founder-title {
  font-size: 18px;
  color: #808080;
  margin-bottom: 24px;
  font-weight: 500;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 32px;
}

.founder-achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 600;
}

.achievement-item i {
  color: #50a0e0;
  font-size: 20px;
  width: 24px;
}

.founder-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.btn-founder-portfolio {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.15), rgba(80, 160, 224, 0.15));
  border: 2px solid rgba(80, 160, 224, 0.4);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.btn-founder-portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(80, 160, 224, 0.2), transparent);
  transition: left 0.6s ease;
}

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

.btn-founder-portfolio:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 82, 204, 0.4);
  border-color: rgba(80, 160, 224, 0.8);
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.25), rgba(80, 160, 224, 0.25));
}

.btn-founder-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.btn-founder-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0052cc, #50a0e0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.3);
}

.btn-founder-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn-founder-main {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.btn-founder-sub {
  font-size: 13px;
  color: #808080;
  font-weight: 500;
}

.btn-founder-arrow {
  font-size: 20px;
  color: #50a0e0;
  transition: transform 0.3s ease;
}

.btn-founder-portfolio:hover .btn-founder-arrow {
  transform: translateX(8px);
}

.founder-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(80, 160, 224, 0.2);
  border-color: rgba(80, 160, 224, 0.5);
  color: #50a0e0;
  transform: translateY(-3px);
}

.trust-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-footer-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #606060;
  font-weight: 700;
  margin-bottom: 20px;
}

.trust-badges-compact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #808080;
}

.badge-compact i {
  color: #50a0e0;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .founder-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .founder-photo {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}
video {
  background: #000000;
}

video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
