/* ===========================================================
   QUALITY AGENCY LATAM — Design Tokens
   Color: cream base #FAF6EE, cream alt #F0E6D2, ink #1A1410,
          brown #5C3A21, gold core #C9A24B, gold light #F3D98A, gold deep #7A5318
   Type: Open Sans (Bold 800/700 for headings, 400 for body)
   Signature: dieline (packaging cut/crease lines) motif throughout
   =========================================================== */

:root {
  --cream: #FAF6EE;
  --cream-alt: #F0E6D2;
  --cream-deep: #E8DCC0;
  --ink: #1A1410;
  --brown: #5C3A21;
  --brown-soft: #7A5A3E;
  --gold-light: #F3D98A;
  --gold: #C9A24B;
  --gold-deep: #8A6422;
  --gold-darker: #7A5318;

  --font-display: 'Open Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ===========================================================
   SHARED ELEMENTS
   =========================================================== */

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.section-eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 1.3rem;
}
.section-title--center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 1.3rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(138, 100, 34, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(138, 100, 34, 0.35); }
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown-soft);
}
.btn--ghost:hover { background: rgba(92, 58, 33, 0.06); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold-darker);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover { background: rgba(201, 162, 75, 0.1); }
.btn--full { width: 100%; }

/* ===========================================================
   TRANSLATE BAR
   =========================================================== */

.translate-bar {
  background: var(--ink);
  padding: 0.5rem 0;
}
.translate-bar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.translate-bar__label {
  font-size: 0.72rem;
  color: var(--cream-deep);
  letter-spacing: 0.03em;
}
.translate-bar__langs { display: flex; gap: 0.4rem; }
.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cream-deep);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-btn:hover { background: rgba(243, 217, 138, 0.15); color: var(--gold-light); }
.lang-btn--active { background: var(--gold); color: var(--ink); }

/* ===========================================================
   HEADER
   =========================================================== */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand-mark__logo { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold-darker); }
.main-nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
}
.main-nav__cta:hover { background: var(--brown); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* ===========================================================
   HERO
   =========================================================== */

.hero {
  position: relative;
  padding: 5.5rem 2rem 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
}
.hero__dielines {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__dielines svg { width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.6rem;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: 340px;
  height: auto;
  margin-inline: auto;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.hero__headline {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 1.3rem;
}
.hero__headline-highlight {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--brown-soft);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.2rem;
}

.hero__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.3rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
}
.trust-dot { color: var(--gold); }

/* ===========================================================
   ABOUT
   =========================================================== */

.about {
  padding: 6rem 2rem;
  background: var(--cream);
}
.about__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about__lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.about__body {
  font-size: 1rem;
  color: var(--brown-soft);
  margin-bottom: 2rem;
}
.about__ceo {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.6rem;
  border-top: 1px solid var(--cream-deep);
}
.about__ceo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__ceo-name { font-weight: 700; font-size: 1rem; color: var(--ink); }
.about__ceo-title { font-size: 0.85rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.2rem; }
.about__ceo-creds { font-size: 0.82rem; color: var(--brown-soft); }

.about__col--stats {
  display: grid;
  gap: 1rem;
}
.stat-card {
  background: var(--cream-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border: 1px solid var(--cream-deep);
}
.stat-card--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
}
.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.stat-card__label {
  font-size: 0.85rem;
  color: var(--brown-soft);
  font-weight: 600;
}
.stat-card--gold .stat-card__label { color: var(--ink); }

/* ===========================================================
   VALUE PROP
   =========================================================== */

.value-prop {
  padding: 5.5rem 2rem;
  background: linear-gradient(135deg, var(--ink) 0%, #2A1F14 100%);
}
.value-prop__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.value-prop .section-eyebrow--center { color: var(--gold-light); }
.value-prop .section-title--center { color: var(--cream); }
.value-prop__body {
  font-size: 1.05rem;
  color: var(--cream-deep);
  line-height: 1.75;
}

/* ===========================================================
   SERVICES
   =========================================================== */

.services {
  padding: 6rem 2rem;
  background: var(--cream);
}
.services__inner {
  max-width: var(--container);
  margin-inline: auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.service-card {
  background: var(--cream-alt);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(92, 58, 33, 0.08); }
.service-card--featured {
  background: linear-gradient(150deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  grid-column: span 1;
}
.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.5);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.service-card__title {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--brown-soft);
}
.service-card--featured .service-card__desc { color: #4A3617; }

/* ===========================================================
   DIELINES SPOTLIGHT
   =========================================================== */

.dielines {
  position: relative;
  padding: 6rem 2rem;
  background: var(--ink);
  overflow: hidden;
}
.dielines__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dielines__bg svg { width: 100%; height: 100%; }
.dielines__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.dielines .section-eyebrow { color: var(--gold-light); text-align: center; }
.dielines .section-title { color: var(--cream); text-align: center; }
.dielines__body {
  font-size: 1.05rem;
  color: var(--cream-deep);
  margin-bottom: 2.6rem;
}
.dielines__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
}
.dielines__point {
  background: rgba(243, 217, 138, 0.07);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
}
.dielines__point-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.dielines__point p {
  font-size: 0.88rem;
  color: var(--cream-deep);
}

/* ===========================================================
   PORTFOLIO
   =========================================================== */

.portfolio {
  padding: 6rem 2rem;
  background: var(--cream);
}
.portfolio__inner {
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
}
.portfolio__note {
  color: var(--brown-soft);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.portfolio__team-highlight {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.portfolio__designer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin: 0 0 1.2rem;
}
.portfolio__designer-name span {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brown-soft);
  font-size: 0.95rem;
}
.portfolio__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.portfolio__carousel {
  overflow: hidden;
  border-radius: var(--radius-md);
  flex: 1 1 auto;
  min-width: 0;
}
.portfolio__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.portfolio__arrow:hover {
  background: var(--gold);
  color: var(--cream);
}
.portfolio__arrow:active {
  transform: scale(0.94);
}
@media (max-width: 640px) {
  .portfolio__arrow {
    width: 36px;
    height: 36px;
  }
  .portfolio__carousel-wrap {
    gap: 0.4rem;
  }
}
.portfolio__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.portfolio__track::-webkit-scrollbar {
  display: none;
}
.portfolio__slide {
  flex: 0 0 320px;
  height: 220px;
  border-radius: var(--radius-md);
}
.portfolio__slide--placeholder {
  background: repeating-linear-gradient(135deg, var(--cream-alt), var(--cream-alt) 14px, var(--cream-deep) 14px, var(--cream-deep) 28px);
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.portfolio__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.portfolio__tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brown-soft);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.portfolio__tab:hover {
  background: var(--cream-alt);
}
.portfolio__tab--active {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.portfolio__panel {
  display: none;
}
.portfolio__panel--active {
  display: block;
}
.portfolio__slide {
  overflow: hidden;
  cursor: pointer;
}
.portfolio__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.portfolio__slide:hover img {
  transform: scale(1.05);
}
.portfolio__slide--video {
  cursor: pointer;
}
.portfolio__slide--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

/* ===========================================================
   CONTACT FORM
   =========================================================== */

.contact {
  padding: 6rem 2rem;
  background: var(--cream-alt);
}
.contact__inner {
  max-width: 760px;
  margin-inline: auto;
}
.contact-form {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.6rem;
  margin-top: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.req { color: var(--gold-darker); }
.optional { font-weight: 400; color: var(--brown-soft); font-size: 0.78rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
}
textarea { resize: vertical; }

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brown-soft);
}
.checkbox-line input { width: auto; }

.budget-input {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.6rem;
}

.contact-form__hours {
  text-align: center;
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin-top: 1.2rem;
}

.form-success {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-darker);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

/* TIMEZONE WIDGET */
.tz-widget {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.tz-widget__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.8rem;
}
.tz-widget__select {
  max-width: 380px;
  margin-inline: auto;
  margin-bottom: 0.9rem;
}
.tz-widget__result {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-darker);
}

/* CALENDLY CTA */
.call-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-deep);
}
.call-cta__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.call-cta__note {
  font-size: 0.82rem;
  color: var(--brown-soft);
  margin-top: 0.9rem;
  max-width: 480px;
  margin-inline: auto;
}

