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

:root {
  --primary: #1a1a2e;
  --accent: #4f46e5;
  --accent-light: #6366f1;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border: #e5e7eb;
  --radius: 10px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent-light); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; text-decoration: none; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--accent-light); }

.hero p {
  font-size: 1.15rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: #fff;
  text-decoration: none;
}

/* SECTIONS */
section { padding: 5rem 2rem; }
section:nth-of-type(even) { background: var(--bg-soft); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.service-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

/* PRICING TABLE */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  background: var(--bg);
  transition: box-shadow 0.2s;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 99px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card .scope {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount sup {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
}

.pricing-currency {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-item .icon { font-size: 1.1rem; margin-top: 2px; }

.contact-item p { color: var(--muted); font-size: 0.9rem; }
.contact-item strong { display: block; color: var(--text); font-size: 0.95rem; }

/* FOOTER */
footer {
  background: var(--primary);
  color: #9ca3af;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.875rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

footer .footer-links a { color: #9ca3af; }
footer .footer-links a:hover { color: #fff; }

/* POLICY PAGES */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.policy-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.policy-content .last-updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.policy-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.25rem 0 0.75rem;
}

.policy-content p, .policy-content li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.policy-content ul { padding-left: 1.5rem; }
.policy-content ul li { margin-bottom: 0.5rem; }

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .hero { padding: 4rem 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
}
