:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --text: #1a1a1a;
  --muted: #64748b;
  --border: #e5e7eb;
  --white: #ffffff;
  --dark: #111827;
  --shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 24px 70px rgba(15, 23, 42, 0.07);
}

/* RESET / PODSTAWY */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.11) 0%, transparent 20%),
    radial-gradient(circle at 88% 20%, rgba(37, 99, 235, 0.10) 0%, transparent 22%),
    radial-gradient(circle at 15% 42%, rgba(37, 99, 235, 0.09) 0%, transparent 20%),
    radial-gradient(circle at 85% 58%, rgba(37, 99, 235, 0.10) 0%, transparent 22%),
    radial-gradient(circle at 12% 78%, rgba(37, 99, 235, 0.09) 0%, transparent 20%),
    radial-gradient(circle at 88% 92%, rgba(37, 99, 235, 0.10) 0%, transparent 22%),
    #ffffff;
  background-attachment: fixed;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
  position: relative;
  background: transparent;
}

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

/* NAWIGACJA */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

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

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 610px;
  padding: 142px 0 88px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto 28px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 740px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PRZYCISKI */
.btn,
.pricing-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn {
  padding: 14px 26px;
  border: 2px solid transparent;
}

.btn:hover,
.pricing-main-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

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

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: white;
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue);
}

/* TYPOGRAFIA SEKCJI */
.section-heading {
  text-align: center;
  margin-bottom: 58px;
}

/* Większy odstęp między opisem sekcji Usługi a orbitą */
.services .section-heading {
  margin-bottom: 90px;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(17px, 1.6vw, 20px);
}

/* SIATKI / KARTY */
.grid {
  display: grid;
  gap: 32px;
}

.project-card,
.process-card {
  background: white;
  border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

/* USŁUGI - 4 KAFELKI NA KRZYŻ */
.services-orbit {
  --distance: 300px;

  position: relative;
  width: 100%;
  max-width: 980px;
  height: 760px;
  margin: 70px auto 0;
}

.services-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  border: 2px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.services-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 650px;
  height: 650px;
  border: 1px dashed rgba(37, 99, 235, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(37, 99, 235, 0.22);
  z-index: 1;
  pointer-events: none;
}

.orbit-line-x {
  width: calc(var(--distance) * 2);
  height: 2px;
  transform: translate(-50%, -50%);
}

.orbit-line-y {
  width: 2px;
  height: calc(var(--distance) * 2);
  transform: translate(-50%, -50%);
}

.orbit-line::before,
.orbit-line::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.10);
}

.orbit-line-x::before {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-line-x::after {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.orbit-line-y::before {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.orbit-line-y::after {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  animation: floatCenter 5s ease-in-out infinite;
  z-index: 3;
}

.orbit-logo {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--text);
}

.orbit-logo span {
  color: var(--blue);
}

.orbit-center p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  z-index: 4;
  text-align: center;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-top {
  transform: translate(-50%, calc(-50% - var(--distance)));
}

.orbit-right {
  transform: translate(calc(-50% + var(--distance)), -50%);
}

.orbit-bottom {
  transform: translate(-50%, calc(-50% + var(--distance)));
}

.orbit-left {
  transform: translate(calc(-50% - var(--distance)), -50%);
}

.orbit-top:hover {
  transform: translate(-50%, calc(-50% - var(--distance) - 8px)) scale(1.03);
}

.orbit-right:hover {
  transform: translate(calc(-50% + var(--distance)), calc(-50% - 8px)) scale(1.03);
}

.orbit-bottom:hover {
  transform: translate(-50%, calc(-50% + var(--distance) - 8px)) scale(1.03);
}

.orbit-left:hover {
  transform: translate(calc(-50% - var(--distance)), calc(-50% - 8px)) scale(1.03);
}

.orbit-card:hover {
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.16);
}

.orbit-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #eff6ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-icon svg {
  width: 29px;
  height: 29px;
}

.orbit-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.orbit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes floatCenter {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

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

.project-card {
  display: block;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.project-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.36), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-body {
  padding: 24px;
}

.project-body span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.project-body h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 10px 0 12px;
}

.project-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.project-body strong {
  color: var(--blue);
  font-size: 15px;
}

