:root {
  --primary: #e84e00;
  --primary-dark: #cc3b00;
  --primary-soft: rgba(232, 78, 0, 0.06);
  --primary-border: rgba(232, 78, 0, 0.2);
  --primary-glow: rgba(232, 78, 0, 0.35);
  --bg: #f9fafb;
  --surface: #ffffff;
  --text: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --line: #e5e7eb;
  --footer-bg: #111827;
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(232, 78, 0, 0.14), transparent 16%),
    radial-gradient(circle at 25% 18%, rgba(255, 109, 63, 0.1), transparent 24%),
    var(--bg);
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: #f3f4f6;
}

.nav-link svg,
.btn svg,
.job-meta svg,
.feature-list svg,
.price-features svg,
.view-all svg,
.tag-list span svg,
.faq-item summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.nav-link.active {
  background: #fff7ed;
  color: var(--primary);
}

.nav-link.active svg {
  stroke-width: 2.5;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-contact .year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.header-contact a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.header-contact a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ef 100%);
  padding: 128px 0 80px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(84px);
}

.hero::before {
  top: 44px;
  right: 28px;
  width: 360px;
  height: 360px;
  background: rgba(232, 78, 0, 0.12);
}

.hero::after {
  bottom: 60px;
  left: 24px;
  width: 420px;
  height: 420px;
  background: rgba(255, 109, 63, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow-pill svg {
  width: 16px;
  height: 16px;
  color: #f97316;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: var(--primary-soft);
  color: #ea580c;
  font-size: 0.875rem;
  font-weight: 500;
}

.eyebrow-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ea580c;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.accent-line {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #ff6b35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-underline {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 12px;
}

.hero-text,
.section-copy p,
.centered-head p,
.service-card p,
.cta-card p,
.section-subtext {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 36rem;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(232, 78, 0, 0.18);
}

.btn-secondary {
  background: var(--surface);
  color: #374151;
  border-color: #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
  filter: none;
}

.btn-dark {
  background: #1f2937;
  color: #fff;
}

.btn-dark:hover {
  background: #111827;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 40px;
  height: 40px;
  margin-left: -12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid #fff;
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(1) { background: var(--primary); z-index: 4; }
.avatars span:nth-child(2) { background: #ff6b35; z-index: 3; }
.avatars span:nth-child(3) { background: #cc3b00; z-index: 2; }
.avatars span:nth-child(4) { background: #ff8c5a; z-index: 1; }

.avatars svg {
  width: 16px;
  height: 16px;
}

.rating-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fb923c;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.rating-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.hero-panel-wrap {
  position: relative;
  display: block;
}

.hero-panel-glow {
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 10px);
  background: rgba(232, 78, 0, 0.12);
  filter: blur(48px);
}

.hero-panel {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.08);
}

.action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(243, 244, 246, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 146, 60, 0.35);
  background: rgba(255, 247, 237, 0.55);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.08);
}

.action-card + .action-card {
  margin-top: 16px;
}

.action-icon,
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #ea580c;
  background: rgba(232, 78, 0, 0.1);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.action-card:hover .action-icon,
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.action-icon svg,
.service-icon svg {
  width: 20px;
  height: 20px;
}

.action-body {
  flex: 1;
  min-width: 0;
}

.action-body h3,
.job-card h3,
.service-card h3,
.cta-card h3,
.section-copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.action-body p,
.job-card > p {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.action-arrow {
  width: 16px;
  height: 16px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.action-card:hover .action-arrow {
  color: #ea580c;
}

.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.mission,
.jobs,
.services,
.plans,
.faq,
.contact {
  padding: 80px 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.centered-head h2,
.faq h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-copy p {
  margin: 20px 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-list,
.price-features {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li,
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
}

.feature-list .check-icon,
.price-features .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 78, 0, 0.12);
  color: #ea580c;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-list .check-icon svg,
.price-features .check-icon svg {
  width: 12px;
  height: 12px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head p,
.centered-head p {
  margin-top: 8px;
  font-size: 0.875rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ea580c;
  font-size: 0.875rem;
  font-weight: 600;
}

.view-all:hover {
  text-decoration: underline;
}

.jobs {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-card,
.service-card,
.cta-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-card {
  padding: 22px;
}

.job-card:hover,
.service-card:hover,
.cta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 146, 60, 0.35);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-card h3 {
  font-size: 1rem;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

.job-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.tag.green { background: #ecfdf5; color: #059669; }
.tag.gray { background: #f3f4f6; color: #6b7280; }
.tag.blue { background: #eff6ff; color: #2563eb; }
.tag.teal { background: #ecfeff; color: #0891b2; }
.tag.yellow { background: #fffbeb; color: #d97706; }
.tag.purple { background: #faf5ff; color: #9333ea; }
.tag.slate { background: #f1f5f9; color: #475569; }

.job-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #fb923c);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.centered-head {
  max-width: 42rem;
  margin: 0 auto 48px;
  text-align: center;
}

.centered-head p:last-child {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 20px;
}

.service-card:hover {
  border-color: #fb923c;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-top: 16px;
}

.service-card p {
  margin: 8px 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
}

.dual-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cta-card {
  padding: 28px;
  text-align: center;
}

.cta-card p {
  max-width: 28rem;
  margin: 8px auto 20px;
  font-size: 0.875rem;
}

.plans {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.package-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.package-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.package-card__header {
  background: #1a1a1a;
  padding: 18px 16px 14px;
  text-align: center;
}

.package-card__header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.package-card__header h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--primary);
}

.package-card__price {
  background: #2b2b2b;
  padding: 20px 16px;
  text-align: center;
  color: #fff;
}

.package-card__price strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.package-card__price span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: lowercase;
}

.package-card__price--contact strong {
  font-size: 2rem;
}

.package-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  background: #fff;
}

.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #1a1a1a;
}

.package-card__features li:last-child {
  border-bottom: 0;
}

.package-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-check svg {
  width: 12px;
  height: 12px;
}

.package-card__footer {
  background: #ebebeb;
  padding: 18px 16px;
}

.package-card__btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}

.package-card__btn:hover {
  filter: brightness(1.08);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 32px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea580c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.contact {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(232, 78, 0, 0.1);
  color: #ea580c;
  flex: 0 0 48px;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h3,
.footer-column h3 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: #ea580c;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-form label {
  display: block;
}

.contact-form label + label,
.contact-form .form-row + label {
  margin-top: 16px;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.875rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d1d5db;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fb923c;
}

.contact-form button {
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius-md);
}

.site-footer {
  background: var(--footer-bg);
  color: #d1d5db;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 20rem;
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #9ca3af;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f2937;
  color: #d1d5db;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-column a {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ea580c;
}

.footer-column p {
  margin: 0;
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ea580c;
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .job-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .package-card:nth-child(4),
  .package-card:nth-child(5) {
    grid-column: span 1;
  }

  .dual-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-wrap {
    display: none;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .header-contact {
    align-items: center;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .hero-actions,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:nth-child(2) {
    border-right: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .stat-item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .btn {
    width: 100%;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}
