:root {
  --color-base: #f2f6f4;
  --color-light: #ffffff;
  --color-dark: #0b1916;
  --color-ink: #10201e;
  --color-ink-strong: #091513;
  --color-ink-soft: #132925;
  --color-muted: #5a6d69;
  --color-line: rgba(16, 32, 30, 0.1);
  --color-accent: #1a9b8e;
  --color-accent-strong: #0f6f65;
  --color-accent-soft: #2fc7b8;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 44px rgba(10, 24, 21, 0.08);
  --shadow-strong: 0 32px 90px rgba(10, 24, 21, 0.22);
  --shadow-contrast: 0 48px 120px rgba(7, 15, 13, 0.45);
}

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

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-base);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-md);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink-strong);
}

p {
  margin: 0;
}

p + p {
  margin-top: 0.75rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.75rem;
}

main {
  display: block;
  padding-bottom: clamp(72px, 12vw, 120px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 90vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(64px, 16vw, 120px) 0;
  isolation: isolate;
}

.section-heading,
.section-header > div:first-child {
  display: grid;
  gap: 0.75rem;
  max-width: 540px;
}

.section-heading p,
.section-header p {
  color: var(--color-muted);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 48px);
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section-header.stack {
  flex-direction: column;
}

.grid {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: var(--color-light);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 18px 36px rgba(26, 155, 142, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(26, 155, 142, 0.26);
}

.button:focus-visible {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
}

.button-light {
  background: var(--color-light);
  color: var(--color-ink-strong);
  box-shadow: 0 10px 24px rgba(15, 32, 29, 0.2);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--color-base);
}

.ghost-button {
  background: transparent;
  border: 1px solid rgba(26, 155, 142, 0.35);
  color: var(--color-accent);
  box-shadow: none;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: var(--color-accent);
  background: rgba(26, 155, 142, 0.12);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-accent);
  font-weight: 500;
  transition: color 0.2s ease;
}

.link::after {
  content: "→";
  font-size: 0.9em;
}

