:root {
  --primary: #F59E0B;
  --accent: #FBBF24;
  --dark: #020617;
  --secondary: #111827;
  --panel: #0B1120;
  --panel-soft: #0F172A;
  --white: #FFFFFF;
  --muted: #CBD5E1;
  --muted-2: #94A3B8;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(245, 158, 11, 0.36);
  --teal: #22D3EE;
  --green: #34D399;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --header-height: 82px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 6%, rgba(245, 158, 11, 0.14), transparent 22rem),
    radial-gradient(circle at 86% 4%, rgba(34, 211, 238, 0.08), transparent 20rem),
    linear-gradient(180deg, #020617 0%, #050816 44%, #020617 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--accent);
  color: #111827;
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.58);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(17, 24, 39, 0.92));
  color: var(--accent);
  font-size: 0.84rem;
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.18);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 6px;
  color: var(--muted);
  padding: 0 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--white);
}

.nav-links a::after {
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  content: "";
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.72);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #111827;
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(245, 158, 11, 0.34);
}

.btn-outline {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(245, 158, 11, 0.04);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.12);
}

.section-shell,
.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 68px 0 72px;
}

.hero::before,
.hero::after,
.section::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
  right: 8%;
  bottom: 2%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 50%;
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 span:first-child,
.section-heading h2 strong,
.footer-brand {
  color: var(--accent);
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: 900;
}

.intro {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row span,
.highlight-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: var(--muted);
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-row span::before,
.highlight-list span::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: end center;
}

.hero-visual img {
  width: min(430px, 100%);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.45));
}

.hero-visual::before {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: -1;
  width: min(420px, 84%);
  height: 64%;
  transform: translateX(-50%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(17, 24, 39, 0.12));
  box-shadow: inset 0 0 60px rgba(245, 158, 11, 0.08), var(--shadow);
  content: "";
}

.orbit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 168px;
  min-height: 62px;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.76);
  color: var(--muted);
  padding: 12px;
  box-shadow: var(--shadow);
  animation: floatCard 5.2s ease-in-out infinite;
}

.orbit-card-one {
  top: 62px;
  left: 0;
}

.orbit-card-two {
  right: 0;
  bottom: 96px;
  animation-delay: 1.4s;
}

.mini-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #111827;
  font-size: 0.72rem;
  font-weight: 950;
}

.orbit-card strong {
  color: var(--white);
  font-size: 0.86rem;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-counters {
  position: relative;
  z-index: 2;
  margin-top: 34px;
}

.counter-card {
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(11, 17, 32, 0.78));
  padding: 26px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(11, 17, 32, 0.9));
}

.counter-card span {
  display: block;
  color: var(--accent);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.counter-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}

.section:nth-of-type(even) {
  background: rgba(17, 24, 39, 0.44);
}

.section::before {
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 88% 8%, rgba(245, 158, 11, 0.09), transparent 23rem);
}

.section-number {
  position: absolute;
  top: 54px;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-size: 7.2rem;
  font-weight: 950;
  line-height: 1;
}

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

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.about-copy p,
.process-step p,
.service-card p,
.portfolio-card p,
.pricing-card p,
.testimonial-card p,
.accordion-panel p,
.site-footer p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media::after {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  content: "";
}

.experience-tile {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 172px;
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.84);
  padding: 16px;
  backdrop-filter: blur(16px);
}

.experience-tile strong {
  display: block;
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

.experience-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

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

.mini-stat-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  padding: 18px 12px;
}

.mini-stat-grid strong {
  display: block;
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
}

.mini-stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.42);
  padding: 28px;
}

.skill-item {
  min-width: 0;
}

.skill-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.skill-meta strong {
  color: var(--accent);
}

.skill-track {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.skill-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.28);
  transition: width 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-grid,
.portfolio-grid,
.pricing-grid,
.testimonial-grid,
.process-timeline {
  display: grid;
  gap: 18px;
}

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

.service-card,
.pricing-card,
.testimonial-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(11, 17, 32, 0.84));
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.process-step:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  margin-bottom: 22px;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card ul,
.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
}

