@charset "UTF-8";
.portfolio-cta, .case-intro, .case-grid, .faq, .contact-section, .pricing, .cta-block, .process, .solutions, .local-business, .problem, .section--white, .section--alt {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .portfolio-cta, .case-intro, .case-grid, .faq, .contact-section, .pricing, .cta-block, .process, .solutions, .local-business, .problem, .section--white, .section--alt {
    padding: 6rem 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

:root {
  --ease: 0.25s ease;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text, #1a1a2e);
  background-color: #e8ecf4;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 100vw;
  overflow-x: hidden;
}

.main--with-header-offset {
  padding-top: 3rem;
}
@media (min-width: 1024px) {
  .main--with-header-offset {
    padding-top: 4rem;
  }
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-primary, #0d47a1);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  color: #4a4a6a;
  max-width: 65ch;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

.section-title .subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6f00;
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.section--white {
  background: #ffffff;
}

.section--alt {
  background: #e8ecf4;
}

.section__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .section__inner {
    padding: 0 3rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-muted {
  color: #4a4a6a;
}

.layout-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .layout-container {
    padding: 0 3rem;
  }
}

.layout-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .layout-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .layout-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .layout-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.layout-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .layout-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .layout-split--reverse {
    direction: rtl;
  }
}

@media (min-width: 1024px) {
  .layout-split--reverse > * {
    direction: ltr;
  }
}

.navbar {
  max-width: 100%;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: #ffffff;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
  min-height: 56px;
}

.logo img,
img.logo {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.toogle_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 26px;
  min-width: 44px;
  min-height: 44px;
  padding: 9px;
  margin: -9px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  box-sizing: content-box;
}

.toogle_menu span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: 50% 50%;
  background: #0d1117;
}

.toogle_menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: rgb(255, 255, 255);
}

.toogle_menu.active span:nth-child(2) {
  opacity: 0;
}

.toogle_menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: rgb(255, 255, 255);
}

.nav_mobile {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--ease);
  z-index: 1000;
  background: rgba(13, 17, 23, 0.98);
  color: #ffffff;
  padding: 4rem 3rem;
}

.nav_mobile a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.nav_mobile a:not(.btn)[aria-current=page] {
  background: #ff6f00;
  color: #ffffff;
}

.nav_mobile.active {
  transform: translateX(0);
}

.nav_desktop {
  display: none;
}

@media (min-width: 1024px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .nav {
    min-height: 72px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .toogle_menu {
    display: none;
  }
  .nav_mobile {
    display: none;
  }
  .nav_desktop {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  .nav_desktop__link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a1a2e;
    padding: 1rem 1.5rem;
    text-decoration: none;
    position: relative;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
  }
  .nav_desktop__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #1056bf;
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav_desktop__link:hover {
    color: #1056bf;
    background: rgba(16, 86, 191, 0.08);
  }
  .nav_desktop__link:hover::after {
    transform: scaleX(1);
  }
  .nav_desktop__link[aria-current=page] {
    color: #1056bf;
    background: rgba(16, 86, 191, 0.12);
    font-weight: 700;
  }
  .nav_desktop__link[aria-current=page]::after {
    transform: scaleX(1);
    height: 3px;
  }
  .logo img,
  img.logo {
    height: 80px;
  }
}
.site-footer {
  background: #0d1117;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.site-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding: 0 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-brand .site-logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: #1056bf;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 86, 191, 0.4);
}

.btn--primary:hover {
  background: #0131a0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 86, 191, 0.5);
}

.btn--primary.nav-cta {
  background: #5472d3;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(84, 114, 211, 0.35);
}

.btn--primary.nav-cta:hover {
  background: #1056bf;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 86, 191, 0.5);
}

.btn--accent {
  background: #ff6f00;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 111, 0, 0.4);
}

.btn--accent:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.btn--outline {
  background: transparent;
  color: #1056bf;
  border: 2px solid #1056bf;
}

.btn--outline:hover {
  background: #1056bf;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  border-radius: 20px;
}

.btn--block {
  width: 100%;
}

.btn--block-mobile {
  width: 100%;
}
@media (min-width: 1024px) {
  .btn--block-mobile {
    width: auto;
  }
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.1);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 86, 191, 0.1);
  color: #1056bf;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  margin: 0;
}

.card--highlight {
  border-color: #1056bf;
  box-shadow: 0 4px 24px rgba(16, 86, 191, 0.12);
}

