/* ================================================
   DESIGN TOKENS
================================================ */
@property --orange {
  syntax: '<color>';
  inherits: true;
  initial-value: #E35914;
}

@keyframes color-cycle {
  0%   { --orange: #E35914; }
  33%  { --orange: #7DD6F0; }
  66%  { --orange: #AAFF00; }
  100% { --orange: #E35914; }
}

:root {
  --bg:           #1A1A1A;
  --card:         #292929;
  --orange:       #E35914;
  --text:         #FFFFFF;
  animation: color-cycle 15s ease-in-out infinite;
  --muted:        rgba(255,255,255,0.6);
  --dim:          rgba(255,255,255,0.1);
  --radius-sm:    10px;
  --radius-md:    20px;
  --radius-lg:    30px;
  --font:         'Manrope', system-ui, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --max-w:        1200px;
  --pad:          40px;
}

/* ================================================
   RESET
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================================
   LAYOUT HELPERS
================================================ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-text {
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  font-weight: 300;
  color: var(--muted);
  margin-top: 20px;
  max-width: 56ch;
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 6px 24px 6px 6px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn:hover .btn__icon {
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
}
.btn__icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.6)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") center/16px no-repeat;
  margin-right: 12px;
  flex-shrink: 0;
  transition: background-color 0.2s, background-image 0.2s;
}
.btn__text { font-size: 0.875rem; }

.btn--dark {
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--dark:hover { border-color: rgba(255,255,255,0.6); }
.btn--dark .btn__icon {
  background-color: rgba(255,255,255,0.15);
}

.btn--muted {
  border-color: rgba(255,255,255,0.12);
}

.btn--full { width: 100%; justify-content: flex-start; margin-top: auto; }

.btn--sm {
  padding: 4px 16px 4px 4px;
  font-size: 0.75rem;
}
.btn--sm .btn__icon {
  width: 26px;
  height: 26px;
  background-size: 11px;
  margin-right: 8px;
}

/* ================================================
   NAV
================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s, backdrop-filter 0.3s;
}
.nav::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(0px);
  -webkit-mask-image: linear-gradient(to bottom, black 60px, transparent 120px);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s;
}
.nav.scrolled {
  background: rgba(22,22,22,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.scrolled::after { opacity: 0; }
.nav.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.nav__logo svg { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: #fff; }

.nav__lang {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 4px 9px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav__lang:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(22,22,22,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 16px;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 14px var(--pad);
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
  }
}

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #1A1A1A 0%,
    rgba(26,26,26,0.5) 35%,
    rgba(26,26,26,0.25) 70%,
    rgba(26,26,26,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) 260px;
}

.hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__link:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

.hero__headline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero__bio-wrap {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__bio {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.hero__bigname {
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  user-select: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

/* ================================================
   LOGOS STRIP
================================================ */
.logos {
  overflow: hidden;
  padding: 48px 0;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%);
}
.logos__track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.logos__item {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.12;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   ABOUT
================================================ */
.about {
  padding: 100px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__content .btn {
  margin-top: 36px;
}

.tools-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}
.tools-cat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.tools-cat__items {
  display: flex;
  flex-direction: column;
}
.tools-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tools-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.tools-row__name {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.tools-row__level {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ================================================
   GALLERY
================================================ */
.gallery {
  padding: 0 0 100px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__img {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ================================================
   SERVICES
================================================ */
.services {
  padding: 100px 0;
}
.services__headline {
  max-width: 700px;
  margin-bottom: 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card__icon {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.3);
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__title {
  font-size: 1.25rem;
  font-weight: 500;
}
.service-card__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================
   IMPACT / AWARDS
================================================ */
.impact {
  padding: 100px 0;
}
.impact__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.impact__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.impact__col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.impact-list {
  display: flex;
  flex-direction: column;
}
.impact-row {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.impact-row:first-child { padding-top: 0; border-top: 1px solid rgba(255,255,255,0.08); }
.impact-row__info { display: flex; flex-direction: column; gap: 4px; }
.impact-row__year {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--orange);
}
.impact-row__name {
  font-size: 1.25rem;
  font-weight: 500;
}
.impact-row__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 2px;
}
.impact__col--sm .impact-row {
  padding: 14px 0;
}
.impact__col--sm .impact-row__name {
  font-size: 0.9375rem;
  font-weight: 500;
}
.impact__col--sm .impact-row__year {
  font-size: 0.75rem;
}
.impact__col--sm .impact-row__desc {
  font-size: 0.8125rem;
  margin-top: 1px;
}
.impact__col--sm .impact-row__info { gap: 2px; }

/* ================================================
   CTA BANNER
================================================ */
.cta-banner {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-banner--footer .cta-banner__sub {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}

/* ================================================
   PORTFOLIO
================================================ */
.portfolio {
  padding: 100px 0;
}
.portfolio__headline {
  max-width: 700px;
  margin-bottom: 60px;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.port-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.port-card img {
  transition: transform 0.5s ease;
}
.port-card:hover img { transform: scale(1.04); }
.port-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.9) 0%,
    rgba(26,26,26,0) 50%
  );
}
.port-card__info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.port-card__year {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.port-card__name {
  font-size: 1.5rem;
  font-weight: 500;
}

/* BEHANCE MINI ENTRIES */
.portfolio__more {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.portfolio__more-label {
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 56ch;
}
.portfolio__more-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 16px;
}
.more-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  font-weight: 300;
  transition: color 0.2s;
}
.more-entry__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.more-entry__action {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.more-entry:hover .more-entry__action { color: rgba(255,255,255,0.5); }
.more-entry__name { font-size: 0.9375rem; font-weight: 300; }
.more-entry svg {
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s, transform 0.2s;
}
.more-entry:hover { color: rgba(255,255,255,0.9); }
.more-entry:hover svg {
  opacity: 1;
  transform: translate(0, 0);
}

/* ISO NOTICE */
.work-iso { padding: 80px 0 100px; }
.work-iso__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  padding: 36px 40px;
  border: 1px solid rgba(227,89,20,0.2);
  border-radius: var(--radius-md);
  background: rgba(227,89,20,0.04);
}
.work-iso__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.work-iso__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ================================================
   METRICS
================================================ */
.metrics {
  padding: 100px 0;
}
.metrics__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.metrics__left { flex: 0 0 480px; }
.metrics__stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat:first-child { padding-top: 0; border-top: 1px solid rgba(255,255,255,0.08); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 200;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat__label {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 8px;
}

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials {
  padding: 100px 0;
}
.testimonials__headline {
  max-width: 700px;
  margin-bottom: 60px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 311px;
}
.testi-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.testi-card__stars {
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.testi-card__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.testi-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}
.testi-card__author strong {
  font-size: 0.9375rem;
  font-weight: 500;
}
.testi-card__author span {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
}

/* ================================================
   PRICING
================================================ */
.pricing {
  padding: 100px 0;
}
.pricing__headline {
  max-width: 700px;
  margin-bottom: 60px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: #17231D;
}
.price-card__header {
  padding: 28px 28px 24px;
}
.price-card__header--dark {
  background: var(--card);
}
.price-card__header--orange {
  background: var(--orange);
}
.price-card__plan {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.price-card__header--orange .price-card__plan { color: rgba(255,255,255,0.9); }
.price-card__price-row { display: flex; align-items: baseline; gap: 4px; }
.price-card__amount {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__billing {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}
.price-card__header--orange .price-card__billing { color: rgba(255,255,255,0.7); }
.price-card__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 8px;
}
.price-card__header--orange .price-card__tagline { color: rgba(255,255,255,0.85); }

.price-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card--featured .price-card__body { background: #17231D; }
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}
.price-card__list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  flex-shrink: 0;
}

/* ================================================
   CTA FLOAT
================================================ */
.cta-float {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-float__images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-float__img {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-float__img--1 { left: 5%;  top: 10%; transform: rotate(-22deg); }
.cta-float__img--2 { right: 8%; top: 5%;  transform: rotate(20deg); }
.cta-float__img--3 { left: 8%;  bottom: 10%; transform: rotate(15deg); }
.cta-float__img--4 { right: 5%; bottom: 8%; transform: rotate(-18deg); }

.cta-float__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,26,26,0.85) 40%, rgba(26,26,26,0.5) 100%);
}
.cta-float__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-float__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-float__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--bg);
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.footer__role {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 400;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.footer__social-btn svg { width: 18px; height: 18px; }
.footer__social-btn:hover { color: var(--orange); border-color: rgba(227,89,20,0.4); }
.footer__copied-toast {
  font-size: 0.75rem;
  color: var(--orange);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.footer__copied-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.footer__social-invite {
  margin-top: 14px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  animation: invite-fade-in 1.4s ease 0.8s both;
}
@keyframes invite-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.footer__bigname {
  font-family: var(--font-display);
  font-weight: 200;
  color: var(--card);
  line-height: 0.85;
  letter-spacing: -0.05em;
  user-select: none;
  white-space: nowrap;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  /* filled edge-to-edge by JS */
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .services__grid,
  .gallery__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__grid .gallery__img:last-child {
    grid-column: 1 / -1;
  }
  .impact__cols { grid-template-columns: 1fr 1fr; }
  .impact__inner { flex-direction: column; gap: 60px; }
  .impact__left { flex: none; }
  .metrics__inner { flex-direction: column; gap: 60px; }
  .metrics__left { flex: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .port-card { height: 320px; }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }

  /* HERO */
  .hero { max-height: none; }
  .hero__content { padding-bottom: 100px; }
  .hero__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .hero__bio-wrap { max-width: 100%; }
  .hero__headline { gap: 24px; }

  /* ABOUT */
  .about__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; overflow: hidden; }
  .about__content, .about__tools { min-width: 0; width: 100%; }
  .tools-stack { grid-template-columns: 1fr 1fr; gap: 28px 24px; }

  /* IMPACT */
  .impact__cols { grid-template-columns: 1fr; }
  .impact__header { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* GALLERY / SERVICES / PORTFOLIO */
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__img { height: 320px; grid-column: auto !important; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .port-card { height: 280px; }

  /* CTA FLOAT */
  .cta-float__img--1,
  .cta-float__img--4 { display: none; }

  /* FOOTER */
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}
