:root {
  --accent: #facc15;
  --bg: #09090b;
  --bg-soft: #101014;
  --bg-panel: #15151b;
  --bg-panel-strong: #1b1b24;
  --text: #f6f2ea;
  --text-soft: rgba(246, 242, 234, 0.86);
  --muted: #9aa3b1;
  --muted-soft: #818999;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent-line: rgba(250, 204, 21, 0.34);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --font-heading: "Sora", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(135deg, #09090b 0%, #121219 52%, #171821 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

option {
  background: var(--bg-panel);
  color: var(--text);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 120;
  transform: translateY(-200%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(30px);
}

.page-orb-one {
  top: 120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(250, 204, 21, 0.14);
}

.page-orb-two {
  right: -80px;
  bottom: 140px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
}

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

.section {
  padding: 110px 0;
}

.section-light,
.section-dark,
.section-contact {
  position: relative;
  background: transparent;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.eyebrow,
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(250, 204, 21, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow-dark::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.18;
}

.section-heading,
.hero-grid,
.journey-grid,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 28px;
}

.section-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  margin-bottom: 56px;
}

.section-intro,
.section-intro-light,
.hero-lead,
.trust-copy p:last-child,
.service-card p,
.timeline-item p,
.pricing-meta,
.faq-answer p,
.footer-text,
.footer-bottom,
.metric-card span,
.project-content p,
.testimonial-card span {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(250, 204, 21, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-compact {
  min-height: 46px;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: 18px;
  transition: padding-top 0.24s ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
  box-shadow: var(--shadow-md);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-header.is-scrolled .brand img {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled .brand-copy strong {
  color: #111111;
}

.site-header.is-scrolled .brand-copy small {
  color: rgba(17, 17, 17, 0.64);
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  color: rgba(246, 242, 234, 0.92);
}

.mobile-nav a {
  color: var(--text);
}

.site-header.is-scrolled .desktop-nav a {
  color: rgba(17, 17, 17, 0.88);
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.24s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-header .button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.site-header.is-scrolled .button-secondary {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
}

.menu-toggle {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled .menu-toggle span {
  background: #111111;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(420px, 100vw);
  height: 100vh;
  overflow-y: auto;
  padding: calc(24px + env(safe-area-inset-top, 0px)) 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(15, 16, 21, 0.98) 0%, rgba(23, 24, 33, 0.98) 100%);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.34s ease, opacity 0.34s ease, visibility 0.34s ease;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-left: 1px solid rgba(250, 204, 21, 0.08);
  pointer-events: none;
}

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-close {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.mobile-close:hover,
.mobile-close:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-socials a:hover,
.mobile-socials a:focus-visible {
  border-color: rgba(250, 204, 21, 0.24);
  color: var(--accent);
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mobile-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-card-label,
.journey-label,
.pricing-name,
.contact-label {
  color: rgba(250, 204, 21, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-card-title {
  margin: 12px 0 18px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.mobile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-socials a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-panel-top,
.mobile-nav a,
.mobile-card,
.mobile-socials a {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.34s ease, transform 0.34s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.mobile-panel.is-open .mobile-panel-top,
.mobile-panel.is-open .mobile-nav a,
.mobile-panel.is-open .mobile-card,
.mobile-panel.is-open .mobile-socials a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-panel.is-open .mobile-nav a:nth-child(1) { transition-delay: 0.06s; }
.mobile-panel.is-open .mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-panel.is-open .mobile-nav a:nth-child(3) { transition-delay: 0.14s; }
.mobile-panel.is-open .mobile-nav a:nth-child(4) { transition-delay: 0.18s; }
.mobile-panel.is-open .mobile-nav a:nth-child(5) { transition-delay: 0.22s; }
.mobile-panel.is-open .mobile-nav a:nth-child(6) { transition-delay: 0.26s; }
.mobile-panel.is-open .mobile-nav a:nth-child(7) { transition-delay: 0.3s; }
.mobile-panel.is-open .mobile-card { transition-delay: 0.34s; }
.mobile-panel.is-open .mobile-socials a:nth-child(1) { transition-delay: 0.38s; }
.mobile-panel.is-open .mobile-socials a:nth-child(2) { transition-delay: 0.42s; }
.mobile-panel.is-open .mobile-socials a:nth-child(3) { transition-delay: 0.46s; }

.hero {
  padding-top: 76px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.hero-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.accent-text {
  color: var(--accent);
}

.hero-lead {
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
}

.hero-actions,
.hero-stack,
.trust-list,
.tag-row,
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-stack {
  margin-top: 34px;
}

.hero-stack li,
.trust-list span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-metrics,
.service-grid,
.project-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.metric-card,
.service-card,
.journey-card,
.pricing-card,
.faq-item,
.contact-card,
.contact-form,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-sm);
}

.metric-card,
.service-card,
.journey-card,
.pricing-card,
.contact-form,
.testimonial-card {
  padding: 28px;
}

.metric-card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.portrait-shell {
  position: relative;
  min-height: 620px;
}

.portrait-backdrop {
  position: absolute;
  inset: 38px 24px 48px 24px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.portrait-card {
  position: relative;
  margin-left: auto;
  width: min(520px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: #0d0d11;
  box-shadow: var(--shadow-lg);
}

.portrait-card img {
  width: 100%;
  min-height: 584px;
  object-fit: cover;
  border: 4px solid #050505;
  border-radius: 22px;
}

.floating-panel {
  position: absolute;
  z-index: 1;
  max-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 20px;
  background: rgba(5, 5, 7, 0.88);
  box-shadow: var(--shadow-md);
}

.floating-panel-top {
  top: 0;
  left: 0;
}

.floating-panel-right {
  right: -16px;
  top: 48%;
  transform: translateY(-50%);
}

.floating-panel-bottom {
  left: 52px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.floating-label {
  color: rgba(250, 204, 21, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-value {
  margin-top: 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
}

.trust-kicker {
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.service-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(250, 204, 21, 0.14);
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
}

.service-card ul,
.pricing-card ul,
.timeline,
.contact-cards,
.faq-list,
.footer-links {
  display: grid;
  gap: 12px;
}

.service-card li,
.pricing-card li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.service-card li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.service-card-accent {
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.05);
}

.project-zigzag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  padding-bottom: 56px;
}

.project-zigzag-grid[hidden] {
  display: none !important;
}

.project-zigzag-grid-extra {
  margin-top: 0;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-md);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(250, 204, 21, 0.22);
}

.project-zigzag-grid .project-card:nth-child(3n + 1) {
  margin-top: 0;
}

.project-zigzag-grid .project-card:nth-child(3n + 2) {
  margin-top: 56px;
}

.project-zigzag-grid .project-card:nth-child(3n) {
  margin-top: 18px;
}

.project-media {
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 12px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.06), transparent 34%),
    #0d0d12;
}

.project-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 16px 16px 0 0;
}

.project-content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 18px 18px 20px;
}

.tag-row {
  align-content: start;
  margin-bottom: 0;
  gap: 10px;
}

.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-content h3,
.project-content p,
.project-link {
  margin: 0;
}

.project-content h3 {
  font-size: 1.5rem;
  line-height: 1.06;
}

.project-content p {
  align-self: start;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.project-link {
  display: inline-flex;
  color: var(--text);
  font-weight: 800;
}

.project-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.timeline {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 1px solid rgba(250, 204, 21, 0.24);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

.pricing-card-featured {
  border-color: rgba(250, 204, 21, 0.24);
  box-shadow: 0 18px 44px rgba(250, 204, 21, 0.08);
}

.pricing-card-featured .button-primary {
  background: var(--accent);
  color: #111111;
  border-color: transparent;
}

.testimonial-shell {
  display: grid;
  gap: 24px;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.slider-button {
  min-width: 88px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
}

.testimonial-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border: 4px solid rgba(250, 204, 21, 0.22);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote {
  color: var(--text);
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.faq-btn {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 800;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.4rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
}

.faq-item.is-open {
  border-color: rgba(250, 204, 21, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.contact-copy h2 {
  max-width: 640px;
}

.contact-cards {
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.contact-card-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-icon,
.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 16px;
  background: rgba(250, 204, 21, 0.08);
}

.contact-icon i,
.contact-social-icon i {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}

.contact-card strong {
  color: var(--text);
}

.contact-socials {
  margin-top: 24px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
}

.contact-socials a:hover,
.contact-socials a:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(250, 204, 21, 0.24);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(246, 242, 234, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.56);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.form-submit {
  justify-self: start;
}

.site-footer {
  padding: 80px 0 28px;
  background: #040405;
  color: var(--text);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-copy strong,
.footer-title {
  color: var(--text);
}

.footer-brand .brand-copy small,
.footer-text,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-title {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 72;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-fab-copy,
.whatsapp-fab-icon {
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.whatsapp-fab-copy {
  max-width: 190px;
  padding: 12px 16px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 18px;
  background: rgba(5, 5, 7, 0.92);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  animation: whatsapp-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.whatsapp-fab-copy strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(250, 204, 21, 0.8);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 50%;
  background: var(--accent);
  color: #111111;
  animation:
    whatsapp-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both,
    whatsapp-pulse 2.8s ease-in-out 0.8s infinite;
}

.whatsapp-fab-icon i {
  display: block;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}

.whatsapp-fab:hover .whatsapp-fab-copy,
.whatsapp-fab:hover .whatsapp-fab-icon,
.whatsapp-fab:focus-visible .whatsapp-fab-copy,
.whatsapp-fab:focus-visible .whatsapp-fab-icon {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes whatsapp-enter {
  0% {
    opacity: 0;
    transform: translateX(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(250, 204, 21, 0.24);
  }

  50% {
    box-shadow: var(--shadow-md), 0 0 0 14px rgba(250, 204, 21, 0);
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 50%;
  background: rgba(5, 5, 7, 0.88);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.back-to-top i {
  font-size: 18px;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-heading,
  .trust-strip,
  .journey-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .project-zigzag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 40px;
  }

  .project-zigzag-grid .project-card:nth-child(3n + 1),
  .project-zigzag-grid .project-card:nth-child(3n + 2),
  .project-zigzag-grid .project-card:nth-child(3n) {
    margin-top: 0;
  }

  .project-zigzag-grid .project-card:nth-child(even) {
    margin-top: 40px;
  }

  .floating-panel-right {
    right: 16px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .site-header {
    padding-top: 14px;
  }

  .nav-shell {
    padding: 14px 18px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .button-secondary {
    min-height: 46px;
    padding: 0 16px;
  }

  .service-grid,
  .pricing-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .project-zigzag-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .project-zigzag-grid .project-card:nth-child(even) {
    margin-top: 0;
  }

  .portrait-shell {
    min-height: auto;
  }

  .portrait-backdrop {
    inset: 42px 20px 52px 20px;
  }

  .portrait-card img {
    min-height: 460px;
  }

  .floating-panel-right {
    position: static;
    margin-top: 18px;
    transform: none;
  }

  .floating-panel-bottom {
    left: 20px;
    bottom: -12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .nav-shell {
    gap: 10px;
    border-radius: 26px;
  }

  .brand-copy small,
  .footer-bottom p:last-child {
    display: none;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .nav-actions .button {
    width: auto;
  }

  .nav-actions .button-secondary {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .whatsapp-fab-copy {
    max-width: 148px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .whatsapp-fab-icon {
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 12px;
    bottom: 80px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .mobile-panel {
    width: 100vw;
    height: 100vh;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 20px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stack li,
  .trust-list span,
  .mobile-socials a {
    width: 100%;
    text-align: center;
  }

  .metric-card,
  .service-card,
  .journey-card,
  .pricing-card,
  .testimonial-card,
  .contact-form {
    padding: 22px;
  }

  .testimonial-controls {
    justify-content: stretch;
  }

  .slider-button {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
