:root {
  --gold: #d8b856;
  --gold-dark: #af8f32;
  --dark: #191919;
  --dark-soft: #2a2a2a;
  --muted: #6e6e6e;
  --line: #e9e2d2;
  --cream: #fbf8f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 25, 25, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid rgba(216, 184, 86, 0.22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a:not(.btn) {
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(216, 184, 86, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #e7ca72;
  box-shadow: 0 22px 42px rgba(216, 184, 86, 0.36);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--dark);
  border-color: var(--gold);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.section {
  padding: 80px 0;
  scroll-margin-top: 96px;
}

.section-muted {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 178px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.6) 42%, rgba(8, 8, 8, 0)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.18) 46%),
    url("../img/hero-siam-pharma-bg.png") center/cover;
}

.hero-full-content {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy {
  max-width: 900px;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(330px, 32vw);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.78);
}

.event-grid,
.contact-redesign {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.1vw, 5.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.1vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.contact-info p {
  color: inherit;
  max-width: 660px;
  font-size: 1.08rem;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 44px;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
}

.about-editorial .section-copy {
  position: relative;
  z-index: 1;
  align-self: start;
}

.about-btn {
  margin-top: 12px;
}

.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: end;
}

.about-mosaic img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-wide {
  min-height: 430px;
  border-radius: 36px 36px 12px 36px;
}

.about-tall {
  min-height: 560px;
  border-radius: 12px 36px 36px 36px;
}

.about-stamp {
  position: absolute;
  left: 37%;
  bottom: 38px;
  width: 210px;
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px 26px;
  border: 1px solid rgba(216, 184, 86, 0.36);
  border-radius: 30px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
  text-align: center;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(14px);
}

.about-stamp img,
.about-stamp span {
  display: block;
}

.about-stamp img {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(216, 184, 86, 0.22));
}

.about-stamp span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.about-principles {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.about-principles article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-principles article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.72);
  box-shadow: 0 28px 70px rgba(25, 25, 25, 0.12);
}

.about-principles article:hover i {
  transform: rotate(-8deg) scale(1.08);
}

.about-principles span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-weight: 800;
}

.about-principles i,
.product-tab i,
.contact-card i,
.contact-photo-card i {
  color: var(--gold);
  transition: transform 0.25s ease;
}

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

.section-copy p,
.section-heading p,
.contact-info p {
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.event-list span {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-weight: 700;
}

.event-list span::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--gold);
  background: transparent;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.contact-form,
.contact-card,
.faq-list details {
  border: 1px solid rgba(216, 184, 86, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
}

.product-showcase {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-tabs {
  display: grid;
  gap: 12px;
}

.product-tab {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  color: var(--dark);
  padding: 18px 20px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.product-tab:hover,
.product-tab.is-active {
  transform: translateX(8px);
  border-color: rgba(216, 184, 86, 0.7);
  background: var(--dark);
  color: var(--white);
}

.product-tab span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
}

.product-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 470px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 82px rgba(25, 25, 25, 0.16);
}

.product-image-wrap {
  min-height: 100%;
  background: #f5efe1;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-panel:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-panel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px;
}

.product-panel-copy span {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.product-panel-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.product-panel-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ready-delivery-section {
  background:
    linear-gradient(135deg, rgba(216, 184, 86, 0.12), transparent 42%),
    var(--cream);
}

.ready-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.ready-delivery-copy {
  max-width: 610px;
}

.ready-delivery-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ready-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ready-delivery-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(216, 184, 86, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), #fffaf0);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ready-delivery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.72);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.ready-delivery-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.35rem;
}

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

.ready-delivery-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-section {
  background: var(--white);
}

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

.audience-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), #fffaf0);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.72);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.audience-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.55rem;
  box-shadow: 0 18px 38px rgba(25, 25, 25, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.audience-card:hover .audience-icon {
  transform: rotate(-7deg) scale(1.05);
  background: var(--gold);
  color: var(--dark);
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3 {
  font-size: 1.25rem;
}

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

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--dark);
  font-weight: 900;
}

.audience-card a:hover {
  color: var(--gold-dark);
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), #fffaf0);
}

.process-intro {
  max-width: 820px;
  margin-bottom: 58px;
}

.process-intro p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(216, 184, 86, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 184, 86, 0.75);
  background: var(--white);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.process-step:hover .step-icon {
  transform: translateY(-4px) rotate(-4deg);
  background: var(--gold);
  color: var(--dark);
}

.process-step:nth-child(even) {
  margin-top: 56px;
}

.step-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-weight: 800;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.35rem;
  box-shadow: 0 18px 38px rgba(25, 25, 25, 0.16);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.process-step h3 {
  font-size: 1.18rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding: 28px;
  border-radius: 30px;
  background: var(--dark);
  color: var(--white);
}

