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

:root {
  --primary: #533afd;
  --primary-deep: #4434d4;
  --primary-press: #2e2b8c;
  --primary-soft: #665efd;
  --primary-bg-subdued-hover: #b9b9f9;
  --brand-dark-900: #1c1e54;
  --ink: #0a1929;
  --ink-secondary: #1a2844;
  --ink-mute: #4a5568;
  --canvas: #f5f5f5;
  --canvas-soft: #f0f2f5;
  --canvas-cream: #f5e9d4;
  --hairline: #dfe3e8;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --lemon: #9b6829;
  --shadow-blue: #003770;
  --on-primary: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas-soft);
}

header {
  background: linear-gradient(135deg, var(--brand-dark-900) 0%, var(--ink) 100%);
  color: var(--on-primary);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-svg {
  height: 50px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: var(--on-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

nav a:hover {
  color: var(--primary-soft);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-soft);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 96px 48px;
  background: var(--canvas);
}

.hero {
  position: relative;
  padding: 120px 48px 96px 48px;
  background: linear-gradient(135deg, var(--canvas-soft) 0%, rgba(83, 58, 253, 0.05) 50%, var(--canvas-soft) 100%);
  overflow: hidden;
  margin-top: -20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(83, 58, 253, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

h1 {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: var(--brand-dark-900);
}

.tagline {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing: -0.48px;
}

.hero-description {
  font-size: 16px;
  color: var(--ink-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.64px;
  margin-bottom: 48px;
  color: var(--ink);
}

h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--ink-secondary);
  line-height: 1.8;
}

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

.service-card {
  background: linear-gradient(135deg, var(--canvas) 0%, rgba(83, 58, 253, 0.02) 100%);
  border: none;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 37, 61, 0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(83, 58, 253, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  box-shadow: 0 20px 48px rgba(83, 58, 253, 0.15);
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--canvas) 0%, rgba(83, 58, 253, 0.04) 100%);
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  border-radius: 12px;
  transition: transform 0.3s ease-out;
  transform-origin: center;
  will-change: transform;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-dark-900);
}

.service-card p {
  font-size: 15px;
  color: var(--ink-secondary);
  margin: 0;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}

.about-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.about-content p {
  margin-bottom: 16px;
}

.values-list {
  list-style: none;
  margin: 24px 0;
}

.values-list li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.values-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.about-card {
  background: linear-gradient(135deg, var(--canvas-soft) 0%, var(--canvas-cream) 100%);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 32px;
}

.about-card h3 {
  margin-top: 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--on-primary);
  padding: 12px 28px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.cta-link:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(83, 58, 253, 0.2);
}

.cta-link:active {
  background: var(--primary-press);
  transform: translateY(0);
}

.badge {
  display: inline-block;
  background: var(--primary-bg-subdued-hover);
  color: var(--primary-deep);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
  margin-bottom: 16px;
}

footer {
  background: var(--brand-dark-900);
  color: var(--on-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 48px 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
  font-weight: 500;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: -0.72px;
  }

  h2 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .tagline {
    font-size: 18px;
  }

  nav {
    gap: 24px;
  }

  section {
    padding: 100px 20px;
  }

  .hero {
    padding: 80px 20px 100px 20px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom a {
    margin-left: 0;
  }
}