/* ===========================================================
   OPINIONS
   =========================================================== */

.opinions {
  padding: 6rem 2rem;
  background: var(--cream);
}
.opinions__inner {
  max-width: 760px;
  margin-inline: auto;
}
.opinions__list { margin: 2rem 0; }
.opinions__empty {
  text-align: center;
  color: var(--brown-soft);
  font-size: 0.92rem;
  padding: 2rem;
  background: var(--cream-alt);
  border-radius: var(--radius-md);
}
.opinion-form {
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
}
.opinion-form__title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.opinion-form__note { font-size: 0.85rem; color: var(--brown-soft); margin-bottom: 1.4rem; }

/* ===========================================================
   FAQ
   =========================================================== */

.faq {
  padding: 6rem 2rem;
  background: var(--cream-alt);
}
.faq__inner {
  max-width: 760px;
  margin-inline: auto;
}
.faq__list { margin-top: 2.5rem; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
}
.faq-item summary {
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--brown-soft);
}

/* ===========================================================
   FOOTER
   =========================================================== */

.site-footer {
  background: var(--ink);
  padding: 4rem 2rem 2.5rem;
}
.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
}
.site-footer__logo { height: 42px; width: auto; margin-inline: auto; margin-bottom: 0.6rem; }
.site-footer__name {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
}
.site-footer__heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.site-footer__col p { font-size: 0.88rem; color: var(--cream-deep); }
.site-footer__copy {
  font-size: 0.78rem;
  color: var(--brown-soft);
}

/* ===========================================================
   WHATSAPP FLOAT
   =========================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 200;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 22px rgba(0,0,0,0.25), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===========================================================
   RESPONSIVE — TABLET & MOBILE
   =========================================================== */

@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .dielines__points { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .main-nav--open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 3.5rem 1.5rem 3.5rem; }
  .hero__logo { width: 260px; }

  .about, .services, .value-prop, .dielines, .portfolio, .contact, .opinions, .faq {
    padding: 3.5rem 1.5rem;
  }

  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .budget-input { grid-template-columns: 100px 1fr; }

  .contact-form { padding: 1.8rem 1.5rem; }
  .opinion-form { padding: 1.8rem 1.5rem; }

  .translate-bar__inner { justify-content: center; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
