:root {
  --ink: #0a1020;
  --muted: #626b7c;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --paper: #f6f9ff;
  --blue: #0b63f6;
  --blue-dark: #0649bb;
  --blue-soft: #dcebff;
  --navy: #07142e;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(20, 53, 112, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 92% 20%, rgba(222, 228, 255, 0.9) 0, rgba(222, 228, 255, 0) 33%),
    radial-gradient(circle at 18% 66%, rgba(218, 239, 255, 0.72) 0, rgba(218, 239, 255, 0) 35%),
    linear-gradient(145deg, #f9fbff 0%, #f2f6ff 48%, #f7f4ff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

body,
button,
input,
select,
textarea {
  min-width: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button,
input,
select,
textarea {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(11, 99, 246, 0.42);
  outline-offset: 4px;
}

.contact :focus-visible,
.pricing :focus-visible,
footer :focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
  position: relative;
  background: transparent;
}

.section-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ambient {
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.ambient-one {
  width: 520px;
  height: 520px;
  right: -270px;
  top: 80px;
  background: radial-gradient(circle, rgba(45, 129, 255, 0.19), transparent 70%);
}

.ambient-two {
  width: 500px;
  height: 500px;
  left: -330px;
  top: 800px;
  background: radial-gradient(circle, rgba(35, 123, 255, 0.12), transparent 72%);
}

.topbar {
  width: min(1180px, calc(100% - 48px));
  height: 76px;
  margin: 20px auto 0;
  padding: 0 14px 0 18px;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 40px rgba(18, 43, 90, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, #1776ff, #084cc5);
  box-shadow: 0 9px 20px rgba(11, 99, 246, 0.24), inset 0 1px rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #3f4756;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--blue);
  transition: right 220ms ease;
}

.nav-links a:hover::after {
  right: 0;
}

.desktop-cta {
  justify-self: end;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 99, 246, 0.25);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 18px 36px rgba(11, 99, 246, 0.32);
}

.button svg,
.text-link svg,
.round-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 46px;
  padding: 0 17px;
}

.button-ghost {
  border-color: #cad4e4;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--blue);
  background: #f6f9ff;
  box-shadow: none;
}

.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5fa;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 720px;
  padding: 102px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18b66e;
  box-shadow: 0 0 0 5px rgba(24, 182, 110, 0.12);
  animation: pulse 2.4s ease-out infinite;
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 24px;
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.067em;
  font-weight: 820;
}

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

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid #b7bfcb;
  color: #343c49;
  font-size: 14px;
  font-weight: 720;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.text-link.blue {
  color: var(--blue);
  border-color: rgba(11, 99, 246, 0.32);
}

.trust-row {
  max-width: 660px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-row strong {
  font-size: 18px;
  letter-spacing: -0.035em;
}

.trust-row span {
  color: #7b8494;
  font-size: 11px;
}

.hero-stage {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.hero-stage::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4597ff 0, #0b63f6 42%, #0646ae 100%);
  box-shadow: 0 45px 90px rgba(11, 99, 246, 0.3);
  animation: stageFloat 6s ease-in-out infinite;
}

.stage-ring {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(11, 99, 246, 0.18);
  border-radius: 50%;
}

.ring-one {
  width: 500px;
  height: 500px;
  animation: spin 35s linear infinite;
}

.ring-two {
  width: 580px;
  height: 580px;
  border-style: dashed;
  animation: spin 45s linear infinite reverse;
}

.laptop-card {
  width: 480px;
  height: 330px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 70px rgba(3, 25, 67, 0.35);
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(1deg);
  animation: cardFloat 5.6s ease-in-out infinite;
}

.browser-bar {
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e9edf3;
  background: rgba(249, 251, 253, 0.95);
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6dce5;
}

.browser-bar span:first-child {
  background: #ff6a67;
}

.browser-bar span:nth-child(2) {
  background: #ffc65c;
}

.browser-bar span:nth-child(3) {
  background: #4dce7a;
}

.laptop-content {
  padding: 20px 25px;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.mock-nav .logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  margin-right: auto;
  font-size: 7px;
}

.mock-nav i {
  width: 31px;
  height: 4px;
  border-radius: 9px;
  background: #d8dfe9;
}

.mock-hero {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.mock-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mock-copy small {
  width: 66px;
  height: 5px;
  border-radius: 10px;
  background: #6ca3f8;
}

.mock-copy b {
  width: 180px;
  height: 14px;
  margin-top: 12px;
  border-radius: 5px;
  background: #102140;
}

.mock-copy b.short {
  width: 132px;
  margin-top: 6px;
}

.mock-copy p {
  width: 160px;
  height: 24px;
  margin: 14px 0 13px;
  border-radius: 5px;
  background: repeating-linear-gradient(#d8dfe8 0 4px, transparent 4px 8px);
}

.mock-copy button {
  width: 82px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
}

.mock-art {
  width: 150px;
  height: 145px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 24px 55px 25px 50px;
  background: linear-gradient(145deg, #0b63f6, #68aaff);
  transform: rotate(4deg);
}

.mock-art::before,
.mock-art span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.mock-art::before {
  inset: 18px;
}

.mock-art span:first-child {
  width: 28px;
  height: 28px;
  right: 16px;
  top: 18px;
}

.mock-art span:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 20px;
  bottom: 24px;
}

.mock-art strong {
  color: white;
  font-size: 27px;
  transform: rotate(-4deg);
}

.mock-cards {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-cards i {
  height: 42px;
  border: 1px solid #e4e9f0;
  border-radius: 9px;
  background: #fafbfd;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(8, 35, 81, 0.2);
  backdrop-filter: blur(16px);
  color: #25324a;
  font-size: 12px;
  font-weight: 750;
}

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

.chip-bottom {
  left: -14px;
  bottom: 48px;
  animation: chipFloat 4.8s 1s ease-in-out infinite;
}

.intro,
.projects,
.process,
.faq {
  padding: 132px 0;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.intro-grid {
  margin-top: 22px;
}

.intro h2,
.section-heading h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.058em;
}

.intro-copy p,
.section-heading > p,
.faq-title > p,
.contact-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.benefit-grid {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.benefit-grid article {
  padding: 34px 40px 4px 0;
  position: relative;
}

.benefit-grid article + article {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.benefit-grid article span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 35px 0 13px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.projects {
  padding-top: 45px;
}

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

.section-heading .section-kicker {
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: 680px;
  font-size: clamp(40px, 4.8vw, 62px);
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 5px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.project-card:first-child {
  grid-column: 1 / -1;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: #c6d5ee;
  box-shadow: var(--shadow);
}

.project-visual {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eaf3ff;
}

.project-card:first-child .project-visual {
  height: 390px;
}

.project-visual .browser-bar {
  width: calc(100% - 56px);
  margin: 28px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  background: rgba(255, 255, 255, 0.78);
}

.preview-nav,
.preview-copy,
.preview-foot {
  width: calc(100% - 56px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.preview-nav {
  height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.preview-nav i {
  width: 44px;
  height: 8px;
  margin-right: auto;
  border-radius: 8px;
  background: currentColor;
}

.preview-nav b {
  width: 34px;
  height: 4px;
  border-radius: 8px;
  background: currentColor;
  opacity: 0.25;
}

.preview-copy {
  min-height: 155px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.68);
}

.project-card:first-child .preview-copy {
  min-height: 230px;
  padding-top: 55px;
}

.preview-copy span {
  width: 64px;
  height: 5px;
  margin-bottom: 13px;
  border-radius: 9px;
  background: currentColor;
  opacity: 0.6;
}

.preview-copy strong {
  width: 210px;
  height: 15px;
  margin-bottom: 7px;
  border-radius: 6px;
  background: currentColor;
}

.preview-copy strong.short {
  width: 155px;
}

.preview-copy em {
  width: 78px;
  height: 25px;
  margin-top: 17px;
  border-radius: 7px;
  background: currentColor;
  opacity: 0.75;
}

.preview-orb {
  width: 190px;
  height: 190px;
  position: absolute;
  z-index: 3;
  right: 12%;
  top: 105px;
  border-radius: 58% 42% 47% 53%;
  background: currentColor;
  opacity: 0.9;
  transform: rotate(12deg);
  box-shadow: 0 20px 50px rgba(2, 20, 60, 0.18);
}

.project-card:not(:first-child) .preview-orb {
  width: 125px;
  height: 125px;
  right: 9%;
  top: 118px;
}

.preview-orb::after {
  content: "";
  position: absolute;
  inset: 21%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.preview-foot {
  height: 52px;
  padding: 12px 20px;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
}

.preview-foot span {
  flex: 1;
  border: 1px solid currentColor;
  border-radius: 7px;
  opacity: 0.14;
}

.wash {
  color: #075adf;
  background: linear-gradient(135deg, #d9eaff, #f4f9ff 68%);
}

.groom {
  color: #8a4ac7;
  background: linear-gradient(135deg, #efe2ff, #fff8fc 68%);
}

.food {
  color: #ff7448;
  background: linear-gradient(135deg, #231510, #503223 68%);
}

.food .preview-nav,
.food .preview-copy,
.food .preview-foot,
.food .browser-bar {
  background: rgba(19, 12, 9, 0.88);
}

.project-meta {
  min-height: 208px;
  padding: 30px 30px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.project-meta > div > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 9px 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.project-meta p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.round-arrow {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.project-card:hover .round-arrow {
  color: #fff;
  background: var(--blue);
  transform: rotate(-15deg);
}

.pricing {
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.pricing::before {
  content: "";
  width: 700px;
  height: 700px;
  position: absolute;
  left: 50%;
  top: -500px;
  border: 1px solid rgba(90, 158, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 180px rgba(11, 99, 246, 0.2), 0 0 0 120px rgba(11, 99, 246, 0.025), 0 0 0 240px rgba(11, 99, 246, 0.02);
  transform: translateX(-50%);
}

.pricing .section-wrap {
  position: relative;
  z-index: 2;
}

.section-heading.light .section-kicker {
  color: #68a8ff;
}

.section-heading.light > p {
  color: #9ba9c3;
}

.pricing-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 34px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 240ms ease, background 240ms ease;
}

.price-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.price-card.featured {
  border-color: rgba(97, 163, 255, 0.62);
  background: linear-gradient(180deg, rgba(24, 103, 221, 0.25), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.27);
}

.popular {
  padding: 7px 11px;
  position: absolute;
  right: 19px;
  top: 19px;
  border-radius: 30px;
  color: #bcd8ff;
  background: rgba(43, 123, 245, 0.21);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-top > span {
  color: #7daeff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-top h3 {
  margin: 9px 0 13px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.price-top p {
  min-height: 72px;
  margin: 0;
  color: #9ba9c3;
  font-size: 13px;
  line-height: 1.7;
}

.price {
  margin: 31px 0 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price span {
  color: #8190aa;
  font-size: 10px;
  line-height: 1.45;
}

.price-card ul {
  min-height: 214px;
  margin: 0 0 25px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7deeb;
  font-size: 12px;
}

.price-card li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  flex: 0 0 auto;
  fill: none;
  stroke: #7eb2ff;
  stroke-width: 2;
  background: rgba(80, 148, 249, 0.13);
}

.price-card .button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}

.price-card .button-ghost:hover {
  border-color: #5b9eff;
  color: #fff;
  background: rgba(80, 148, 249, 0.1);
}

.pricing-note {
  margin: 30px 0 0;
  text-align: center;
  color: #7f8ca5;
  font-size: 12px;
}

.pricing-note a {
  color: #aaccff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  min-height: 155px;
  padding: 35px 10px;
  display: grid;
  grid-template-columns: 0.25fr 0.75fr 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.process-list article:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: #f7faff;
}

.process-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 100px;
}

.faq-title h2 {
  margin: 18px 0 23px;
  font-size: 52px;
}

.faq-title > p {
  max-width: 380px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: #edf4ff;
  font-size: 19px;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -8px 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  animation: faqIn 220ms ease both;
}

.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.contact::before {
  content: "";
  width: 660px;
  height: 660px;
  position: absolute;
  left: -250px;
  bottom: -410px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.035), 0 0 0 200px rgba(255, 255, 255, 0.02);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
  align-items: center;
}

.contact .section-kicker {
  color: #c5dcff;
}

.contact h2 {
  margin: 20px 0 25px;
  font-size: clamp(45px, 5vw, 66px);
}

.contact-copy > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-direct {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-direct a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 750;
}

.socials {
  margin-top: 28px;
  display: flex;
  gap: 19px;
}

.socials a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 70px rgba(3, 33, 90, 0.28);
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form label {
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #344057;
  font-size: 11px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  outline: 0;
  border: 1px solid #dce3ed;
  border-radius: 11px;
  color: var(--ink);
  background: #f9fbfd;
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #71a8ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.09);
}

.contact-form small {
  margin-top: 12px;
  display: block;
  color: #8790a0;
  text-align: center;
  font-size: 10px;
}

footer {
  padding: 38px 0;
  color: #c5cfdf;
  background: #061024;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
}

footer .brand {
  color: #fff;
}

footer p {
  margin: 0;
  color: #7f8da6;
  font-size: 12px;
}

footer div > div {
  display: flex;
  gap: 22px;
  font-size: 12px;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #57647c;
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--delay, 0ms) cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms var(--delay, 0ms) cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.hero-enter {
  opacity: 0;
  animation: heroEnter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-one { animation-delay: 100ms; }
.delay-two { animation-delay: 190ms; }
.delay-three { animation-delay: 280ms; }
.delay-four { animation-delay: 370ms; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(24, 182, 110, 0.12); }
  50% { box-shadow: 0 0 0 9px rgba(24, 182, 110, 0); }
}

@keyframes stageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

@keyframes cardFloat {
  0%, 100% { transform: rotateY(-10deg) rotateX(4deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(3deg) rotateZ(0deg) translateY(-12px); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-stage {
    min-height: 590px;
  }

  .intro-grid,
  .section-heading {
    gap: 60px;
  }

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

  .price-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }

  .price-top,
  .price {
    grid-column: 1;
  }

  .price-card ul {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 0;
    padding-top: 35px;
  }

  .price-card .button {
    grid-column: 1 / -1;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  .section-wrap,
  .topbar {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    height: 68px;
    grid-template-columns: 1fr auto;
    margin-top: 12px;
    top: 8px;
  }

  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    padding: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 9px);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
    animation: faqIn 180ms ease both;
  }

  .nav-links a {
    min-height: 48px;
    padding: 13px 8px;
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 72px 0 60px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 68px);
    line-height: 1.01;
  }

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

  .trust-row {
    margin-top: 42px;
    gap: 9px;
  }

  .trust-row strong {
    font-size: 15px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .hero-stage {
    min-height: 440px;
    transform: scale(0.88);
    margin: -15px -40px -30px;
  }

  .hero-stage::before {
    width: 360px;
    height: 360px;
  }

  .laptop-card {
    width: 410px;
    height: 300px;
  }

  .ring-one { width: 420px; height: 420px; }
  .ring-two { width: 490px; height: 490px; }

  .intro,
  .projects,
  .process,
  .faq {
    padding: 90px 0;
  }

  .intro-grid,
  .section-heading,
  .faq,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-grid {
    margin-top: 17px;
  }

  .intro h2,
  .section-heading h2,
  .faq h2,
  .contact h2 {
    font-size: 43px;
  }

  .benefit-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .benefit-grid h3 {
    margin-top: 15px;
  }

  .projects {
    padding-top: 10px;
  }

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

  .project-card:first-child {
    grid-column: auto;
  }

  .project-card:first-child .project-visual,
  .project-visual {
    height: 285px;
  }

  .project-card:first-child .preview-copy {
    min-height: 155px;
    padding-top: 32px;
  }

  .project-card:first-child .preview-orb {
    width: 125px;
    height: 125px;
    right: 9%;
    top: 118px;
  }

  .pricing {
    padding: 95px 0 70px;
  }

  .pricing-grid {
    margin-top: 45px;
  }

  .price-card {
    display: flex;
  }

  .price-card ul {
    min-height: 0;
    padding-top: 0;
  }

  .process-list article {
    padding: 28px 5px;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-list h3 {
    font-size: 19px;
  }

  .process-list p {
    grid-column: 2 / -1;
  }

  .faq {
    padding-top: 0;
  }

  .faq-title {
    position: static;
  }

  .contact {
    padding: 90px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-direct a {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  footer small {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .section-wrap,
  .topbar {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    padding-left: 12px;
    padding-right: 10px;
    border-radius: 16px;
  }

  .brand > span:last-child {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .text-link {
    width: fit-content;
    align-self: center;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(39px, 12.5vw, 56px);
    letter-spacing: -0.058em;
  }

  .intro h2,
  .section-heading h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(34px, 11vw, 43px);
  }

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

  .trust-row div:last-child {
    grid-column: 1 / -1;
  }

  .hero-stage {
    transform: scale(0.7);
    margin: -70px -100px -80px;
  }

  .project-visual .browser-bar,
  .preview-nav,
  .preview-copy,
  .preview-foot {
    width: calc(100% - 30px);
  }

  .preview-orb,
  .project-card:first-child .preview-orb {
    right: 1%;
  }

  .project-meta {
    padding: 24px;
    gap: 16px;
  }

  .project-meta h3 {
    font-size: 23px;
  }

  .round-arrow {
    width: 40px;
    height: 40px;
  }

  .price-card {
    padding: 26px 22px;
  }

  .popular {
    position: static;
    width: fit-content;
    margin: -4px 0 18px;
  }

  .price-top p {
    min-height: 0;
  }

  .price {
    flex-wrap: wrap;
  }

  .process-list article {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .faq-list summary {
    font-size: 15px;
  }

  .contact-form {
    padding: 22px 16px;
    border-radius: 18px;
  }

  footer div > div,
  .socials {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  .hero-enter {
    opacity: 1;
    transform: none;
  }
}


/* Statyczny pakiet JakubWeb */
.logo-image {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.mock-nav .logo-image {
  width: 24px;
  height: 24px;
  margin-right: auto;
}