.process-cta strong {
  font-size: 1.25rem;
}

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

.footer-legal {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-legal strong {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid .footer-legal span {
  margin-bottom: 0;
}

.cta-band {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.62) 58%, rgba(10, 10, 10, 0.42)),
    url("../img/cta-parallax-siam.png") center/cover fixed;
}

.cta-inner {
  max-width: 930px;
}

.cta-inner span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-section {
  background:
    linear-gradient(90deg, rgba(216, 184, 86, 0.12), transparent 34%),
    var(--cream);
}

.testimonial-editorial {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: center;
}

.testimonial-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.testimonial-board {
  display: grid;
  grid-template-columns: 0.62fr 1fr 82px;
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  background: var(--dark);
  color: var(--white);
}

.testimonial-side>span {
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-side strong {
  font-size: 1.5rem;
  line-height: 1.18;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.trust-list small {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-list i {
  color: var(--gold);
}

.testimonial-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  min-height: 430px;
}

.quote-icon {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 2.6rem;
}

.testimonial-rating {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.testimonial-feature p {
  color: var(--dark);
  font-size: clamp(1.24rem, 1.12vw, 1.85rem);
  line-height: 1.36;
  overflow-wrap: anywhere;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.author-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author span {
  color: var(--muted);
}

.testimonial-tabs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.testimonial-tab {
  min-width: 82px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
  color: var(--gold-dark);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease;
}

.testimonial-tab:last-child {
  border-bottom: 0;
}

.testimonial-tab:hover,
.testimonial-tab.is-active {
  background: var(--gold);
  color: var(--dark);
}

.event-section {
  position: relative;
  overflow: hidden;
}

.event-section .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.event-list {
  margin-bottom: 32px;
}

.event-list span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.event-list span:hover {
  transform: translateX(8px);
  border-color: rgba(216, 184, 86, 0.6);
  background: rgba(216, 184, 86, 0.1);
}

.event-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.instagram-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(216, 184, 86, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf0, var(--white));
}

.instagram-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.instagram-copy {
  max-width: 520px;
  justify-self: end;
}

.instagram-copy p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.instagram-phone {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.instagram-phone::before {
  content: "";
  position: absolute;
  width: 62%;
  height: 78%;
  left: 10%;
  top: 12%;
  border-radius: 50%;
  background: rgba(216, 184, 86, 0.18);
  filter: blur(34px);
}

.instagram-phone img {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  border-radius: 38px;
  filter: drop-shadow(0 34px 70px rgba(25, 25, 25, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.instagram-phone:hover img {
  transform: translateY(-8px) rotate(-1deg);
  filter: drop-shadow(0 42px 86px rgba(25, 25, 25, 0.26));
}

.instagram-badge {
  position: absolute;
  z-index: 2;
  right: 8%;
  left: auto;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(216, 184, 86, 0.4);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.instagram-badge i {
  color: var(--gold);
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.contact-redesign {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-photo-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.14);
}

.contact-photo-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 42%;
  background: var(--cream);
  transition: transform 0.45s ease;
}


.contact-photo-card div {
  padding: 24px;
}

.contact-photo-card strong,
.contact-photo-card span {
  display: block;
}

.contact-photo-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  color: var(--gold);
}

.contact-photo-card span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  min-width: 0;
  padding: 18px 20px;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 184, 86, 0.7);
  box-shadow: 0 24px 62px rgba(25, 25, 25, 0.11);
}

.contact-card:hover i {
  transform: scale(1.12);
}

.contact-card strong,
.contact-card a,
.contact-card span {
  display: block;
}

.contact-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-card a,
.contact-card span {
  color: var(--dark);
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.contact-card-location {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 46px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  padding: 16px 18px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 184, 86, 0.18);
}

.form-privacy-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  margin: 4px 0 10px;
  padding: 16px;
  border: 1px solid rgba(216, 184, 86, 0.28);
  border-radius: 18px;
  background: #fffaf0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-privacy-note i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(216, 184, 86, 0.18);
  color: var(--gold-dark);
}

.form-privacy-note p {
  margin: 0;
}

.form-privacy-note strong,
.form-privacy-note a {
  color: var(--dark);
  font-weight: 900;
}

.form-privacy-note a:hover {
  color: var(--gold-dark);
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.faq-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-heading .eyebrow {
  justify-content: center;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.faq-list details {
  padding: 0 20px;
  min-height: 74px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 184, 86, 0.65);
  box-shadow: 0 22px 58px rgba(25, 25, 25, 0.09);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 17px 32px 17px 0;
  font-weight: 800;
}

.faq-list summary::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--gold-dark);
}

.faq-list details[open] summary::after {
  content: "\f068";
}

.faq-list p {
  margin-bottom: 16px;
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a[aria-current="page"]::after {
  width: 100%;
}

.inner-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 84px;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.72) 46%, rgba(8, 8, 8, 0.28)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.22)),
    url("../img/hero-siam-pharma-bg.png") center/cover;
}

