/* HOKEKA Marketing Website - Burgundy & Gold Theme */

:root {
  --burgundy: #800020;
  --burgundy-dark: #6d1d2c;
  --burgundy-darker: #3d0a14;
  --burgundy-light: #a3244a;
  --burgundy-pale: #fdf2f4;
  --burgundy-lighter: #fce7eb;
  --gold: #FFD700;
  --gold-light: #ffe03d;
  --gold-dark: #ccac00;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.gradient-text {
  background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light), var(--burgundy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--burgundy);
  transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--burgundy-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.navbar.scrolled .nav-links a:not(.btn-primary) {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:not(.btn-primary):hover {
  color: var(--burgundy);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--burgundy);
  cursor: pointer;
  padding: 0.5rem;
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--burgundy);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 50%, #f8d0d9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23800020' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(128, 0, 32, 0.1);
  border-radius: 9999px;
  border: 1px solid rgba(128, 0, 32, 0.2);
  color: var(--burgundy);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--burgundy-darker);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--burgundy-dark);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-badges {
  padding-top: 2rem;
  border-top: 1px solid rgba(128, 0, 32, 0.1);
}

.trust-badges p {
  color: var(--burgundy-light);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badges span {
  color: var(--burgundy-dark);
  font-weight: 600;
}

/* Dashboard Preview */
.dashboard-preview {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 215, 0, 0.2);
}

.dashboard-header {
  background: var(--burgundy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-controls span:nth-child(1) { background: #ef4444; }
.window-controls span:nth-child(2) { background: #eab308; }
.window-controls span:nth-child(3) { background: #22c55e; }

.dashboard-title {
  color: var(--gold);
  font-weight: 600;
}

.dashboard-body {
  padding: 1.5rem;
  background: var(--gray-100);
}

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

.stat-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.stat-icon.blue { background: #3b82f6; }
.stat-icon.red { background: #ef4444; }
.stat-icon.green { background: #22c55e; }

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.chart-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.chart-header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.chart-header span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--burgundy), var(--burgundy-light));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #fdf2f4 0%, #fce7eb 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(128, 0, 32, 0.1);
  border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

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

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

.stat-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(128, 0, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--burgundy);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
}

.stat-title {
  color: var(--burgundy-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-desc {
  color: var(--burgundy-light);
  font-size: 0.875rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--burgundy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 1rem 0;
  line-height: 1.2;
}

.section-header h2 .highlight {
  color: var(--burgundy);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: white;
}

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

.feature-card {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--burgundy);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: var(--gray-50);
}

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

.step-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  position: relative;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-200);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.step-icon.blue { background: #3b82f6; }
.step-icon.burgundy { background: var(--burgundy); }
.step-icon.gold { background: var(--gold); color: var(--burgundy-dark); }
.step-icon.green { background: #22c55e; }

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Industries */
.industries {
  padding: 6rem 0;
  background: white;
}

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

.industry-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--gray-50), white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--burgundy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.industry-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Compliance Section */
.compliance {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

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

.compliance-content .section-label {
  color: var(--gold);
}

.compliance-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.compliance-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-weight: 500;
}

.compliance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-card h3 {
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.compliance-card ul {
  list-style: none;
}

.compliance-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: white;
}

.cta-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-bg::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--burgundy-light);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 10;
  padding: 4rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-contact a:hover {
  color: var(--gold);
}

/* Footer */
.footer {
  background: var(--burgundy-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: white;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.footer-links h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges .badges {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .dashboard-preview {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a:not(.btn-primary) {
    color: var(--gray-800);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .industries-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .compliance-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    padding: 2rem;
  }
  
  .cta-content h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
}