/* PROCES */
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card span {
  display: block;
  font-size: 96px;
  line-height: 0.9;
  font-weight: 900;
  color: #dbeafe;
  letter-spacing: -5px;
  margin-bottom: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-card:hover span {
  color: var(--blue);
  transform: translateX(6px);
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* WYCENA */
.pricing-box {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
  color: white;
  padding: clamp(34px, 6vw, 72px);
  min-height: 520px;
}

.pricing-new-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.pricing-badge {
  display: inline-flex;
  width: max-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.pricing-left h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.pricing-left p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
  margin-bottom: 34px;
}

.pricing-main-btn {
  min-height: 62px;
  padding: 0 34px;
  background: white;
  color: var(--blue);
  font-size: 17px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.pricing-right {
  display: grid;
  gap: 22px;
}

.pricing-time-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-time-card::before {
  display: none;
}

.pricing-time {
  display: block;
  font-size: clamp(76px, 9vw, 126px);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.08em;
  color: white;
  margin-bottom: 22px;
}

.pricing-time-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  max-width: 260px;
}

.pricing-features-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing-features-new div {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
}

.pricing-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(6px);
  z-index: 1;
}

.circle-one {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
}

.circle-two {
  width: 180px;
  height: 180px;
  left: 42%;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-dots {
  position: absolute;
  right: 70px;
  top: 70px;
  width: 140px;
  height: 140px;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  z-index: 1;
}

/* KONTAKT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.contact-form-box,
.contact-card {
  min-height: 620px;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-card);
}

.contact-form-box {
  padding: 52px;
}

.contact-form-box h3 {
  font-size: 34px;
  margin-bottom: 34px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe1ea;
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 17px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: white;
}

.contact-form textarea {
  min-height: 190px;
}

.contact-submit {
  width: 100%;
  min-height: 62px;
  margin-top: 8px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  border: 0;
}

.contact-card {
  overflow: hidden;
}

.contact-card-inner {
  height: 100%;
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-card h3 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.contact-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  text-align: left;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
  transition: 0.25s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.contact-action:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.contact-action-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.mail-icon {
  background: #eff6ff;
  color: var(--blue);
}

.whatsapp-icon {
  background: #ecfdf5;
  color: #16a34a;
}

.contact-action > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-action small {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-action strong {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

/* STOPKA */
.footer {
  background: var(--dark);
  color: white;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}

.footer p,
.footer a {
  color: #94a3b8;
  font-size: 15px;
}

.footer h4 {
  margin-bottom: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: inline-block;
  color: white;
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2a2a2a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.25s ease;
}

.socials a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.socials svg {
  width: 23px;
  height: 23px;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

/* STRONY PRAWNE */
.legal-page {
  padding: 150px 0 90px;
}

.legal-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 34px;
  padding: 56px;
  box-shadow: var(--shadow-card);
}

.legal-box h1 {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.legal-box h2 {
  font-size: 26px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-box p,
.legal-box li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-box ul {
  margin-left: 22px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

/* ANIMACJE SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* RESPONSYWNOŚĆ - TABLET */
@media (max-width: 920px) {
  .section {
    padding: 78px 0;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .services-orbit {
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
  }

  .services-orbit::before,
  .services-orbit::after,
  .orbit-line {
    display: none;
  }

  .orbit-center {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    width: 220px;
    height: 220px;
    margin: 0 auto 10px;
    animation: none;
  }

  .orbit-card,
  .orbit-top,
  .orbit-right,
  .orbit-bottom,
  .orbit-left,
  .orbit-top:hover,
  .orbit-right:hover,
  .orbit-bottom:hover,
  .orbit-left:hover {
    position: static;
    transform: none;
    width: auto;
  }

  .orbit-card:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .portfolio-grid,
  .process-grid,
  .pricing-new-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-right {
    max-width: 520px;
  }

  .contact-form-box,
  .contact-card {
    min-height: auto;
  }

  .contact-form-box,
  .contact-card-inner {
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSYWNOŚĆ - TELEFON */
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 74px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .pricing-main-btn {
    width: 100%;
  }

  .services-orbit {
    grid-template-columns: 1fr;
  }

  .orbit-center {
    width: 200px;
    height: 200px;
  }

  .orbit-logo {
    font-size: 28px;
  }

  .orbit-card {
    min-height: auto;
  }

  .project-body {
    padding: 22px;
  }

  .process-card {
    min-height: auto;
    padding: 32px;
  }

  .process-card span {
    font-size: 78px;
  }

  .pricing-box {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .pricing-left h2 {
    font-size: 34px;
  }

  .pricing-left p {
    font-size: 16px;
  }

  .pricing-main-btn {
    min-height: 58px;
    padding: 0 20px;
    font-size: 16px;
  }

  .pricing-time-card {
    padding: 24px;
  }

  .pricing-time {
    font-size: 82px;
  }

  .pricing-features-new {
    grid-template-columns: 1fr;
  }

  .pricing-dots {
    display: none;
  }

  .contact-form-box,
  .contact-card-inner {
    padding: 30px 22px;
  }

  .contact-form-box h3 {
    font-size: 28px;
  }

  .contact-action {
    padding: 16px;
    gap: 16px;
  }

  .contact-action strong {
    font-size: 16px;
  }

  .contact-action-icon {
    width: 52px;
    height: 52px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .legal-page {
    padding: 120px 0 64px;
  }

  .legal-box {
    padding: 30px 22px;
    border-radius: 26px;
  }
}
.social-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.social-icon:hover {
  transform: translateY(-4px);
  background: #3a3a3a;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
body.modal-open main,
body.modal-open header,
body.modal-open footer {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.35);
}

.form-modal.active {
  display: flex;
}

.form-modal-box {
  width: 100%;
  max-width: 440px;
  padding: 42px 34px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
  animation: modalPop 0.25s ease;
}

.form-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #2563ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
}

.form-modal-box h3 {
  margin: 0 0 10px;
  font-size: 30px;
  color: #111827;
}

.form-modal-box p {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
}

.form-modal-box button {
  border: 0;
  border-radius: 14px;
  background: #2563ff;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}