.inner-hero-content {
  position: relative;
  min-height: 526px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 330px;
  gap: 56px;
  align-items: end;
}

.inner-hero-copy {
  max-width: 760px;
}

.inner-hero h1 {
  max-width: 700px;
  font-size: clamp(2.25rem, 4vw, 4.8rem);
}

.inner-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb i {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
}

.inner-hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.inner-hero-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.35rem;
}

.inner-hero-card strong,
.inner-hero-card span {
  display: block;
}

.inner-hero-card strong {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.25rem;
}

.inner-hero-card span {
  color: rgba(255, 255, 255, 0.78);
}

.qs-about {
  row-gap: 44px;
}

.qs-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.qs-stats article {
  min-height: 154px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.qs-stats article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.7);
  box-shadow: 0 28px 70px rgba(25, 25, 25, 0.12);
}

.qs-stats i,
.qs-step i,
.qs-principles i {
  color: var(--gold);
}

.qs-stats i {
  display: block;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.qs-stats strong,
.qs-stats span {
  display: block;
}

.qs-stats strong {
  color: var(--dark);
  font-size: 2rem;
  line-height: 1;
}

.qs-stats span {
  color: var(--muted);
  font-weight: 700;
}

.qs-timeline-layout .section-heading {
  margin-bottom: 36px;
}

.qs-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.qs-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: var(--line);
}

.qs-step {
  position: relative;
  min-height: 294px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.qs-step:nth-child(even) {
  margin-top: 38px;
}

.qs-step:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.7);
  box-shadow: 0 28px 70px rgba(25, 25, 25, 0.12);
}

.qs-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-weight: 900;
}

.qs-step i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 20px;
  background: rgba(216, 184, 86, 0.15);
  font-size: 1.35rem;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.qs-step:hover i {
  transform: rotate(-7deg) scale(1.06);
  background: var(--gold);
  color: var(--dark);
}

.qs-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.qs-mvv-grid,
.qs-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.qs-mvv-grid article {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.qs-mvv-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 184, 86, 0.72);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.qs-mvv-grid div {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.45rem;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.qs-mvv-grid article:hover div {
  transform: rotate(-7deg) scale(1.06);
  background: var(--gold);
  color: var(--dark);
}

.qs-mvv-grid p {
  color: var(--muted);
}

.qs-diff-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.qs-diff-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.qs-diff-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 184, 86, 0.48);
  background: rgba(255, 255, 255, 0.065);
}

.qs-diff-grid i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(216, 184, 86, 0.14);
  color: var(--gold);
  font-size: 1.35rem;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.qs-diff-grid article:hover i {
  transform: rotate(-7deg) scale(1.06);
  background: var(--gold);
  color: var(--dark);
}

.qs-diff-grid h3 {
  color: var(--white);
}

.qs-diff-grid p {
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 0;
}