.card--highlight .card__icon {
  background: #1056bf;
  color: #ffffff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: #c62828;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(26, 26, 46, 0.15);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #1056bf;
  box-shadow: 0 0 0 4px rgba(16, 86, 191, 0.15);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 74, 106, 0.7);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 44px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #1056bf;
  flex-shrink: 0;
}

.form-checkbox span {
  font-size: 0.875rem;
  color: #4a4a6a;
}

.form-checkbox a {
  color: #1056bf;
  text-decoration: underline;
}

.form-hint {
  font-size: 0.8125rem;
  color: #4a4a6a;
  margin-top: 0.5rem;
}

.form-error {
  font-size: 0.8125rem;
  color: #c62828;
  margin-top: 0.5rem;
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: #c62828;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 -4px 24px rgba(26, 26, 46, 0.12);
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.cookie-consent[hidden],
html[data-cookie-consent=accepted] .cookie-consent,
html[data-cookie-consent=rejected] .cookie-consent {
  display: none;
}

.cookie-consent__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9375rem;
  color: #4a4a6a;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .cookie-consent__text {
    font-size: 1rem;
    max-width: 60ch;
  }
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-consent__btn {
  flex: 1;
  min-width: 140px;
}
@media (min-width: 1024px) {
  .cookie-consent__btn {
    flex: none;
  }
}

.hero {
  padding: 4rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(16, 86, 191, 0.03) 0%, rgba(16, 86, 191, 0.08) 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0;
    min-height: 90vh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(16, 86, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .hero__inner {
    padding: 0 3rem;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6f00;
  background: rgba(255, 111, 0, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 strong {
  color: #1056bf;
}

.hero__lead {
  font-size: 1.125rem;
  color: #4a4a6a;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .hero__lead {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.25rem;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero__cta {
    justify-content: flex-start;
  }
}

.hero__media {
  position: relative;
}

.hero__image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(26, 26, 46, 0.12);
  background: rgba(16, 86, 191, 0.05);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 86, 191, 0.08) 0%, rgba(16, 86, 191, 0.04) 100%);
  color: #4a4a6a;
  font-size: 0.875rem;
}

.hero--compact {
  min-height: auto;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .hero--compact {
    padding: 4rem 0;
  }
}

.page-torun .torun-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(16, 86, 191, 0.03) 0%, rgba(16, 86, 191, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.page-torun .torun-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .page-torun .torun-hero__inner {
    padding: 0 3rem;
  }
}
.page-torun .torun-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.page-torun .torun-hero__content {
  text-align: left;
}

.page-torun .torun-hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6f00;
  background: rgba(255, 111, 0, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.page-torun .torun-hero__content h1 {
  margin-bottom: 1.5rem;
}

.page-torun .torun-hero__lead {
  font-size: 1.0625rem;
  color: #4a4a6a;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.page-torun .torun-hero__content .problem__list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.page-torun .torun-hero__content .problem__list li {
  margin-bottom: 0.3rem;
}

.page-torun .torun-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-torun .torun-hero__cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .page-torun .torun-hero__inner {
    max-width: 52rem;
  }
  .page-torun #main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-torun #main-content > section > * {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
.problem {
  background: #ffffff;
}

.problem__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .problem__inner {
    padding: 0 3rem;
  }
}

.problem .section-title {
  margin-bottom: 3rem;
}

.problem__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.problem__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem__list {
  margin-top: 2rem;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  font-size: 1rem;
  color: #4a4a6a;
}

.problem__list li:last-child {
  border-bottom: none;
}

.problem__list li::before {
  content: "!";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 6px;
}

.problem__media {
  order: -1;
}
@media (min-width: 1024px) {
  .problem__media {
    order: 0;
  }
}

.problem__image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.1);
  background: rgba(26, 26, 46, 0.04);
}

.problem__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.06) 0%, rgba(198, 40, 40, 0.02) 100%);
  color: #4a4a6a;
  font-size: 0.875rem;
}

.local-business {
  background: #ffffff;
}

.local-business__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .local-business__inner {
    padding: 0 3rem;
  }
}
.local-business__inner {
  display: flex;
  justify-content: center;
}

.local-business__content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

.local-business__content p {
  text-align: center;
  font-size: 1.0625rem;
  color: #4a4a6a;
  margin: 0;
}

