/* Global setup */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --navy: #0f172a;
  --navy-2: #111827;
  --text: #0b1424;
  --muted: #4b5563;
  --border: #e5e7eb;
  --card: #f9fafb;
  --background: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

* {
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

section {
  padding: 88px 24px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header p {
  margin-top: 12px;
}

/* Buttons */
.btn {
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  font-size: 15px;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

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

.btn.secondary {
  background: #eef2ff;
  color: var(--primary-dark);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.btn:active {
  transform: translateY(0);
}

/* Navigation */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 233, 242, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}

.top-nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.top-nav nav a {
  color: var(--muted);
  padding: 10px;
  border-radius: 10px;
}

.top-nav nav a:hover {
  color: var(--text);
  background: #f0f4ff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.9)), radial-gradient(circle at 80% 0%, rgba(14, 116, 144, 0.2), rgba(15, 23, 42, 0.9)), var(--navy);
  color: var(--white);
  padding: 120px 32px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 2px, transparent 0);
  background-size: 38px 38px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text .pill {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 48px);
  margin: 14px 0;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.media-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 520px;
}

.media-card img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.card-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.icon-square {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  font-size: 22px;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin: 0;
}

/* Why */
.why {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
  padding: 88px 24px;
}

.why-text img {
  margin-top: 22px;
  width: 100%;
  object-fit: cover;
  height: 340px;
}

.why-cards {
  display: grid;
  gap: 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

/* Pricing */
.pricing {
  background: var(--white);
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.price-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.price-card .subtitle {
  margin-bottom: 18px;
}

.price {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
}

.price span {
  font-size: 15px;
  color: var(--muted);
}

.price-card .hours {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card ul {
  margin-bottom: 22px;
}

.price-card .custom {
  font-size: 30px;
}

/* Testimonials */
.testimonials {
  background: var(--background);
}

.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  position: relative;
}

.quote-mark {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonial-meta h4 {
  margin: 0 0 2px;
}

.testimonial-meta span {
  color: var(--muted);
}

/* CTA */
.cta {
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.95)), radial-gradient(circle at 80% 0%, rgba(14, 116, 144, 0.25), rgba(15, 23, 42, 0.95)), #0f172a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 2px, transparent 0);
  background-size: 42px 42px;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.cta-info h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 34px);
  margin-bottom: 10px;
}

.cta-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin: 16px 0 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.label {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.detail {
  color: var(--white);
  font-weight: 700;
}

.expectations {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.expectations h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.expectations ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  gap: 8px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.contact-form h3 {
  margin-bottom: 12px;
}

.contact-form form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  background: #f8fafc;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

/* Footer */
.site-footer {
  background: #0b1221;
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 32px 40px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.footer-brand h4 {
  color: var(--white);
  margin: 0 0 6px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.footer-links h5 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .top-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .top-nav nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  section {
    padding: 64px 18px;
  }

  .hero {
    padding: 100px 18px;
  }

  .top-nav nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .price-card .badge {
    left: 0;
    transform: none;
    right: 0;
    margin: 0 auto;
    width: fit-content;
  }
}
