:root {
  /* Color Palette - Vibrant yet Professional */
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #ec4899;
  --accent: #f59e0b;
  --success: #10b981;
  --dark: #0f172a;
  --light: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-700: #334155;
  --white: #ffffff;

  /* Printing CMYK Inspired Accents */
  --cmyk-c: #00ffff;
  --cmyk-m: #ff00ff;
  --cmyk-y: #ffff00;
  --cmyk-k: #000000;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --container-max: 1280px;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Navigation */
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.logo-name {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000;
}

.logo-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

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

/* Hero Section */
.hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: var(--space-sm);
  background: linear-gradient(to right, var(--dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--slate-700);
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.hero-visual {
  position: relative;
}

.main-logo-showcase {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
}

/* The actual Logo Design Implementation */
.brand-logo-large {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.brand-icon-design {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-main-rect {
  width: 60px;
  height: 80px;
  border: 4px solid #334155;
  border-radius: 4px;
  background: #fff;
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
}

.logo-inner-rect {
  position: absolute;
  top: 12px;
  right: -12px;
  width: 50px;
  height: 60px;
  border: 2px solid var(--primary);
  background: rgba(37, 99, 235, 0.05);
  border-radius: 2px;
}

.pixel-grid {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 2px;
}

.pixel-box {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.cmyk-dots {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

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

.dot-c { background: var(--cmyk-c); }
.dot-m { background: var(--cmyk-m); }
.dot-y { background: var(--cmyk-y); }

.brand-typography {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.85;
  color: #000;
  letter-spacing: -0.06em;
}

.brand-suffix {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--primary);
  font-weight: 800;
  margin-top: 8px;
}

/* Features Section */
section {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.service-item {
  display: flex;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md);
  border-radius: 16px;
  align-items: center;
}

.service-visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--slate-200), var(--slate-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

/* Stats */
.stats-banner {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-lg) 0;
  border-radius: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--slate-300);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer */
footer {
  margin-top: var(--space-xl);
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: var(--space-lg) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand p {
  margin-top: var(--space-sm);
  color: var(--slate-700);
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: var(--space-sm);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--slate-700);
  transition: color 0.2s;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text {
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto var(--space-md);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