@media (min-width: 1024px) {
  .local-business__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.solutions {
  background: #e8ecf4;
}

.solutions__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .solutions__inner {
    padding: 0 3rem;
  }
}
.solutions__inner {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solutions .section-title {
  margin-bottom: 3rem;
}

.solutions__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .solutions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solutions__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: all 0.25s ease;
}

.solutions__card:hover {
  box-shadow: 0 12px 40px rgba(16, 86, 191, 0.1);
  transform: translateY(-4px);
  border-color: rgba(16, 86, 191, 0.2);
}

.solutions__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1056bf 0%, #0131a0 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.solutions__card h3 {
  margin-bottom: 0.5rem;
}

.solutions__card p {
  font-size: 0.9375rem;
  margin: 0;
}

.solutions__cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.process {
  background: #e8ecf4;
}

.process__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .process__inner {
    padding: 0 3rem;
  }
}

.process .section-title {
  margin-bottom: 4rem;
}

.process__steps {
  display: grid;
  gap: 3rem;
  position: relative;
}
@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.process__step:nth-child(n) {
  background: #ffffff;
}

@media (min-width: 1024px) {
  .process__steps::before {
    content: "";
    position: absolute;
    left: 48px;
    right: 48px;
    top: 48px;
    height: 2px;
    background: linear-gradient(to right, #1056bf 0%, rgba(16, 86, 191, 0.3) 100%);
    z-index: 0;
  }
}
.process__step {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: #e8ecf4;
  border-radius: 20px;
  border: 2px solid rgba(16, 86, 191, 0.1);
  transition: all 0.25s ease;
}

.process__step:hover {
  border-color: #1056bf;
  box-shadow: 0 8px 24px rgba(16, 86, 191, 0.12);
}

.process__step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1056bf;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process__step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-size: 0.875rem;
  margin: 0;
}

.process__cta {
  text-align: center;
  margin-top: 4rem;
}

.cta-block {
  background: linear-gradient(135deg, #1056bf 0%, #0131a0 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.cta-block__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .cta-block__inner {
    padding: 0 3rem;
  }
}
.cta-block__inner {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

.cta-block .btn--accent {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-block .btn--accent:hover {
  background: #e65100;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.cta-block__secondary {
  margin-top: 1.5rem;
}

.cta-block__secondary a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-block__secondary a:hover {
  color: #ffffff;
}

.pricing {
  background: #e8ecf4;
}

.pricing__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .pricing__inner {
    padding: 0 3rem;
  }
}

.pricing .section-title {
  margin-bottom: 4rem;
}

.pricing__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.pricing__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  border: 2px solid rgba(26, 26, 46, 0.08);
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  border-color: rgba(16, 86, 191, 0.3);
  box-shadow: 0 12px 40px rgba(16, 86, 191, 0.12);
  transform: translateY(-4px);
}

.pricing__card--featured {
  border-color: #1056bf;
  box-shadow: 0 8px 32px rgba(16, 86, 191, 0.2);
}

.pricing__card--featured::before {
  content: "Najczęściej wybierany pakiet";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6f00;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing__card-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing__card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1056bf;
  margin-bottom: 2rem;
}

.pricing__card-price span {
  font-size: 1rem;
  font-weight: 600;
  color: #4a4a6a;
}

.pricing__card-list {
  flex: 1;
  margin-bottom: 3rem;
}

.pricing__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #4a4a6a;
}

.pricing__card-list li::before {
  content: "✓";
  color: #1056bf;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__card .btn {
  margin-top: auto;
}

.pricing__cta {
  margin-top: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-section {
  background: #ffffff;
}

.contact-section__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .contact-section__inner {
    padding: 0 3rem;
  }
}
.contact-section__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 6rem;
  }
}

.contact-section__info h1 {
  margin-bottom: 1.5rem;
}

.contact-section__info > p {
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.contact-section__details {
  margin-bottom: 3rem;
}

.contact-section__details p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.contact-section__details a {
  color: #1056bf;
  font-weight: 600;
}

.contact-section__form-wrap {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.contact-section__form-wrap h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-section__form .btn {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.0625rem;
}

.contact-section__image {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(16, 86, 191, 0.05);
}

.contact-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a6a;
  font-size: 0.875rem;
}

.faq {
  background: #ffffff;
}

.faq__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .faq__inner {
    padding: 0 3rem;
  }
}