.link:hover {
  color: var(--color-accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 246, 244, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-ink);
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(10, 24, 21, 0.15);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.menu-link {
  position: relative;
  padding: 0.35rem 0;
  color: var(--color-muted);
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-link.active {
  color: var(--color-ink-strong);
}

.menu-link:hover::after,
.menu-link:focus-visible::after,
.menu-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  background: var(--color-light);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.tone-light {
  background: var(--color-light);
  color: var(--color-ink);
  box-shadow: inset 0 1px 0 rgba(10, 24, 21, 0.05);
}

.tone-dark {
  background: linear-gradient(135deg, #0f2b26 0%, #122f2b 45%, #0c211d 100%);
  color: var(--color-light);
  box-shadow: var(--shadow-contrast);
}

.tone-ink {
  background: var(--color-ink-soft);
  color: var(--color-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tone-accent {
  background: linear-gradient(130deg, var(--color-accent-strong) 0%, var(--color-accent) 55%, var(--color-accent-soft) 100%);
  color: var(--color-light);
  box-shadow: var(--shadow-strong);
}

.tone-black {
  background: #071410;
  color: var(--color-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tone-dark h1,
.tone-dark h2,
.tone-dark h3,
.tone-ink h1,
.tone-ink h2,
.tone-ink h3,
.tone-accent h1,
.tone-accent h2,
.tone-accent h3,
.tone-black h1,
.tone-black h2,
.tone-black h3 {
  color: var(--color-light);
}

.tone-dark p,
.tone-ink p,
.tone-accent p,
.tone-black p,
.tone-dark .hero-subtitle,
.tone-accent .hero-subtitle,
.tone-black .hero-subtitle,
.tone-ink .hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.tone-dark .link,
.tone-ink .link,
.tone-accent .link,
.tone-black .link {
  color: rgba(255, 255, 255, 0.9);
}

.section-muted {
  background: var(--color-light);
  box-shadow: inset 0 1px 0 rgba(10, 24, 21, 0.05);
}

.section-contrast {
  background: linear-gradient(135deg, var(--color-accent-strong) 0%, var(--color-accent) 65%, var(--color-accent-soft) 100%);
  color: var(--color-light);
  box-shadow: var(--shadow-contrast);
}

.section-panel {
  background: var(--color-light);
  box-shadow: var(--shadow-soft);
}

.section-soft {
  background: linear-gradient(180deg, rgba(26, 155, 142, 0.12) 0%, rgba(26, 155, 142, 0.04) 100%);
}

.section-panel .section-header p,
.section-contrast .section-header p,
.section-contrast p {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  padding: clamp(96px, 20vw, 180px) 0 clamp(64px, 10vw, 96px);
}

.hero-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
  animation: fade-up 0.8s ease both;
}

.hero-symbol {
  width: clamp(64px, 9vw, 88px);
  height: clamp(64px, 9vw, 88px);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.hero-brand {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.64);
}

.hero-minimal h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.hero-subtitle {
  max-width: 520px;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.hero-actions {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-accent {
  background: linear-gradient(135deg, var(--color-accent-strong) 0%, var(--color-accent) 45%, var(--color-accent-soft) 100%);
  color: var(--color-light);
}

.hero-grid {
  display: grid;
  gap: clamp(32px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-copy .lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-showcase {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-light);
}

.hero-showcase ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.hero-ifood h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
}


.hero-compact {
  padding-bottom: clamp(56px, 10vw, 88px);
}

.hero-compact .hero-copy h1,
.hero-about .hero-copy h1,
.hero-contact .hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero-compact .hero-grid,
.hero-about .about-grid,
.hero-contact .contact-grid {
  align-items: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 5vw, 32px);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  animation: fade-up 0.8s ease both;
}

.project-card figure {
  margin: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}

.project-card figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 20, 16, 0.82);
  color: var(--color-light);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:focus-visible img,
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:focus-visible figcaption,
.project-card:hover figcaption {
  opacity: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 5vw, 32px);
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  display: grid;
  gap: 0.75rem;
  min-height: 200px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fade-up 0.8s ease both;
}

.tone-light .service-card {
  background: var(--color-light);
  border: 1px solid rgba(10, 24, 21, 0.06);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}


.section-muted .service-card,
.section-panel .service-card,
.section-soft .service-card {
  background: var(--color-light);
  border: 1px solid rgba(10, 24, 21, 0.06);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  color: inherit;
  font-size: 0.95rem;
}

.service-highlight {
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  box-shadow: var(--shadow-strong);
}

.cta-band .cta-content,
.final-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 6vw, 32px);
}

.cta-band h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(48px, 8vw, 72px) 0 32px;
}

.footer-grid {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: clamp(24px, 6vw, 48px);
}

.footer-grid h3 {
  color: var(--color-light);
}

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

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.pain-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
}

.pain-list li {
  position: relative;
  padding-left: 2.5rem;
  color: var(--color-ink-strong);
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  box-shadow: 0 12px 24px rgba(26, 155, 142, 0.25);
}

.solution-grid {
  display: grid;
  gap: clamp(32px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.solution-copy ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  gap: 0.75rem;
}

.compare-stack {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.compare-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(16px, 3vw, 24px);
  background: rgba(7, 15, 13, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  animation: fade-up 0.8s ease both;
}

.compare-wrapper .compare-image {
  width: 100%;
  border-radius: 12px;
}

.compare-after {
  position: absolute;
  inset: clamp(16px, 3vw, 24px);
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  --pos: 50;
  clip-path: inset(0 calc(100% - var(--pos) * 1%) 0 0);
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.testimonial-card {
  background: rgba(7, 15, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 0.85rem;
  text-align: left;
  animation: fade-up 0.8s ease both;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-soft);
}

.metrics-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  text-align: center;
  box-shadow: var(--shadow-soft);
  animation: fade-up 0.8s ease both;
}

.metric-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
}

.metric-label {
  color: var(--color-muted);
  font-weight: 500;
}

.process-grid,
.steps-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 0.75rem;
  animation: fade-up 0.8s ease both;
}

.tone-light .step-card {
  background: var(--color-light);
  border: 1px solid rgba(10, 24, 21, 0.08);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 155, 142, 0.16);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-radius: var(--radius-md);
  background: var(--color-light);
  border: 1px solid rgba(10, 24, 21, 0.08);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: fade-up 0.8s ease both;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] {
  border-color: var(--color-accent);
  box-shadow: 0 18px 44px rgba(26, 155, 142, 0.2);
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  animation: fade-up 0.8s ease both;
}

.highlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 5vw, 32px);
  background: rgba(7, 15, 13, 0.42);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  color: var(--color-light);
}

