:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #5b5b5b;
  --border: #e6e6e6;
  --shadow: 0 24px 60px rgba(12, 12, 12, 0.08);
  --radius: 22px;
  --accent: #c8a04b;
  --accent-ink: #1b1303;
  --max-width: 1160px;
  --wash-1: #f2e8ff;
  --wash-2: #e7f2ff;
  --wash-3: #ffe9f1;
  --header-height: 76px;
  --section-pad: clamp(48px, 6vw, 96px);
  --section-gap: clamp(24px, 3vw, 48px);
  --surface-bg: rgba(255, 255, 255, 0.75);
  --surface-border: rgba(0, 0, 0, 0.06);
  --surface-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --surface-shadow-hover: 0 26px 60px rgba(17, 17, 17, 0.16);
  --icon-bg: #f0f0f0;
  --icon-border: rgba(0, 0, 0, 0.08);
  --icon-shadow: 0 12px 22px rgba(17, 17, 17, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover,
a:focus-visible {
  color: var(--text);
}

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

main {
  padding: 0 1.5rem 2.5rem;
}

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

.section {
  padding-block: clamp(32px, 4.5vw, 72px);
}

.section + .section {
  padding-top: 0;
}

main > .section:first-child {
  padding-top: clamp(20px, 3vw, 36px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  gap: 1.5rem;
}

.nav__brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav__links a {
  position: relative;
}

.nav__links a.is-active {
  color: var(--text);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.nav__toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  font-weight: 600;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
}

.nav__mobile.is-open {
  display: flex;
}

.subnav {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.subnav.is-visible {
  display: block;
}

.subnav__inner {
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.subnav__label {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 48px;
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn--dark,
.btn--primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.btn--ghost {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn:focus-visible {
  outline: 2px solid rgba(200, 160, 75, 0.4);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: clamp(300px, 44vh, 520px);
  padding: clamp(40px, 9vh, 96px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.hero--home {
  overflow: hidden;
  min-height: clamp(420px, 64vh, 720px);
  padding: 0;
}

.hero--home::before,
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero--home::before {
  background: url("../img/bg.png") 60% 30% / cover no-repeat;
  z-index: 0;
}

.hero--home::after {
  background: radial-gradient(circle at 50% 35%, rgba(255, 238, 250, 0.7), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hero--home .hero__content {
  padding: clamp(88px, 14vh, 160px) 24px clamp(72px, 12vh, 130px);
}

.hero:not(.hero--home) .hero__content {
  padding: clamp(36px, 7vh, 72px) 24px;
}

.hero:not(.hero--home) {
  min-height: auto;
  padding: clamp(28px, 6vh, 64px) 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero ~ .section {
  position: relative;
  z-index: 1;
  background: #fff;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 42rem;
}

.value-props {
  position: relative;
  z-index: 2;
  background: #ffffff;
  margin-top: 0;
  padding-top: var(--section-gap);
}

.value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--icon-border);
  background: #ffffff;
  box-shadow: var(--icon-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(200, 160, 75, 0.22);
}

.value-badge {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  box-shadow: var(--icon-shadow);
}

.value-badge svg {
  width: 20px;
  height: 20px;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.section-title,
.section-subtitle {
  text-align: center;
}

.section > .container > h2 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 0.6rem;
}

.section > .container > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.4rem;
}

.services {
  padding-top: 1rem;
}

.service-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--icon-border);
  background: var(--icon-bg);
  color: var(--text);
  box-shadow: var(--icon-shadow);
  transition: transform 0.25s ease;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-link {
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-link:focus-visible {
  outline: 2px solid rgba(200, 160, 75, 0.4);
  outline-offset: 4px;
}

.cta--center {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--surface-shadow);
  display: grid;
  gap: 0.65rem;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-grid--4 .card,
.grid.cols-4 .card {
  padding-top: 3rem;
}

.card-grid--4 .card::before,
.grid.cols-4 .card::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--icon-border);
  background-color: var(--icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  justify-self: center;
  margin-bottom: 0.65rem;
  box-shadow: var(--icon-shadow);
  transition: transform 0.25s ease;
}

.card-grid--4 .card:nth-child(1)::before,
.grid.cols-4 .card:nth-child(1)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><path d='M16 2v4M8 2v4M3 10h18'/></svg>");
}

.card-grid--4 .card:nth-child(2)::before,
.grid.cols-4 .card:nth-child(2)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='6' width='18' height='14' rx='2'/><circle cx='12' cy='13' r='3'/><path d='M7 6l1.5-3h7L17 6'/></svg>");
}

.card-grid--4 .card:nth-child(3)::before,
.grid.cols-4 .card:nth-child(3)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 17l6-6 4 4 7-7'/><path d='M14 4h7v7'/></svg>");
}

.card-grid--4 .card:nth-child(4)::before,
.grid.cols-4 .card:nth-child(4)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12v7'/><path d='M12 8v11'/><path d='M19 4v15'/></svg>");
}

.process-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.6rem 2.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 0.9rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card__icon {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.process-card__icon-bg {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  box-shadow: var(--icon-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.25s ease;
}

.process-card__icon-bg svg {
  width: 24px;
  height: 24px;
}

.process-card__step {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}

.process-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #666;
}

.pill,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  transition: all 0.2s ease;
}

.page-pill {
  display: flex;
  width: min(100%, 640px);
  justify-content: center;
  margin: 0 auto 16px;
  padding: 0.4rem 1.2rem;
  text-align: center;
}

.filter-chip.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.portfolio-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card__media {
  height: 170px;
  background: linear-gradient(135deg, #e6e9ff, #f7e9ff);
}

.portfolio-card--video .portfolio-card__media {
  background: linear-gradient(135deg, #d9e3ff, #e9dcff);
}

.portfolio-card--foto .portfolio-card__media {
  background: linear-gradient(135deg, #ffe4f1, #ffe8dc);
}

.portfolio-card--social .portfolio-card__media {
  background: linear-gradient(135deg, #dbeafe, #e0f2ff);
}

.portfolio-card__content {
  padding: 0.9rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.portfolio-card__content .pill {
  align-self: flex-start;
  margin: 0 0 0.4rem 0;
  line-height: 1;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-bar {
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.filter-chip {
  cursor: pointer;
  line-height: 1;
}

.tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-card--featured {
  border: 2px solid #111111;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.18);
}

.pricing-card .btn.btn--accent {
  background: #b88f34;
  border-color: #b88f34;
  color: var(--accent-ink);
}

.pricing-card .btn:hover,
.pricing-card .btn:focus-visible {
  box-shadow: 0 16px 32px rgba(184, 143, 52, 0.22);
}

.pricing-card--featured .btn:hover,
.pricing-card--featured .btn:focus-visible {
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.25);
}

.badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.5rem;
  font-weight: 700;
}

.addon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.addon-card {
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.addon-price {
  color: var(--accent);
  font-weight: 700;
}

.addon-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.section-heading__icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 14px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  box-shadow: var(--icon-shadow);
}

.section-heading__icon svg {
  width: 100%;
  height: 100%;
}

.detail-grid {
  display: grid;
  gap: 1.8rem;
}

.detail-block {
  background: var(--surface-bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
}

.case-study {
  margin-top: 0;
}

.case-study__card {
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  padding: clamp(1.3rem, 2.6vw, 2.1rem);
  display: grid;
  gap: 0;
  backdrop-filter: blur(6px);
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study__item + .case-study__item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.case-study__item h2 {
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.case-study__item p {
  line-height: 1.6;
}

.back-link {
  font-weight: 600;
  color: var(--muted);
}

.cta {
  background: linear-gradient(135deg, #f7f5ff, #fdf6ec);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.showcase {
  display: grid;
  gap: var(--section-gap);
}

.slider {
  display: grid;
  gap: 1rem;
}

.showcase__group {
  display: grid;
  gap: 1.2rem;
}

.showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.showcase__header h2 {
  margin: 0;
}

.showcase__empty {
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase__empty.is-hidden {
  display: none;
}

.showcase__carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
}

.showcase__track {
  display: flex;
  gap: 1rem;
  padding: 0.85rem;
}

.showcase__photo {
  flex: 0 0 clamp(220px, 32vw, 340px);
  scroll-snap-align: start;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-item {
  position: relative;
}

.showcase-item .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  font-size: 2rem;
  color: var(--text);
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  border-radius: calc(var(--radius) - 10px);
  margin: 0.6rem;
  box-shadow: var(--icon-shadow);
}

.showcase__video.showcase-item .placeholder {
  aspect-ratio: 16 / 9;
}

.showcase-item img,
.showcase-item video {
  display: none;
}

.showcase-item.has-asset img,
.showcase-item.has-asset video {
  display: block;
}

.showcase-item.has-asset .placeholder {
  display: none;
}

.showcase__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase__video-slider {
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase__video-track {
  display: flex;
  transition: transform 0.3s ease;
}

.showcase__video {
  flex: 0 0 100%;
  padding: clamp(0.85rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.4);
}

.showcase__video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 8px);
  display: block;
  background: #111;
}

.slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(6px);
}

.slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.slide {
  flex: 0 0 80%;
  padding: 2rem;
  background: #fafafa;
  display: grid;
  place-items: center;
  min-height: 220px;
  font-size: 2rem;
  border-right: 1px solid var(--border);
}

.slide img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.slider__controls {
  display: flex;
  gap: 0.8rem;
}

.slider__btn {
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface-bg);
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--icon-border);
  background: var(--icon-bg);
  box-shadow: var(--icon-shadow);
  display: grid;
  place-items: center;
  color: var(--text);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

@media (hover: hover) {
  .service-card:hover,
  .card:hover,
  .process-card:hover,
  .portfolio-card:hover,
  .pricing-card:hover,
  .addon-card:hover,
  .case-study__card:hover,
  .showcase__photo:hover,
  .showcase__video-slider:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .addon-card:hover {
    border-color: var(--accent);
  }

  .service-card:hover .service-icon,
  .process-card:hover .process-card__icon-bg {
    transform: scale(1.05);
  }

  .card-grid--4 .card:hover::before,
  .grid.cols-4 .card:hover::before {
    transform: scale(1.05);
  }
}

@media (max-width: 800px) {
  .hero--home::before {
    background-size: contain;
    background-position: center top;
  }

  .hero--home {
    min-height: clamp(360px, 70vh, 520px);
  }
}

@media (min-width: 1200px) {
  .hero--home::before {
    background-position: 62% 26%;
  }
}

@media (min-width: 1400px) {
  .hero--home::before {
    background-position: 66% 22%;
  }
}


form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.65rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(200, 160, 75, 0.4);
  border-color: var(--accent);
}

.footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 3rem 1.5rem 2rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}

.footer__brand p {
  color: var(--muted);
}

.footer__col h4,
.footer__brand h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  padding: 0;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--icon-border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--icon-bg);
  box-shadow: var(--icon-shadow);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.footer__grid > div:last-child ul {
  list-style: none;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.footer__grid > div:last-child ul li a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--icon-border);
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  font-size: 0;
  color: transparent;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--icon-shadow);
}

.footer__grid > div:last-child ul li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.footer__grid > div:last-child ul li a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='16' height='16' rx='4'/><circle cx='12' cy='12' r='3.5'/><circle cx='17' cy='7' r='1'/></svg>");
}

.footer__grid > div:last-child ul li a[href*="linkedin"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3.5' y='3.5' width='17' height='17' rx='3'/><path d='M8 10v7'/><path d='M8 7.5v.5'/><path d='M12 17v-4a2 2 0 0 1 4 0v4'/></svg>");
}

.footer__grid > div:last-child ul li a[href^="mailto"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='6' width='18' height='12' rx='2'/><path d='M3 7l9 6 9-6'/></svg>");
}

.footer__grid > div:last-child ul li a:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.footer__legal {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.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;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .slide {
    flex-basis: 90%;
  }

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

@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