.service-card li,
.pricing-card li {
  position: relative;
  color: var(--muted);
  font-size: 0.91rem;
  padding-left: 20px;
}

.service-card li::before,
.pricing-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.text-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.05);
  color: var(--accent);
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.text-link::after {
  content: ">";
  transition: transform 0.2s ease;
}

.text-link:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.portfolio-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.08);
}

.portfolio-content {
  padding: 22px;
}

.portfolio-content span,
.package-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-timeline {
  grid-template-columns: repeat(3, 1fr);
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 220px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(245, 158, 11, 0.9);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.process-step::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
  content: "";
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(245, 158, 11, 0.74);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(11, 17, 32, 0.9));
  box-shadow: 0 24px 70px rgba(245, 158, 11, 0.15);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #111827;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 950;
}

.price {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.package-copy {
  min-height: 78px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

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

.quote-mark {
  color: var(--accent);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 0.82;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(245, 158, 11, 0.72);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author span {
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.82);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
}

.accordion-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 50%;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: stretch;
}

.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.84);
  padding: 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-wide {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.7);
  color: var(--white);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.field-error {
  border-color: #F87171;
}

.hp-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-card h3 {
  margin-bottom: 4px;
  font-size: 1.7rem;
}

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

.contact-list a,
.contact-list address {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.54);
  color: var(--white);
  padding: 15px;
  font-style: normal;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-list a:hover {
  border-color: var(--line-strong);
  background: rgba(245, 158, 11, 0.09);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #020617;
  padding: 54px 0 24px;
}

.site-footer::before {
  position: absolute;
  right: 4%;
  bottom: 0;
  color: rgba(255, 255, 255, 0.035);
  content: "NAZIRA BUILDS";
  font-size: 6rem;
  font-weight: 950;
  line-height: 0.78;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto 32px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.footer-inner p {
  max-width: 470px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.copyright {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 50%;
  background: var(--primary);
  color: #111827;
  font-size: 1.1rem;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .nav-panel {
    gap: 14px;
  }

  .nav-links a {
    padding: 0 7px;
    font-size: 0.82rem;
  }

  .services-grid,
  .portfolio-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  body.menu-open::before {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.72);
    content: "";
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    z-index: 101;
    display: grid;
    max-height: calc(100dvh - 100px);
    overflow: auto;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.98);
    padding: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    min-height: 46px;
    padding: 0 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .hero-visual img {
    width: min(390px, 92%);
  }

  .orbit-card-one {
    top: 38px;
    left: 4px;
  }

  .orbit-card-two {
    right: 4px;
    bottom: 72px;
  }

  .counter-grid,
  .mini-stat-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .navbar,
  .section-shell,
  .section-inner,
  .footer-inner,
  .copyright {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding: 40px 0 58px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-number {
    top: 38px;
    font-size: 4.6rem;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-footer .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 338px;
  }

  .hero-visual img {
    width: min(305px, 88%);
  }

  .orbit-card {
    width: 136px;
    min-height: 54px;
    padding: 9px;
  }

  .orbit-card strong {
    font-size: 0.76rem;
  }

  .mini-icon {
    width: 30px;
    height: 30px;
  }

  .counter-grid,
  .mini-stat-grid,
  .services-grid,
  .portfolio-grid,
  .process-timeline,
  .pricing-grid,
  .testimonial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: auto;
  }

  .counter-card {
    min-height: 112px;
    padding: 22px 18px;
  }

  .skills-grid,
  .service-card,
  .pricing-card,
  .testimonial-card,
  .process-step,
  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .featured-badge {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }

  .about-media::after {
    inset: 12px -8px -8px 12px;
  }

  .experience-tile {
    right: 12px;
    bottom: 12px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer::before {
    font-size: 3.2rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-text,
  .section-heading p {
    font-size: 0.95rem;
  }

  .badge-row span,
  .highlight-list span {
    width: 100%;
  }

  .orbit-card {
    display: none;
  }

  .hero-visual {
    min-height: 300px;
  }

  .counter-card span,
  .price {
    font-size: 2.3rem;
  }

  .contact-list a,
  .contact-list address {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
