:root {
  --bg: #f7f7ff;
  --bg-soft: #fff9ff;
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: #fffaff;
  --ink: #2a2250;
  --muted: #6f6793;
  --line: rgba(84, 74, 132, 0.14);
  --accent: #ff8dc7;
  --accent-deep: #5a8cff;
  --accent-soft: #ffe0f1;
  --leaf: #68d6ae;
  --berry: #ff9f4d;
  --shadow: 0 26px 70px rgba(101, 93, 168, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 141, 199, 0.28), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(90, 140, 255, 0.22), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(255, 206, 97, 0.2), transparent 28%),
    linear-gradient(180deg, #fff8fd 0%, #f7f7ff 46%, #f1fbff 100%);
  font-family: "Plus Jakarta Sans", "Noto Sans SC", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 82%);
  opacity: 0.3;
}

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

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

.ambient {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.34;
  z-index: 0;
}

.ambient-left {
  top: 8rem;
  left: -10rem;
  background: rgba(255, 141, 199, 0.46);
}

.ambient-right {
  right: -9rem;
  top: 26rem;
  background: rgba(90, 140, 255, 0.24);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 2.5rem;
}

.announcement-bar,
.site-header,
.section-panel,
.workflow-shell,
.strategy-card,
.faq-item,
.contact-form,
.whatsapp-qr-card,
.contact-note,
.site-footer {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 255, 0.76);
  color: var(--muted);
  font-size: 0.92rem;
}

.announcement-bar a {
  font-weight: 700;
  color: var(--ink);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  position: sticky;
  top: 0.8rem;
  border: 1px solid rgba(84, 74, 132, 0.12);
  border-radius: 999px;
  background: rgba(252, 248, 255, 0.82);
  box-shadow: 0 10px 30px rgba(98, 88, 171, 0.08);
  z-index: 10;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 18px;
  font-weight: 800;
  color: white;
  background:
    radial-gradient(circle at 30% 30%, #ffd4eb, transparent 30%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.announcement-bar a:hover,
.footer-meta a:hover {
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lang-btn {
  border: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--ink);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-small {
  min-height: 2.8rem;
  padding-inline: 1.15rem;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 14px 36px rgba(98, 113, 235, 0.24);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(98, 92, 151, 0.15);
  color: var(--ink);
}

.section {
  padding: 5rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 4.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-text,
.section-text,
.contact-note p,
.form-header p,
.form-note,
.faq-answer,
.card-text,
.workflow-text,
.strategy-list,
.mini-card span,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  margin: 1.25rem 0 0;
  max-width: 56ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-highlights,
.buyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.flavor-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.highlight-chip,
.buyer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.76rem 1rem;
  border: 1px solid rgba(78, 49, 28, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 0.93rem;
}

.highlight-chip::before,
.buyer-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--berry) 100%);
}

.flavor-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(66, 39, 20, 0.1);
  background: rgba(255, 248, 239, 0.82);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-art {
  display: grid;
  gap: 1rem;
}

.hero-showcase,
.hero-proof-band {
  border: 1px solid rgba(70, 38, 17, 0.09);
  box-shadow: var(--shadow);
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top right, rgba(255, 166, 210, 0.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(126, 218, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 255, 0.88) 0%, rgba(245, 249, 255, 0.8) 100%);
}

.hero-media {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(78, 44, 22, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.hero-media-primary {
  grid-row: span 2;
}

.hero-media-visual {
  position: relative;
  min-height: 13rem;
  background: linear-gradient(135deg, #ffe4f4 0%, #dff2ff 100%);
}

.hero-media-primary .hero-media-visual {
  min-height: 30rem;
}

.hero-media-visual img,
.hero-media-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-caption {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
}

.hero-media-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(35, 22, 15, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-media-caption strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-media-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.hero-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) - 2px);
  background: rgba(251, 250, 255, 0.84);
}

.proof-card {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(103, 92, 158, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.proof-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.08rem;
}

.hero-panel,
.section-panel,
.workflow-shell,
.strategy-card,
.contact-form,
.whatsapp-qr-card,
.contact-note,
.site-footer {
  border: 1px solid rgba(70, 38, 17, 0.09);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 120, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.82) 0%, rgba(255, 243, 229, 0.72) 100%);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.15rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-topline strong {
  color: var(--ink);
}

.stack {
  display: grid;
  gap: 1rem;
}

.stack-card {
  padding: 1.25rem;
  border-radius: 24px;
  color: var(--ink);
  border: 1px solid rgba(80, 38, 18, 0.1);
}

.stack-card strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.18rem;
}

.stack-card p {
  margin: 0.65rem 0 0;
  color: rgba(35, 22, 15, 0.8);
  line-height: 1.65;
}

.stack-tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 700;
}

