/* ============================================================
   Jenny Faye Alipen — Portfolio
   Design system: premium, minimal, pink accent used sparingly
   ============================================================ */

:root {
  --pink: #E91E63;
  --pink-dark: #C2185B;
  --pink-soft: #F8BBD0;
  --pink-tint: #FCE4EC;
  --ink: #1C1C24;
  --ink-soft: #4A4B57;
  --gray: #6E7080;
  --gray-light: #F6F6F8;
  --line: #ECECF1;
  --white: #FFFFFF;

  --font-display: "General Sans", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 2px 8px rgba(28, 28, 36, 0.04), 0 12px 32px rgba(28, 28, 36, 0.07);
  --shadow-lift: 0 4px 12px rgba(28, 28, 36, 0.06), 0 20px 44px rgba(28, 28, 36, 0.10);

  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-weight: 600; font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-weight: 500; font-size: 1.2rem; }

a { color: var(--pink); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 820px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-dark); /* AA contrast on white & gray backgrounds */
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--pink-soft); }

/* ---------- Icons ---------- */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--sm { width: 17px; height: 17px; }
.icon--inline {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  color: var(--pink);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn--sm { padding: 10px 22px; font-size: 0.9rem; }

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.28);
}
.btn--primary:hover { background: var(--pink-dark); box-shadow: 0 12px 30px rgba(233, 30, 99, 0.35); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--pink-soft); color: var(--pink); }

.btn--white { background: var(--white); color: var(--pink); }
.btn--white:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn--outline:hover { border-color: var(--white); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(28, 28, 36, 0.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--pink); }
.nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--pink); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav__status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2FBF71;
  box-shadow: 0 0 0 3px rgba(47, 191, 113, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47, 191, 113, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(47, 191, 113, 0.08); }
}
.nav__links-cta { display: none; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(900px 480px at 85% -10%, var(--pink-tint) 0%, rgba(252, 228, 236, 0) 65%),
    var(--white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero__hello {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero__title { margin-bottom: 22px; }
.hero__title em {
  font-style: normal;
  color: var(--pink);
}
.hero__sub {
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero__meta { font-size: 0.9rem; color: var(--gray); }

.hero__photo-wrap {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}
.hero__photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
}
.hero__badge {
  position: absolute;
  left: -34px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lift);
  animation: float 5s ease-in-out infinite;
}
.hero__badge--rating {
  left: auto;
  right: -26px;
  top: 36px;
  bottom: auto;
  animation-delay: 2.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--pink);
}
.hero__badge-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.hero__badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* ---------- Stats ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 44px;
  padding-bottom: 44px;
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section--alt { background: var(--gray-light); }
.section__head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section__foot { margin-top: 48px; text-align: center; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about__media-frame {
  border-radius: var(--radius);
  overflow: hidden;
}
.about__media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}
.about__content h2 { margin-bottom: 22px; }
.about__content p { margin-bottom: 16px; }
.about__content strong { color: var(--ink); }
.about__values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 26px;
}
.about__values li {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  padding-left: 26px;
  position: relative;
}
.about__values li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--pink-soft);
}
.card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  background: var(--pink-tint);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; font-weight: 600; }
.card p { font-size: 0.95rem; }

/* ---------- Tools & Platforms marquee ---------- */
.tools { overflow: hidden; }
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 44px;
  padding: 0 22px;
}
.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.stack-item img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  border-radius: 5px;
}
.stack-item span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.stack-item:hover span,
.stack-item:focus-visible span {
  color: var(--pink);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
  .marquee__group[aria-hidden="true"] { display: none; }
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 32px;
}
.process__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.process__num::after {
  content: "";
  width: 44px;
  height: 1.5px;
  background: var(--pink-soft);
}
.process__step h3 { margin-bottom: 10px; font-weight: 600; }
.process__step p { font-size: 0.95rem; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__item:first-child { border-top: 1px solid var(--line); }
.timeline__period {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray);
  padding-top: 3px;
}
.timeline__body h3 { font-weight: 600; margin-bottom: 6px; }
.timeline__body h3 span { color: var(--gray); font-weight: 500; }
.timeline__body p { font-size: 0.95rem; max-width: 640px; }

/* ---------- Beyond the Desk gallery ---------- */
.about__media figcaption,
.gallery__item figcaption {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 12px 4px 0;
}
.gallery {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: start;
}
.gallery__item {
  border-radius: var(--radius);
}
.gallery__item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Industries ---------- */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.industry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.industry:hover {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.industry .icon--sm { color: var(--pink); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: start;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.testimonial__stars {
  color: #F5A623;
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.testimonial__stars span {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0;
  margin-left: 6px;
}
.testimonial blockquote p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.testimonial figcaption {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 0.975rem;
}
.testimonial figcaption span {
  font-size: 0.825rem;
  color: var(--gray);
}

/* ---------- Chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
}
.chip {
  background: var(--pink-tint);
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: 999px;
  padding: 10px 20px;
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item[open] {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 20px 36px 20px 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pink);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 22px; font-size: 0.975rem; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(700px 380px at 15% 110%, rgba(255, 255, 255, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 110px 0;
  text-align: center;
}
.contact h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.contact__copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.075rem;
}
/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 34px 32px 30px;
  max-width: 580px;
  margin: 0 auto 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--ink);
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--pink);
}
.contact-form__hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__submit { width: 100%; }
.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.contact-form__status {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.contact-form__status.is-ok { display: block; color: #1E9E5A; }
.contact-form__status.is-error { display: block; color: var(--pink-dark); }

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

.contact__email {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.925rem;
}
.contact__email a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  padding: 34px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.footer__tagline {
  color: var(--pink-soft) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---------- Entrance states (driven by Motion in js/main.js) ----------
   Elements are pre-hidden only when JS is running; .no-motion restores
   everything instantly (reduced motion, old browsers, CDN failure). */
.js .reveal,
.js [data-stagger] > *,
.js [data-hero],
.js [data-hero-photo],
.js [data-hero-badge] {
  opacity: 0;
}
.js.no-motion .reveal,
.js.no-motion [data-stagger] > *,
.js.no-motion [data-hero],
.js.no-motion [data-hero-photo],
.js.no-motion [data-hero-badge] {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js [data-stagger] > *,
  .js [data-hero],
  .js [data-hero-photo],
  .js [data-hero-badge] { opacity: 1; }
  .hero__badge { animation: none; }
  .nav__status .dot { animation: none; }
  html { scroll-behavior: auto; }
  .btn, .card, .industry { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav__status { display: none; }
  .hero__grid { gap: 44px; }
  .hero__badge { left: -12px; }
  .hero__badge--rating { right: -10px; }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 24px 40px rgba(28, 28, 36, 0.08);
  }
  .nav.is-open .nav__links-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 6px;
  }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 56px 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { order: -1; }
  .hero__photo-wrap { max-width: 340px; margin: 0 auto; }

  .section { padding: 72px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 340px; }
  .testimonials { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item img { height: 300px; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }

  .marquee { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); }
  .marquee__track { animation-duration: 34s; }
  .marquee__group { gap: 30px; padding: 0 15px; }
  .stack-item { gap: 8px; }
  .stack-item img { width: 23px; height: 23px; }
  .stack-item span { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero__actions .btn { width: 100%; }
  .contact-form { padding: 26px 20px 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }

  .marquee__group { gap: 22px; padding: 0 11px; }
  .stack-item { gap: 7px; }
  .stack-item img { width: 20px; height: 20px; }
  .stack-item span { font-size: 0.78rem; }
}