.qs-structure {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.qs-structure-media {
  position: relative;
}

.qs-structure-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.qs-structure-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 184, 86, 0.34);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.9);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.qs-structure-badge img {
  width: 78px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.qs-principles {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.qs-principles article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(25, 25, 25, 0.05);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.qs-principles article:hover {
  transform: translateX(8px);
  border-color: rgba(216, 184, 86, 0.68);
  box-shadow: 0 22px 56px rgba(25, 25, 25, 0.11);
}

.qs-principles i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(216, 184, 86, 0.15);
  font-size: 1.25rem;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.qs-principles article:hover i {
  transform: rotate(-7deg) scale(1.05);
  background: var(--gold);
  color: var(--dark);
}

.qs-principles h3 {
  margin-bottom: 6px;
}

.qs-principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.qs-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qs-team-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.qs-team-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 184, 86, 0.7);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.qs-team-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.qs-team-grid article:hover img {
  transform: scale(1.04);
}

.qs-team-grid article > div {
  padding: 28px;
}

.qs-team-grid span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qs-team-grid span i {
  color: var(--gold);
}

.qs-team-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.qs-final-cta .cta-inner {
  max-width: 820px;
}

.privacy-hero {
  min-height: 640px;
}

.talks-section {
  background:
    linear-gradient(180deg, var(--cream), var(--white));
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.talk-card {
  overflow: hidden;
  border: 1px solid rgba(216, 184, 86, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.talk-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 184, 86, 0.72);
  box-shadow: 0 30px 76px rgba(25, 25, 25, 0.13);
}

.talk-card-media {
  display: block;
  overflow: hidden;
  background: var(--dark);
}

.talk-card-media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.45s ease;
}

.talk-card:hover .talk-card-media img {
  transform: scale(1.04);
}

.talk-card-content {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.talk-card-content h3 {
  margin-bottom: 0;
  font-size: 1.38rem;
  line-height: 1.16;
}

.talk-card-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.talk-meta,
.talk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.talk-meta span,
.talk-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.talk-meta span {
  color: var(--gold-dark);
  font-size: 0.84rem;
}

.talk-tags span {
  padding: 8px 12px;
  background: #fff7df;
  color: var(--dark);
  font-size: 0.78rem;
}

.talk-card .btn {
  justify-self: start;
  margin-top: 4px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 118px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 25, 25, 0.06);
}

.privacy-summary h2 {
  font-size: clamp(1.82rem, 2.55vw, 2.55rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.privacy-summary p {
  color: var(--muted);
  margin-bottom: 28px;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(25, 25, 25, 0.045);
}

.privacy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

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

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content a {
  color: var(--gold-dark);
  font-weight: 800;
}

.privacy-content a:hover {
  color: var(--dark);
}

.privacy-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(760px, calc(100% - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(216, 184, 86, 0.3);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.privacy-notice.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.privacy-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.95rem;
}

.privacy-notice p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-notice-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.privacy-notice-actions a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.privacy-notice-actions a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(216, 184, 86, 0.22);
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 8px;
  }

  .nav-menu .btn {
    margin-top: 10px;
  }

  .event-grid,
  .contact-redesign,
  .about-editorial,
  .instagram-layout,
  .product-showcase,
  .product-panel,
  .ready-delivery-layout,
  .inner-hero-content,
  .qs-structure {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: auto;
    padding-top: 136px;
  }

  .inner-hero-content {
    min-height: auto;
  }

  .inner-hero-card {
    max-width: 420px;
  }

  .qs-stats,
  .qs-timeline,
  .qs-mvv-grid,
  .qs-diff-grid,
  .talks-grid,
  .privacy-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }

  .qs-timeline::before {
    display: none;
  }

  .qs-step:nth-child(even) {
    margin-top: 0;
  }

  .instagram-copy {
    max-width: none;
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 28px;
  }

  .about-editorial .section-copy {
    position: static;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .product-panel {
    min-height: auto;
  }

  .product-image-wrap img {
    height: 360px;
  }

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

  .ready-delivery-grid {
    grid-template-columns: 1fr;
  }

  .ready-delivery-card {
    min-height: auto;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step:nth-child(even) {
    margin-top: 0;
  }

  .contact-quick {
    grid-template-columns: 1fr;
  }

  .testimonial-editorial,
  .testimonial-board {
    grid-template-columns: 1fr;
  }

  .testimonial-tabs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .testimonial-tab {
    min-width: 0;
    min-height: 64px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .testimonial-tab:last-child {
    border-right: 0;
  }

  .qs-structure-media img {
    height: 470px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .brand img,
  .footer-logo {
    width: 146px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .hero-full-content {
    min-height: 600px;
  }

  .inner-hero {
    padding-bottom: 64px;
  }

  .inner-hero h1 {
    font-size: 2.2rem;
  }

  .inner-hero-card {
    padding: 24px;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .about-wide,
  .about-tall {
    min-height: 320px;
    border-radius: 28px;
  }

  .about-stamp {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 174px;
    min-height: 112px;
    padding: 18px;
  }

  .product-tab:hover,
  .product-tab.is-active {
    transform: none;
  }

  .ready-delivery-card {
    padding: 24px;
  }

  .ready-delivery-copy .btn {
    width: 100%;
  }

  .audience-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .audience-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .qs-stats,
  .qs-timeline,
  .qs-mvv-grid,
  .qs-diff-grid,
  .qs-team-grid,
  .talks-grid {
    grid-template-columns: 1fr;
  }

  .privacy-notice {
    flex-direction: column;
    align-items: flex-start;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 18px;
  }

  .privacy-notice-actions {
    width: 100%;
    justify-content: space-between;
  }

  .qs-stats article,
  .qs-step,
  .qs-mvv-grid article,
  .qs-diff-grid article {
    min-height: auto;
  }

  .qs-structure-media img,
  .qs-team-grid img,
  .talk-card-media img {
    height: 320px;
  }

  .qs-structure-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .qs-principles article {
    grid-template-columns: 1fr;
  }

  .qs-principles article:hover {
    transform: translateY(-6px);
  }

  .product-panel-copy,
  .contact-form {
    padding: 22px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-phone img {
    width: 100%;
  }

  .instagram-badge {
    left: 16px;
    right: auto;
    bottom: 16px;
  }

  .testimonial-feature,
  .testimonial-side {
    padding: 28px;
  }

  .testimonial-feature p {
    font-size: 1.16rem;
  }
}

.footer-bottom a {
  font-style: italic;
}