.stack-card-coral {
  background: linear-gradient(135deg, #ffc48e 0%, #ffe5ca 100%);
}

.stack-card-cream {
  background: linear-gradient(135deg, #fff5da 0%, #fffdf5 100%);
}

.stack-card-dark {
  color: white;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 94, 0.18), transparent 24%),
    linear-gradient(135deg, #2c1b13 0%, #5f2d1d 100%);
}

.stack-card-dark p,
.stack-card-dark .stack-tag {
  color: rgba(255, 255, 255, 0.82);
}

.stack-card-dark .stack-tag {
  background: rgba(255, 255, 255, 0.12);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(68, 40, 22, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.mini-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 54rem;
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.section-text {
  margin-top: 1rem;
  font-size: 1rem;
}

.section-panel {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at right top, rgba(90, 140, 255, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(255, 141, 199, 0.12), transparent 22%),
    rgba(255, 253, 255, 0.76);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.9rem;
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(99, 87, 155, 0.12);
  background: rgba(255, 253, 255, 0.84);
  box-shadow: var(--shadow);
}

.media-card.featured {
  grid-row: span 1;
}

.media-visual {
  position: relative;
  aspect-ratio: 1 / 1.04;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 195, 144, 0.5), transparent 30%),
    linear-gradient(135deg, #fff1de 0%, #ffe0cb 48%, #ffd6b8 100%);
}

.media-card.featured .media-visual {
  min-height: 0;
}

.media-visual img,
.media-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  text-align: center;
  color: rgba(35, 22, 15, 0.8);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.6), transparent 20%),
    linear-gradient(135deg, rgba(255, 247, 236, 0.6) 0%, rgba(255, 213, 176, 0.95) 100%);
}

.media-placeholder strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.media-content {
  display: grid;
  gap: 0.65rem;
  padding: 1.05rem 1.05rem 1.15rem;
}

.media-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(35, 22, 15, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.media-content h3 {
  font-family: "Plus Jakarta Sans", "Noto Sans SC", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.media-content p {
  margin: 0;
  color: var(--accent-deep);
  line-height: 1.45;
  font-size: 0.92rem;
  font-weight: 700;
}

.media-hint {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(72, 40, 22, 0.08);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-grid,
.capability-grid,
.faq-list,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.9rem;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.product-card,
.capability-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(98, 90, 149, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 164, 207, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(129, 204, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.74);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card {
  display: grid;
  padding: 0;
}

.product-card-visual {
  position: relative;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 195, 144, 0.5), transparent 30%),
    linear-gradient(135deg, #fff1de 0%, #ffe0cb 48%, #ffd6b8 100%);
}

.product-card-visual img,
.product-card-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-content {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1rem 1.15rem;
}

.product-card:hover,
.capability-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(90, 106, 219, 0.12);
  border-color: rgba(255, 141, 199, 0.26);
}

.card-number,
.capability-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  font-weight: 800;
}

.card-number {
  background: rgba(243, 129, 61, 0.15);
  color: var(--accent-deep);
}

.capability-icon {
  background: rgba(14, 106, 87, 0.13);
  color: var(--leaf);
}

.product-card h3,
.capability-card h3,
.contact-card h3,
.faq-question span {
  margin-top: 0.2rem;
  font-family: "Plus Jakarta Sans", "Noto Sans SC", sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.card-tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(35, 22, 15, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
}

.card-text {
  margin-top: 0;
  font-size: 0.93rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.card-list {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.strategy-list li,
.workflow-item {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-list li {
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  background: rgba(35, 22, 15, 0.06);
  color: var(--ink);
  line-height: 1.2;
  font-size: 0.82rem;
  font-weight: 700;
}

.strategy-list li::before,
.workflow-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent-deep);
}

.card-list li::before {
  display: none;
}

.workflow-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  margin-top: 1.6rem;
  padding: 1.8rem;
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 250, 243, 0.72);
}

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

.workflow-card {
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(79, 46, 25, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.workflow-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.workflow-text {
  margin: 0;
  font-size: 0.94rem;
}

.strategy-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-card {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 252, 247, 0.7);
}

.strategy-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 171, 0.44), transparent 28%),
    linear-gradient(180deg, rgba(255, 245, 236, 0.8) 0%, rgba(255, 237, 222, 0.72) 100%);
}

