/* TakAstro landing — takastro.pl */
/* Encoding: UTF-8 */

:root {
  --bg: #1e293b;
  --bg-elevated: #334155;
  --bg-card: #293548;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-on-dark: #e2e8f0;
  --text-muted-on-dark: #94a3b8;
  --accent: #ef4444;
  --accent-hover: #dc2626;
  --accent-active: #b91c1c;
  --accent-soft: rgba(239, 68, 68, 0.1);
  --accent-glow: rgba(220, 38, 38, 0.22);
  --accent-border: rgba(239, 68, 68, 0.28);
  --border: #e2e8f0;
  --border-dark: rgba(148, 163, 184, 0.2);
  --shadow: 0 20px 50px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 30px 80px rgba(30, 41, 59, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.text-accent {
  color: var(--accent);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p:last-child {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent-hover);
  color: #fff;
  border-color: var(--accent-border);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-active);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  background: #fff;
  color: var(--bg);
}

.btn-light:hover {
  background: #f1f5f9;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-mark-sm {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.logo-text {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
  padding: 56px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.1), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(220, 38, 38, 0.06), transparent 35%),
    linear-gradient(180deg, #1e293b 0%, #334155 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-lead {
  color: var(--text-muted-on-dark);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stats strong {
  font-size: 1.1rem;
  color: #fff;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--text-muted-on-dark);
}

.hero-visual {
  position: relative;
}

.browser-mock {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-dark);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}

.browser-bar span:first-child { background: #f87171; }
.browser-bar span:nth-child(2) { background: #fbbf24; }
.browser-bar span:nth-child(3) { background: #ef4444; }

.browser-url {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.65);
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
}

.browser-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.mock-block {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.14), rgba(148, 163, 184, 0.06));
  border: 1px solid var(--accent-border);
}

.mock-hero {
  height: 88px;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  height: 64px;
  opacity: 0.75;
}

.mock-cta {
  height: 42px;
  width: 55%;
  margin: 0 auto;
}

.hero-badge {
  position: absolute;
  right: -8px;
  bottom: -16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  text-align: center;
}

.badge-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.badge-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-hover);
  line-height: 1.1;
}

.badge-price small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Trust strip */

.section-trust {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-row > p {
  font-weight: 600;
  color: var(--text);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-tags li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Offer cards */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.offer-featured {
  border-color: var(--accent-border);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.1);
}

.offer-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border: 1px solid var(--accent-border);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--accent);
}

.offer-icon svg {
  width: 100%;
  height: 100%;
}

.offer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.offer-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.offer-list {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.offer-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.offer-price {
  font-size: 1rem;
  margin-bottom: 16px;
}

.offer-price strong {
  font-size: 1.35rem;
  color: var(--accent-hover);
}

/* Pricing */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-main {
  border: 2px solid var(--accent-border);
}

.pricing-top {
  padding: 32px 28px 24px;
  background: linear-gradient(180deg, var(--accent-soft), #fff 80%);
}

.pricing-top h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg);
}

.price-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-hover);
}

.price-note {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pricing-features {
  list-style: none;
  padding: 8px 28px 28px;
}

.pricing-features li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-main .btn {
  margin: 0 28px 28px;
  width: calc(100% - 56px);
}

.pricing-side {
  display: grid;
  gap: 16px;
}

.pricing-note-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.pricing-note-card.highlight {
  background: var(--bg);
  color: #fff;
  border-color: transparent;
}

.pricing-note-card.highlight p {
  color: var(--text-muted-on-dark);
}

.pricing-note-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.pricing-note-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Portfolio */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 100%;
}

.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.portfolio-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
  margin-bottom: 10px;
}

.portfolio-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.portfolio-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 14px;
}

.portfolio-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-hover);
}

/* CTA band */

.section-cta {
  padding: 0 0 88px;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #334155 0%, #475569 65%, rgba(185, 28, 28, 0.35) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 10px;
  max-width: 520px;
}

.cta-box p {
  color: var(--text-muted-on-dark);
  max-width: 520px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  list-style: none;
  margin-top: 28px;
}

.contact-details li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-status--success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status--error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */

.site-footer {
  padding: 32px 0;
  background: var(--bg);
  color: var(--text-muted-on-dark);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  color: #fff;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.85rem;
}

/* Tablet & mobile */

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 72px 0;
  }

  .section-cta {
    padding: 0 0 72px;
  }

  .hero {
    padding: 40px 0 72px;
  }

  .hero-grid,
  .offer-grid,
  .pricing-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-visual {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4px 24px;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-badge {
    right: 8px;
    bottom: 0;
    padding: 12px 16px;
  }

  .badge-price {
    font-size: 1.25rem;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head p:last-child {
    font-size: 1rem;
  }

  .offer-card {
    padding: 24px 20px;
  }

  .offer-badge {
    top: 14px;
    right: 14px;
  }

  .pricing-top {
    padding: 24px 20px 20px;
  }

  .pricing-features {
    padding: 8px 20px 20px;
  }

  .pricing-main .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
  }

  .price-amount {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-form label {
    font-size: 0.92rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 99;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(30, 41, 59, 0.97);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 16px 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-dark);
  }

  .header-actions .btn-sm {
    display: none;
  }

  .logo-img {
    height: 34px;
    max-width: 100px;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-tags {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* Small phones */

@media (max-width: 480px) {
  :root {
    --header-h: 60px;
  }

  .section {
    padding: 56px 0;
  }

  .section-cta {
    padding: 0 0 56px;
  }

  .hero {
    padding: 32px 0 56px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
  }

  .hero-stats li {
    text-align: center;
    padding: 10px 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-stats strong {
    font-size: 1rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero-visual {
    padding-bottom: 16px;
  }

  .hero-badge {
    position: static;
    display: inline-block;
    margin: 16px auto 0;
    width: fit-content;
  }

  .browser-body {
    padding: 12px;
  }

  .mock-row {
    gap: 6px;
  }

  .mock-card {
    height: 48px;
  }

  .offer-card h3 {
    font-size: 1.15rem;
    padding-right: 72px;
  }

  .portfolio-item {
    padding: 18px 16px;
  }

  .pricing-note-card {
    padding: 18px 16px;
  }

  .contact-details a {
    font-size: 1rem;
    word-break: break-word;
  }

  .eyebrow {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .portfolio-item,
  .nav {
    transition: none;
  }
}