.timeline {
  list-style: none;
  padding: 0;
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-soft);
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 155, 142, 0.15);
  color: var(--color-accent);
  font-weight: 600;
}

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

.card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-soft);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-button {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 24, 21, 0.12);
  background: var(--color-light);
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-button.active {
  background: var(--color-accent);
  color: var(--color-light);
  border-color: var(--color-accent);
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  gap: 0;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  border-radius: 0;
}

.gallery-card-body {
  padding: clamp(20px, 4vw, 28px);
  display: grid;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 15, 13, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-dialog {
  position: relative;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  width: min(560px, 90vw);
  box-shadow: var(--shadow-strong);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-muted);
}

.modal-body h3 {
  margin-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 5vw, 32px);
  background: rgba(7, 15, 13, 0.55);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  color: var(--color-light);
}

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

.pricing-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.pricing-value {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-accent);
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
}

.site-footer .brand img {
  box-shadow: none;
}


.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--color-muted);
}

.tone-dark .eyebrow,
.tone-ink .eyebrow,
.tone-accent .eyebrow,
.tone-black .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.tone-dark .lead,
.tone-ink .lead,
.tone-accent .lead,
.tone-black .lead {
  color: rgba(255, 255, 255, 0.78);
}

.about-grid {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
}

.value-icon {
  font-size: 1.6rem;
}

.stats-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  text-align: center;
  display: grid;
  gap: 0.4rem;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-light);
}

.stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.story-grid {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.story-card {
  display: grid;
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 24, 21, 0.12);
  background: var(--color-light);
  color: var(--color-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 155, 142, 0.25);
}

.contact-form textarea {
  resize: vertical;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: rgba(26, 155, 142, 0.12);
  color: var(--color-accent);
}

.tone-ink .service-icon,
.section-contrast .service-icon,
.tone-dark .service-icon,
.tone-black .service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-light);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-grid .project-card:nth-child(1) {
  animation-delay: 0.05s;
}

.projects-grid .project-card:nth-child(2) {
  animation-delay: 0.1s;
}

.projects-grid .project-card:nth-child(3) {
  animation-delay: 0.15s;
}

.projects-grid .project-card:nth-child(4) {
  animation-delay: 0.2s;
}

.projects-grid .project-card:nth-child(5) {
  animation-delay: 0.25s;
}

.projects-grid .project-card:nth-child(6) {
  animation-delay: 0.3s;
}

.service-card:nth-child(1) {
  animation-delay: 0.05s;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.15s;
}

.service-card:nth-child(4) {
  animation-delay: 0.2s;
}

.compare-wrapper:nth-child(1) {
  animation-delay: 0.05s;
}

.compare-wrapper:nth-child(2) {
  animation-delay: 0.1s;
}

.compare-wrapper:nth-child(3) {
  animation-delay: 0.15s;
}

.compare-wrapper:nth-child(4) {
  animation-delay: 0.2s;
}

.compare-wrapper:nth-child(5) {
  animation-delay: 0.25s;
}

.compare-wrapper:nth-child(6) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.05s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.15s;
}

.metric-card:nth-child(1) {
  animation-delay: 0.05s;
}

.metric-card:nth-child(2) {
  animation-delay: 0.1s;
}

.metric-card:nth-child(3) {
  animation-delay: 0.15s;
}

.step-card:nth-child(1) {
  animation-delay: 0.05s;
}

.step-card:nth-child(2) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3) {
  animation-delay: 0.15s;
}

.faq-list details:nth-child(1) {
  animation-delay: 0.05s;
}

.faq-list details:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-list details:nth-child(3) {
  animation-delay: 0.15s;
}

.faq-list details:nth-child(4) {
  animation-delay: 0.2s;
}

@media (max-width: 960px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .cta-content,
  .final-cta .cta-content,
  .highlight-card,
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 72px;
    right: 5vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px) scale(0.9);
    opacity: 0;
    pointer-events: none;
  }

  .menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding-top: 120px;
  }

  .cta-bar,
  .custom-service {
    text-align: center;
    justify-content: center;
  }

  .metrics {
    justify-content: center;
  }

  .whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

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

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

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

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

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

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

  .hero {
    padding-top: clamp(88px, 24vw, 140px);
  }

  .projects-grid,
  .service-grid,
  .compare-stack,
  .testimonial-grid,
  .metrics-grid,
  .process-grid,
  .steps-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-card figcaption {
    font-size: 1rem;
  }
}

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