.faq .section-title {
  margin-bottom: 3rem;
}

.faq__grid {
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .faq__grid {
    margin-bottom: 2rem;
  }
}

.faq__grid:last-child {
  margin-bottom: 0;
}

.faq__item {
  padding: 2rem;
  background: #e8ecf4;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item:hover {
  border-color: rgba(16, 86, 191, 0.2);
  box-shadow: 0 4px 16px rgba(16, 86, 191, 0.06);
}

.faq__item h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #1a1a2e;
}
@media (min-width: 1024px) {
  .faq__item h3 {
    font-size: 1.25rem;
  }
}

.faq__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a4a6a;
  max-width: none;
}

.case-intro {
  background: #ffffff;
}

.case-intro__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .case-intro__inner {
    padding: 0 3rem;
  }
}
.case-intro__inner {
  text-align: center;
}

.case-intro .section-title {
  margin-bottom: 1.5rem;
}

.case-intro__inner > p {
  margin: 0;
  color: #4a4a6a;
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .case-intro__inner > p {
    font-size: 1.125rem;
  }
}

.case-grid {
  background: #e8ecf4;
}

.case-grid__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .case-grid__inner {
    padding: 0 3rem;
  }
}
.case-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .case-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 4rem;
  }
}

.case-grid .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.case-grid__item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-grid__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.1);
}

.case-grid__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.25s ease;
}

.case-grid__item:hover::before,
.case-grid__item.is-hovered::before {
  background: rgba(0, 0, 0, 0.45);
}

.case-grid__item h3,
.case-grid__item p,
.case-grid__image {
  position: relative;
  z-index: 0;
}

.case-grid__item h3 {
  margin: 0;
  padding: 2rem 2rem 0.5rem;
  font-size: 1.25rem;
  color: #1a1a2e;
  order: 1;
}
@media (min-width: 1024px) {
  .case-grid__item h3 {
    font-size: 1.375rem;
    padding: 3rem 3rem 1rem;
  }
}

.case-grid__item p {
  margin: 0;
  padding: 0 2rem 2rem;
  font-size: 0.9375rem;
  color: #4a4a6a;
  line-height: 1.5;
  order: 2;
}
@media (min-width: 1024px) {
  .case-grid__item p {
    padding: 0 3rem 3rem;
    font-size: 1rem;
  }
}

.case-grid__image {
  order: 3;
  aspect-ratio: 16/9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #4a4a6a;
  background: linear-gradient(135deg, rgba(16, 86, 191, 0.08) 0%, rgba(26, 26, 46, 0.04) 100%);
  overflow: hidden;
}

.case-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-grid__cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.case-grid__item:hover .case-grid__cta,
.case-grid__item.is-hovered .case-grid__cta {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .case-grid__cta {
    font-size: 1.0625rem;
    padding: 1.5rem 3rem;
  }
}
.hero--compact .hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero--compact .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.hero--compact .hero__link {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .hero--compact .hero__link {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 3rem;
  }
}

.hero--compact .hero__link .btn {
  width: 100%;
}
@media (min-width: 1024px) {
  .hero--compact .hero__link .btn {
    width: auto;
  }
}

.main--with-header-offset .hero--compact .hero__badge {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem;
}

.main--with-header-offset .hero--compact .hero__lead {
  line-height: 1.55;
  font-size: 1.0625rem;
}
@media (min-width: 1024px) {
  .main--with-header-offset .hero--compact .hero__lead {
    font-size: 1.1875rem;
  }
}

.portfolio-client .problem__inner,
.portfolio-problems .solutions__inner,
.portfolio-solutions .problem__inner,
.portfolio-results .solutions__inner,
.portfolio-tech .problem__inner,
.portfolio-gallery-section .solutions__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
}
@media (min-width: 1024px) {
  .portfolio-client .problem__inner,
  .portfolio-problems .solutions__inner,
  .portfolio-solutions .problem__inner,
  .portfolio-results .solutions__inner,
  .portfolio-tech .problem__inner,
  .portfolio-gallery-section .solutions__inner {
    grid-template-columns: minmax(12rem, 280px) 1fr;
    gap: 4rem;
  }
}

.portfolio-client .problem__inner .section-title,
.portfolio-problems .solutions__inner .section-title,
.portfolio-solutions .problem__inner .section-title,
.portfolio-results .solutions__inner .section-title,
.portfolio-tech .problem__inner .section-title,
.portfolio-gallery-section .solutions__inner .section-title {
  margin-bottom: 0;
}