.strategy-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.strategy-checklist li::before {
  background: var(--leaf);
}

.faq-list {
  margin-top: 1.8rem;
}

.faq-item {
  border: 1px solid rgba(72, 42, 22, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 247, 0.68);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  margin-top: 0;
}

.faq-indicator {
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--berry) 100%);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.3rem;
  transition:
    max-height 0.28s ease,
    padding-bottom 0.28s ease;
}

.faq-item.open .faq-answer {
  max-height: 260px;
  padding-bottom: 1.2rem;
}

.faq-item.open .faq-indicator {
  transform: rotate(45deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
  align-items: start;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.contact-card p {
  margin: 0;
  line-height: 1.62;
  font-size: 0.97rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.12em;
}

.contact-card .capability-icon {
  margin-bottom: 0.1rem;
}

.contact-card h3 {
  margin-top: 0;
  line-height: 1.3;
}

.contact-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 252, 0.86);
}

.contact-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.whatsapp-qr-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at top right, rgba(104, 214, 174, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(90, 140, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.84);
}

.whatsapp-qr-copy {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.whatsapp-qr-copy .eyebrow {
  margin-bottom: 0;
}

.whatsapp-qr-text {
  margin: 0;
}

.whatsapp-qr-visual {
  display: grid;
  place-items: center;
  padding: 0.65rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(98, 90, 149, 0.1);
}

.whatsapp-qr-visual img {
  display: block;
  width: 100%;
  max-width: 260px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(31, 121, 87, 0.14);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 253, 255, 0.88);
}

.form-header {
  margin-bottom: 0.25rem;
}

.form-header p {
  margin: 0.7rem 0 0;
}

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

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(84, 47, 24, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(231, 97, 22, 0.44);
  box-shadow: 0 0 0 4px rgba(243, 129, 61, 0.12);
  transform: translateY(-1px);
}

.form-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.9rem;
}

.form-feedback {
  min-height: 1.3rem;
  color: var(--leaf);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding: 1.4rem 1.5rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: rgba(253, 250, 255, 0.88);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
  color: var(--muted);
}

.footer-meta a {
  color: var(--accent-deep);
  font-weight: 700;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks-shell {
  width: min(calc(100% - 1.5rem), 760px);
  padding: 2rem 0;
}

.thanks-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(98, 90, 149, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 164, 207, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(129, 204, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: none;
}

.thanks-text {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.thanks-card .btn {
  margin-top: 1.75rem;
}

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

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

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .workflow-shell,
  .contact-section,
  .whatsapp-qr-card {
    grid-template-columns: 1fr;
  }

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

  .hero-media-primary {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .strategy-section,
  .media-grid,
  .product-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--container));
    margin-top: 0.5rem;
  }

  .announcement-bar,
  .site-header,
  .site-footer {
    border-radius: 24px;
  }

  .announcement-bar,
  .site-header,
  .site-footer,
  .hero-actions {
    align-items: flex-start;
  }

  .announcement-bar,
  .site-header,
  .site-footer,
  .footer-meta {
    flex-direction: column;
    text-align: left;
    justify-items: start;
  }

  h1 {
    max-width: none;
  }

  .section {
    padding-top: 4rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-mini-grid,
  .media-grid,
  .product-grid,
  .capability-grid,
  .strategy-section,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-showcase,
  .hero-proof-band {
    grid-template-columns: 1fr;
  }

  .hero-media-primary .hero-media-visual {
    min-height: 20rem;
  }

  .section-panel,
  .strategy-card,
  .workflow-shell,
  .contact-form {
    padding: 1.35rem;
  }

  .main-nav {
    gap: 0.85rem;
  }
}
