:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-muted: #4D4D4D;
  --color-primary: #000000;
  --color-accent: #41B6E6;
  --color-accent-hover: #0092D1;
  --color-border: #D9D9D9;
  --color-card-bg: #E1F3F8;
  --color-highlight: #E1F3F8;
  --color-star-red: #E4002B;
  --font-display: "Big Shoulders Display", "Inter", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --container-max: 1120px;
  --section-padding: 6rem 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-star {
  color: var(--color-star-red);
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: var(--color-highlight);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.badge-star {
  color: var(--color-star-red);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

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

.about-bio {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-highlight {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.about-highlight-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-highlight);
  border-radius: 8px;
  color: var(--color-accent);
}

.about-highlight-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}

.about-highlight-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Section */
.section {
  padding: var(--section-padding);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
}

/* Star Divider */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  color: var(--color-border);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-card.featured {
  border-color: var(--color-accent);
  background: var(--color-highlight);
}

.service-tier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.75rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.service-card .btn {
  width: 100%;
  text-align: center;
}

/* About / Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-highlight);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-step p a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color 0.2s;
}

.process-step p a:hover {
  color: var(--color-accent-hover);
}

/* CTA Section */
.cta {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 5rem 0;
}

.cta .section-label {
  color: var(--color-accent);
}

.cta .section-title {
  color: #fff;
}

.cta p {
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 2rem;
}

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

.cta .btn-primary:hover {
  background: var(--color-accent-hover);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  text-align: center;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-footer p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-social {
  color: var(--color-text-muted);
  transition: color 0.2s;
  display: flex;
}

.footer-social:hover {
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  nav {
    gap: 1rem;
  }
}