.portfolio-client .problem__list,
.portfolio-problems .portfolio-list,
.portfolio-solutions .portfolio-list,
.portfolio-results .portfolio-list,
.portfolio-tech .portfolio-list {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.portfolio-gallery-section .gallery {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.portfolio-client .section-title,
.portfolio-problems .section-title,
.portfolio-solutions .section-title,
.portfolio-results .section-title,
.portfolio-tech .section-title,
.portfolio-gallery-section .section-title {
  margin-bottom: 3rem;
}

.portfolio-client .subtitle,
.portfolio-problems .subtitle,
.portfolio-solutions .subtitle,
.portfolio-results .subtitle,
.portfolio-tech .subtitle,
.portfolio-gallery-section .subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.11em;
  color: #1056bf;
  margin-bottom: 1rem;
}

.portfolio-solutions {
  background: linear-gradient(180deg, rgba(16, 86, 191, 0.02) 0%, #ffffff 100%);
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.portfolio-results {
  background: linear-gradient(180deg, #e8ecf4 0%, rgba(16, 86, 191, 0.03) 100%);
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.portfolio-client .problem__list li {
  line-height: 1.5;
}

.portfolio-client .problem__list li::before {
  content: "★";
  color: #ff6f00;
  font-weight: 700;
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: block;
  background: none;
  border-radius: 0;
  font-size: inherit;
}

.portfolio-problems .portfolio-list li::before {
  content: "!";
  color: #c62828;
  font-weight: 700;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 40, 40, 0.1);
  font-size: 0.875rem;
  border-radius: 6px;
}

.portfolio-list {
  margin-top: 2rem;
  list-style: none;
  padding: 1rem;
}

.portfolio-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a6a;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.portfolio-list li:last-child {
  border-bottom: none;
}

.portfolio-list li::before {
  content: "✓";
  color: #1056bf;
  font-weight: 700;
  flex-shrink: 0;
}

.portfolio-list--solutions li::before {
  content: "✓";
  color: #2e7d32;
  font-weight: 700;
}

.portfolio-list--tech li::before {
  content: "★";
  color: #ff6f00;
  font-weight: 700;
}

.portfolio-gallery-section .gallery {
  margin-top: 3rem;
}

.gallery__main {
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  max-width: 100%;
  max-height: 500px;
  overflow: hidden;
  text-align: center;
}

.gallery__main-img {
  max-width: 100%;
  width: auto;
  max-height: 500px;
  display: inline-block;
  vertical-align: middle;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .gallery__thumbs {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

.gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.gallery__thumb:hover {
  opacity: 0.9;
}

.gallery__thumb.is-active {
  border-color: #1056bf;
  box-shadow: 0 0 0 1px #1056bf;
}

.gallery__thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.portfolio-cta {
  background: linear-gradient(135deg, #1056bf 0%, #0131a0 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.portfolio-cta__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .portfolio-cta__inner {
    padding: 0 3rem;
  }
}
.portfolio-cta__inner {
  position: relative;
  z-index: 1;
}

.portfolio-cta__title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 1.5rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto 3rem;
}
@media (min-width: 1024px) {
  .portfolio-cta__text {
    font-size: 1.125rem;
    margin-bottom: 4rem;
  }
}

.portfolio-cta__btn {
  display: inline-block;
  min-width: 260px;
  padding: 1.5rem 3rem;
  font-size: 1.0625rem;
  font-weight: 700;
  background: #ff6f00;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.portfolio-cta__btn:hover {
  background: #e65100;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
  .portfolio-list {
    padding: 5rem;
  }
}
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #0d1117;
}

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

.thanks-section__box {
  max-width: 28rem;
}
@media (min-width: 1024px) {
  .thanks-section__box {
    max-width: 43rem;
  }
}
.thanks-section__box {
  padding: 4rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(26, 26, 46, 0.25);
}

.thanks-section__title {
  margin: 0 0 1.5rem;
}

.thanks-section__text {
  font-size: 1.125rem;
  color: #4a4a6a;
  margin: 0 0 3rem;
  line-height: 1.5;
}

.thanks-section .btn {
  min-width: 240px;
}

/*# sourceMappingURL=main.css.map */
