:root {
  --bg: #eef3f8;
  --bg-soft: #f8fafc;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #0f1728;
  --muted: #566479;
  --line: rgba(15, 23, 40, 0.08);
  --navy: #0f1728;
  --navy-soft: #1c2740;
  --teal: #11998d;
  --teal-deep: #0b7b72;
  --teal-soft: #d7f4f0;
  --shadow: 0 22px 70px rgba(12, 20, 34, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" 1, "kern" 1;
}

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

.utility-bar {
  background: #edf1f5;
  border-bottom: 1px solid rgba(15, 23, 40, 0.06);
}

.utility-inner,
.page-shell {
  width: var(--container);
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  align-items: center;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.utility-meta span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8rem;
  margin-right: 1.2rem;
  background: rgba(15, 23, 40, 0.15);
  vertical-align: middle;
}

.page-shell {
  padding-bottom: 3rem;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(15, 23, 40, 0.06);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
}

.brand-lockup strong,
.hero h1,
.section-heading h2,
.hero-phone-screen h2,
.audit-copy h2,
.cta h2 {
  font-family: "Sora", sans-serif;
}

.brand-lockup strong {
  letter-spacing: -0.03em;
}

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

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  justify-content: center;
  gap: 1.4rem;
}

.desktop-nav a,
.search-link,
.mobile-nav a {
  color: var(--muted);
  font-weight: 700;
}

.desktop-nav a:hover,
.search-link:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.header-actions {
  gap: 0.9rem;
}

.search-link,
.header-cta,
.button,
.menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.search-link,
.button-secondary,
.menu-toggle {
  border: 1px solid rgba(15, 23, 40, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  box-shadow: 0 16px 32px rgba(11, 123, 114, 0.22);
  font-weight: 800;
}

.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.search-link:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  padding-top: 2rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  padding: 1.4rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(18, 201, 186, 0.14), transparent 28%),
    linear-gradient(135deg, #162033 0%, #0f1728 100%);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #8fe8df;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card {
  padding: 2.4rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #17a596 0%, #109186 100%);
  color: #fff;
}

.hero h1,
.section-heading h2,
.audit-copy h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-text,
.section-heading p,
.service-card p,
.showcase-card p,
.why-card p,
.process-step p,
.faq-item p,
.credibility p,
.quick-link-card p,
.site-footer p,
.cta-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-text {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  font-size: 1.06rem;
}

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

.hero-card .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual-core {
  position: relative;
  min-height: 100%;
  padding: 2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 30%, rgba(17, 153, 141, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(26rem, 82%);
  transform: translate(-50%, -48%);
  opacity: 0.12;
  filter: blur(1px);
  pointer-events: none;
}

.hero-stat,
.hero-bubble,
.quick-link-card,
.service-card,
.showcase-card,
.why-card,
.process-step,
.faq-item,
.cta-panel,
.credibility article {
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 24px;
}

.hero-stat-primary {
  width: max-content;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-stat p,
.hero-bubble span {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-phone {
  position: relative;
  width: min(17rem, 100%);
  margin: 2rem auto 0;
  padding: 0.8rem;
  border-radius: 38px;
  background: linear-gradient(180deg, #273247, #121a29);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.hero-phone-screen {
  min-height: 25rem;
  padding: 1.3rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(17, 153, 141, 0.95), rgba(10, 111, 103, 0.94));
  color: #fff;
}

.screen-badge {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.hero-phone-screen h2 {
  margin: 1rem 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-phone-screen ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-phone-screen li + li {
  margin-top: 0.55rem;
}

.hero-bubble {
  position: absolute;
  width: 10rem;
  padding: 1.1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #0ea293, #0b7b72);
  color: #fff;
  box-shadow: 0 18px 36px rgba(11, 123, 114, 0.25);
  z-index: 1;
}

.bubble-left {
  left: 0;
  top: 48%;
  transform: translateY(-50%);
}

.bubble-top {
  right: 0.4rem;
  top: 3rem;
}

.bubble-bottom {
  right: 0;
  bottom: 2rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.4rem;
  position: relative;
  z-index: 2;
}

.quick-link-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(15, 23, 40, 0.08);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.quick-link-card strong,
.credibility strong,
.service-card h3,
.showcase-card h3,
.why-card strong,
.process-step h3,
.faq-item summary,
.cta-panel p {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.quick-link-card p,
.credibility p,
.service-card p,
.showcase-card p,
.why-card p,
.process-step p,
.faq-item p,
.section-heading p,
.cta-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.credibility,
.services-grid,
.showcase-grid,
.case-study-grid,
.latest-post-grid,
.why-us-grid,
.process-list,
.faq-list,
.cta {
  display: grid;
  gap: 1.2rem;
}

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

.case-study-grid,
.latest-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credibility article {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
}

.case-study-card,
.latest-post-card,
.lead-form,
.lead-info-card {
  padding: 1.45rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.06);
}

.case-study-label {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(17, 153, 141, 0.1);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study-card h3,
.latest-post-card h3,
.lead-info-card strong {
  margin: 1rem 0 0.7rem;
}

.case-study-card p,
.latest-post-card p,
.lead-info-card p,
.lead-info-card li {
  color: var(--muted);
}

.case-study-card strong:last-child {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-deep);
}

.latest-post-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 40, 0.94), rgba(22, 36, 58, 0.92));
}

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

.latest-post-card a,
.case-study-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-deep);
  font-weight: 800;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.audit-copy h2,
.cta h2 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 5vw, 4rem);
}

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

.why-us-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.showcase-card,
.why-card,
.faq-item,
.cta-panel {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.76);
}

.service-card {
  min-height: 15.5rem;
}

.why-card {
  min-height: 13rem;
}

.showcase-card {
  min-height: 17rem;
}

.card-tag {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accent-sand {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.accent-sand .card-tag {
  background: rgba(17, 153, 141, 0.1);
  color: var(--teal-deep);
}

.accent-ink {
  background: linear-gradient(180deg, #162033 0%, #0f1728 100%);
  color: #fff;
}

.accent-ink p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-ink .card-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.accent-mint {
  background: linear-gradient(180deg, #effbf9 0%, #dcf4f0 100%);
}

.accent-mint .card-tag {
  background: rgba(15, 23, 40, 0.08);
}

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

.process-step {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.72);
}

.process-step span {
  min-width: 2.5rem;
  color: var(--teal-deep);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.audit-banner {
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 34px;
  background: linear-gradient(135deg, #0f1728 0%, #17243a 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.audit-banner .eyebrow,
.audit-banner p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  max-width: 56rem;
}

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

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

.faq-item[open] {
  background: #ffffff;
}

.cta {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 249, 252, 0.94));
  border: 1px solid rgba(15, 23, 40, 0.06);
}

.cta-panel ul {
  margin: 0 0 1.3rem;
  padding-left: 1rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(15, 23, 40, 0.08);
}

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

.footer-brand img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.floating-mail-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 23, 40, 0.12);
  backdrop-filter: blur(14px);
}

.floating-mail-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  min-width: 2.65rem;
  height: 2.65rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  box-shadow: 0 10px 22px rgba(11, 123, 114, 0.22);
  font-size: 1rem;
}

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

.floating-mail-copy strong,
.floating-mail-copy small {
  line-height: 1.15;
}

.floating-mail-copy strong {
  font-size: 0.88rem;
}

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

.contact-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-lead {
  max-width: 62ch;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
}

.lead-form-section {
  padding-top: 0;
}

.lead-form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.3rem;
}

.lead-form-info {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.lead-info-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

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

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(15, 23, 40, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.lead-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.lead-span-2 {
  grid-column: 1 / -1;
}

.lead-submit {
  border: 0;
  cursor: pointer;
}

.form-alert {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 16px;
}

.form-alert-success {
  background: #ecfbf8;
  border-color: rgba(17, 153, 141, 0.16);
}

.form-alert-error {
  background: #fff3f3;
  border-color: rgba(204, 46, 46, 0.18);
}

.contact-cards,
.contact-detail-list {
  display: grid;
  gap: 1rem;
}

.contact-card,
.contact-sidebar-panel {
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.06);
}

.contact-card h2,
.contact-sidebar-panel h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.contact-card p,
.contact-sidebar-panel p,
.contact-detail-list span {
  color: var(--muted);
}

.contact-detail-list {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 23, 40, 0.08);
}

.contact-detail-list li:last-child {
  border-bottom: 0;
}

.rank-tool-hero-shell {
  align-items: stretch;
}

.rank-tool-side-card {
  align-content: stretch;
}

.rank-tool-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: 1.35rem;
  align-items: start;
}

.rank-tool-form-card,
.rank-tool-result-card {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.06);
}

.rank-tool-heading h2 {
  max-width: 16ch;
}

.rank-tool-form {
  display: grid;
  gap: 1rem;
}

.rank-tool-grid {
  margin-top: 0.25rem;
}

.rank-result-placeholder,
.rank-result-state {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
}

.rank-result-placeholder {
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f6fa 100%);
  border: 1px solid rgba(15, 23, 40, 0.08);
}

.rank-result-state.is-found {
  background: linear-gradient(180deg, #ecfbf8 0%, #e4f7f2 100%);
  border: 1px solid rgba(17, 153, 141, 0.18);
}

.rank-result-state.is-missing {
  background: linear-gradient(180deg, #fff8ec 0%, #fdf1dc 100%);
  border: 1px solid rgba(212, 176, 106, 0.24);
}

.rank-result-state strong,
.rank-result-placeholder strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.rank-result-state p,
.rank-result-placeholder p {
  margin: 0;
  color: var(--muted);
}

.rank-result-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.rank-result-list div {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(15, 23, 40, 0.08);
}

.rank-result-list div:last-child {
  border-bottom: 0;
}

.rank-result-list dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.rank-result-list dd {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.rank-result-list a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.rank-debug-box {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(15, 23, 40, 0.1);
}

.rank-debug-list {
  display: grid;
  gap: 0.65rem;
}

.rank-debug-list div {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 14px;
  background: rgba(248, 251, 253, 0.82);
}

.rank-debug-list span,
.rank-debug-list strong {
  overflow-wrap: anywhere;
}

.rank-debug-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.rank-debug-list strong {
  color: var(--text);
  font-size: 0.92rem;
}

.blog-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.blog-eyebrow {
  color: var(--teal-deep);
}

.blog-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.blog-lead {
  max-width: 62ch;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-featured,
.blog-card,
.sidebar-card {
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.06);
}

.blog-featured {
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.blog-featured-meta,
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-pill,
.topic-pill {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(17, 153, 141, 0.1);
  color: var(--teal-deep);
  font-weight: 800;
}

.blog-featured h2,
.blog-card h3,
.sidebar-card h3 {
  margin: 1rem 0 0.8rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.blog-featured p,
.blog-card p,
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.7fr);
  gap: 1.3rem;
  align-items: start;
}

.blog-feed {
  display: grid;
  gap: 1rem;
}

.blog-list-card {
  display: grid;
  grid-template-columns: minmax(12rem, 17rem) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 40, 0.06);
}

.blog-list-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(15, 23, 40, 0.96), rgba(22, 36, 58, 0.92));
}

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

.blog-list-content {
  display: grid;
  align-content: start;
}

.blog-card-meta-group {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.blog-list-content h2 {
  margin: 0.85rem 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.04em;
}

.blog-list-content h2 a {
  color: inherit;
}

.blog-list-content p {
  margin: 0;
  color: var(--muted);
}

.blog-list-link,
.sidebar-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-deep);
  font-weight: 800;
}

.blog-list-link {
  align-items: center;
  gap: 0.45rem;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sidebar-label {
  margin: 0;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-card ul {
  margin: 0;
  padding-left: 1rem;
}

.sidebar-card li + li {
  margin-top: 0.45rem;
}

.sidebar-cta {
  background: linear-gradient(180deg, #0f1728 0%, #17243a 100%);
}

.sidebar-cta h3,
.sidebar-cta p,
.sidebar-cta li,
.sidebar-cta .sidebar-label {
  color: #fff;
}

.blog-post-shell {
  padding-top: 2rem;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: 1.3rem;
  align-items: start;
}

.blog-post-card {
  padding: 1.6rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(15, 23, 40, 0.06);
}

.blog-breadcrumb {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-breadcrumb a {
  color: inherit;
}

.blog-post-meta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.3rem 0 1rem;
  color: var(--muted);
}

.blog-post-card h1 {
  margin: 0;
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.blog-post-intro {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-post-cover {
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 40, 0.96), rgba(22, 36, 58, 0.92));
}

.blog-post-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.blog-prose {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.blog-prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.blog-post-sidebar {
  display: grid;
  gap: 1rem;
}

.offer-hero {
  padding-top: 2rem;
}

.offer-hero-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(17, 153, 141, 0.14), transparent 28%),
    linear-gradient(135deg, #162033 0%, #0f1728 100%);
  box-shadow: var(--shadow);
}

.offer-hero-copy,
.offer-hero-panel {
  min-width: 0;
}

.offer-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.offer-lead {
  max-width: 60ch;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.offer-hero-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.offer-metric-card,
.offer-strip,
.package-card,
.package-compare,
.demo-product-card {
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 40, 0.06);
}

.offer-metric-card {
  padding: 1.2rem;
}

.offer-metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.offer-metric-card strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.demo-catalog-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.demo-product-card {
  --preview-bg: #f7fbff;
  --preview-panel: #ffffff;
  --preview-text: #122035;
  --preview-accent: #17a596;
  --preview-accent-soft: rgba(23, 165, 150, 0.18);
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.demo-browser {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f1728 0%, #17243a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-browser-link {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-browser-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 40, 0.14);
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-browser-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.demo-browser-url {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  margin-left: 0.45rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.demo-browser-screen {
  display: grid;
  gap: 0.8rem;
  min-height: 15.5rem;
  padding: 1rem;
  align-content: start;
  color: #fff;
}

.demo-chip {
  display: inline-flex;
  width: max-content;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
}

.demo-preview {
  display: grid;
  gap: 0.65rem;
  padding: 0.8rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 32%),
    linear-gradient(180deg, var(--preview-bg) 0%, #eef4fb 100%);
  color: var(--preview-text);
}

.demo-preview-topbar,
.demo-preview-footer {
  display: grid;
  grid-template-columns: auto 1fr 0.72fr 0.48fr;
  gap: 0.45rem;
  align-items: center;
}

.demo-preview-logo,
.demo-preview-link,
.demo-preview-kicker,
.demo-preview-title,
.demo-preview-text,
.demo-preview-grid span,
.demo-preview-footer span,
.demo-preview-actions span {
  display: block;
  border-radius: 999px;
}

.demo-preview-logo {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--preview-accent), #ffffff);
}

.demo-preview-link {
  height: 0.5rem;
  background: rgba(15, 23, 40, 0.12);
}

.demo-preview-link.short {
  width: 82%;
}

.demo-preview-link.tiny {
  width: 76%;
}

.demo-preview-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.7rem;
}

.demo-preview-copy,
.demo-preview-visual,
.demo-preview-grid span {
  border-radius: 18px;
}

.demo-preview-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem;
  background: var(--preview-panel);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 40, 0.06);
}

.demo-preview-kicker {
  width: 34%;
  height: 0.45rem;
  background: var(--preview-accent);
}

.demo-preview-title {
  height: 0.82rem;
  background: rgba(15, 23, 40, 0.2);
}

.demo-preview-title.short {
  width: 72%;
}

.demo-preview-text {
  width: 84%;
  height: 0.55rem;
  background: rgba(15, 23, 40, 0.12);
}

.demo-preview-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.demo-preview-actions span {
  width: 4.1rem;
  height: 1.4rem;
}

.demo-preview-actions span:first-child {
  background: var(--preview-accent);
}

.demo-preview-actions span:last-child {
  background: var(--preview-accent-soft);
}

.demo-preview-visual {
  position: relative;
  min-height: 6.2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(145deg, var(--preview-accent) 0%, #0f1728 100%);
}

.demo-preview-visual::before,
.demo-preview-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-preview-visual::before {
  top: 0.9rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
}

.demo-preview-visual::after {
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  height: 0.7rem;
}

.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.demo-preview-grid span {
  min-height: 3.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 44%),
    linear-gradient(180deg, var(--preview-accent-soft) 0%, rgba(15, 23, 40, 0.05) 100%);
}

.demo-preview-footer {
  grid-template-columns: 1.2fr 0.8fr 0.5fr;
}

.demo-preview-footer span {
  height: 0.52rem;
  background: rgba(15, 23, 40, 0.11);
}

.preview-1,
.preview-5,
.preview-9 {
  --preview-bg: #f6fffc;
  --preview-panel: #ffffff;
  --preview-text: #11293a;
  --preview-accent: #109186;
  --preview-accent-soft: rgba(16, 145, 134, 0.18);
}

.preview-2,
.preview-6,
.preview-10 {
  --preview-bg: #fff8ef;
  --preview-panel: #fffdf8;
  --preview-text: #302113;
  --preview-accent: #d3a663;
  --preview-accent-soft: rgba(211, 166, 99, 0.22);
}

.preview-3,
.preview-7 {
  --preview-bg: #f4fcfb;
  --preview-panel: #ffffff;
  --preview-text: #0f2430;
  --preview-accent: #46b8a6;
  --preview-accent-soft: rgba(70, 184, 166, 0.2);
}

.preview-4,
.preview-8 {
  --preview-bg: #f3f5fa;
  --preview-panel: #ffffff;
  --preview-text: #1a2132;
  --preview-accent: #30476b;
  --preview-accent-soft: rgba(48, 71, 107, 0.18);
}

.preview-2 .demo-preview-hero,
.preview-5 .demo-preview-hero,
.preview-8 .demo-preview-hero {
  grid-template-columns: 0.9fr 1.1fr;
}

.preview-3 .demo-preview-grid,
.preview-6 .demo-preview-grid,
.preview-9 .demo-preview-grid {
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
}

.preview-4 .demo-preview-copy,
.preview-7 .demo-preview-copy,
.preview-10 .demo-preview-copy {
  background:
    linear-gradient(180deg, rgba(15, 23, 40, 0.02), transparent 120%),
    var(--preview-panel);
}

.preview-6 .demo-preview-visual,
.preview-10 .demo-preview-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(145deg, #f0c47a 0%, #7d5f38 100%);
}

.preview-4 .demo-preview-visual,
.preview-8 .demo-preview-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(145deg, #243146 0%, #0f1728 100%);
}

.preview-5 .demo-preview-grid span:first-child,
.preview-9 .demo-preview-grid span:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(16, 145, 134, 0.28) 0%, rgba(15, 23, 40, 0.06) 100%);
}

.preview-7 .demo-preview-footer span:first-child,
.preview-8 .demo-preview-footer span:first-child {
  width: 88%;
}

.demo-product-copy h3,
.package-card h3 {
  margin: 1rem 0 0.7rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.demo-product-copy p,
.package-card p {
  margin: 0;
  color: var(--muted);
}

.demo-feature-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.demo-feature-list li + li {
  margin-top: 0.45rem;
}

.demo-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.demo-product-actions .button {
  flex: 1 1 11rem;
}

.package-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-deep);
  font-weight: 800;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 25, 0.58);
  backdrop-filter: blur(10px);
}

.demo-modal-card {
  position: relative;
  width: min(42rem, calc(100vw - 1.4rem));
  margin: min(8vh, 4rem) auto;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(15, 23, 40, 0.22);
}

.demo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 40, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.demo-modal-card h2 {
  margin: 0.9rem 0 0.5rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.demo-modal-segment,
.demo-modal-summary,
.demo-modal-note {
  color: var(--muted);
}

.demo-modal-note {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(17, 153, 141, 0.08);
}

.demo-modal-points,
.detail-check-list {
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
}

.demo-modal-points li + li,
.detail-check-list li + li {
  margin-top: 0.45rem;
}

.demo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.demo-modal-actions .button {
  flex: 1 1 12rem;
}

body.modal-open {
  overflow: hidden;
}

.demo-detail-shell {
  align-items: stretch;
}

.demo-detail-preview .large-browser {
  height: 100%;
}

.demo-detail-preview .demo-browser-screen {
  min-height: 21rem;
}

.demo-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.detail-check-list {
  color: var(--muted);
}

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

.package-card {
  padding: 1.45rem;
}

.package-price {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 800;
}

.package-compare {
  overflow: hidden;
}

.package-compare-head,
.package-compare-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.package-compare-head {
  background: #0f1728;
  color: #fff;
  font-weight: 800;
}

.package-compare-row + .package-compare-row {
  border-top: 1px solid rgba(15, 23, 40, 0.08);
}

.package-compare-row span:first-child {
  font-weight: 800;
}

.offer-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
}

.offer-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.offer-strip-list span {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(17, 153, 141, 0.1);
  color: var(--teal-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-site-body {
  background:
    radial-gradient(circle at top right, rgba(191, 152, 90, 0.08), transparent 22%),
    linear-gradient(180deg, #f2f4f7 0%, #e9edf2 100%);
}

.demo-site-body .button,
.demo-site-body .offer-strip-list span,
.demo-site-body .demo-site-brand-mark,
.demo-site-body .demo-site-stat,
.demo-site-body .demo-site-story-card,
.demo-site-body .demo-site-card,
.demo-site-body .demo-site-showcase-grid article,
.demo-site-body .cta-panel,
.demo-site-body .offer-strip {
  border-radius: 12px;
}

.demo-site-wrap {
  width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.demo-site-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  margin-top: 1rem;
  border: 1px solid rgba(15, 23, 40, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
}

.demo-site-ribbon span,
.demo-site-ribbon a {
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-site-ribbon a {
  color: var(--teal-deep);
}

.demo-site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(15, 23, 40, 0.06);
}

.demo-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.demo-site-brand-mark {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #111827 0%, #2d3748 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.demo-site-brand-copy {
  display: flex;
  flex-direction: column;
}

.demo-site-brand-copy strong {
  font-family: "Sora", sans-serif;
}

.demo-site-brand-copy small {
  color: var(--muted);
}

.demo-site-nav,
.demo-site-header-actions {
  display: flex;
  align-items: center;
}

.demo-site-nav {
  justify-content: center;
  gap: 1.4rem;
}

.demo-site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.demo-site-nav a:hover {
  color: #111827;
}

.demo-site-header-actions {
  gap: 0.8rem;
}

.demo-site-hero-shell,
.demo-site-story,
.demo-site-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.demo-site-hero-shell {
  padding: 1.4rem;
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(191, 152, 90, 0.12), transparent 26%),
    linear-gradient(135deg, #151b26 0%, #0f1728 100%);
  box-shadow: 0 22px 52px rgba(15, 23, 40, 0.12);
}

.demo-site-hero-copy {
  padding: 2.6rem;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: #fff;
}

.demo-site-hero-copy h1,
.demo-site-story-card h3,
.demo-site-card h3,
.demo-site-showcase-grid strong {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.demo-site-lead,
.demo-site-story-card p,
.demo-site-card p,
.demo-site-showcase-copy p,
.cta-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.demo-site-lead {
  margin-top: 1.2rem;
  max-width: 58ch;
}

.demo-site-hero-panel {
  display: grid;
  gap: 1rem;
}

.demo-site-stat,
.demo-site-story-card,
.demo-site-card,
.demo-site-showcase-grid article {
  padding: 1.4rem;
  border: 1px solid rgba(15, 23, 40, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.05);
}

.demo-site-stat span,
.demo-site-signature span,
.demo-site-card span,
.demo-site-showcase-grid article span {
  color: var(--muted);
}

.demo-site-stat strong {
  display: block;
  margin-top: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.demo-site-story-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.demo-site-story-card p,
.demo-site-card p,
.demo-site-showcase-copy p,
.demo-site-showcase-grid article span {
  color: var(--muted);
}

.demo-site-signature {
  display: grid;
  gap: 0.2rem;
}

.demo-site-card-grid,
.demo-site-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-site-card span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: rgba(191, 152, 90, 0.14);
  color: #7b5a26;
  font-weight: 800;
}

.demo-site-card h3,
.demo-site-showcase-grid article strong {
  margin-top: 1rem;
}

.demo-site-showcase-copy {
  align-content: start;
}

.demo-site-showcase-grid article {
  min-height: 12rem;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(160deg, #151b26 0%, #273142 100%);
  color: #fff;
}

.demo-site-showcase-grid article span {
  color: rgba(255, 255, 255, 0.7);
}

.demo-site-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 700;
}

.demo-site-topline a {
  color: #8b6a34;
}

.demo-b2b-hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 25%),
    linear-gradient(135deg, #151a22 0%, #101722 100%);
  box-shadow: 0 24px 52px rgba(15, 23, 40, 0.12);
}

.demo-b2b-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  color: #fff;
}

.demo-b2b-copy h1,
.demo-b2b-card h3,
.demo-b2b-value h3,
.demo-b2b-cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.demo-b2b-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.demo-b2b-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.demo-b2b-metrics article,
.demo-b2b-aside article,
.demo-b2b-panel,
.demo-b2b-card,
.demo-b2b-band,
.demo-b2b-value,
.demo-b2b-cta-panel {
  border: 1px solid rgba(15, 23, 40, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 40, 0.05);
}

.demo-b2b-metrics article {
  padding: 1rem;
}

.demo-b2b-metrics span,
.demo-b2b-aside span,
.demo-b2b-panel-tag,
.demo-b2b-value span {
  display: block;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-b2b-metrics strong,
.demo-b2b-aside strong,
.demo-b2b-category strong {
  display: block;
  margin-top: 0.45rem;
  color: #111827;
  font-family: "Sora", sans-serif;
}

.demo-b2b-visual {
  display: grid;
  gap: 1rem;
}

.demo-b2b-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.demo-b2b-category {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-left: 4px solid #8b6a34;
  background: #f8fafc;
}

.demo-b2b-category small {
  display: block;
  margin-top: 0.4rem;
  color: #6b7280;
}

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

.demo-b2b-aside article {
  padding: 1rem;
}

.demo-b2b-grid,
.demo-b2b-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-b2b-card,
.demo-b2b-value {
  padding: 1.2rem;
}

.demo-b2b-card p,
.demo-b2b-value p,
.demo-b2b-cta-copy p,
.demo-b2b-cta-panel p,
.demo-b2b-band p {
  color: #5b6678;
}

.demo-b2b-card-media {
  height: 12rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  background-size: cover;
  background-position: center;
}

.demo-b2b-card-media.grain {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, #b98d4a 0%, #7a592d 100%);
}

.demo-b2b-card-media.pantry {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, #596579 0%, #273142 100%);
}

.demo-b2b-card-media.horeca {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, #1d7f6b 0%, #114c41 100%);
}

.demo-b2b-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
}

.demo-b2b-band-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.demo-b2b-band-list span {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(15, 23, 40, 0.1);
  background: #f8fafc;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-b2b-value span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.9rem;
  border-radius: 6px;
  background: rgba(139, 106, 52, 0.12);
  color: #8b6a34;
}

.demo-b2b-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 40, 0.06);
}

.demo-b2b-cta-copy,
.demo-b2b-cta-panel {
  padding: 1rem;
}

.demo-b2b-cta-panel strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: "Sora", sans-serif;
}

.egg-demo-body {
  background:
    radial-gradient(circle at top right, rgba(255, 214, 90, 0.18), transparent 22%),
    linear-gradient(180deg, #fffdf5 0%, #f5f1de 100%);
}

.egg-demo-shell {
  width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.egg-demo-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  color: #5d5334;
  font-size: 0.9rem;
  font-weight: 700;
}

.egg-demo-topbar a {
  color: #8d6400;
}

.egg-demo-header {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(28, 23, 9, 0.12);
  border-radius: 4px;
  background: #fffef8;
  box-shadow: 0 10px 24px rgba(73, 57, 15, 0.05);
}

.egg-demo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.egg-demo-brand-mark {
  display: inline-flex;
  width: 3.1rem;
  height: 3.1rem;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(28, 23, 9, 0.14);
  border-radius: 2px;
  background: linear-gradient(135deg, #ffd347 0%, #f0b500 100%);
  color: #16120a;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.egg-demo-brand-copy {
  display: flex;
  flex-direction: column;
}

.egg-demo-brand-copy strong,
.egg-hero-copy h1,
.egg-product-card h3,
.egg-value-copy h2,
.egg-value-card h3,
.egg-cta-copy h2 {
  font-family: "Sora", sans-serif;
}

.egg-demo-brand-copy small {
  color: #72684a;
}

.egg-demo-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
}

.egg-demo-nav,
.egg-demo-header-actions,
.egg-hero-actions,
.egg-slider-controls,
.egg-band-list {
  display: flex;
  align-items: center;
}

.egg-demo-nav {
  justify-content: center;
  gap: 1.3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.egg-demo-nav a {
  display: inline-block;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: #342b1a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
}

.egg-demo-nav a:hover {
  color: #8b6400;
}

.egg-demo-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: transparent;
  transition: background-color 180ms ease;
}

.egg-demo-nav a:hover::after {
  background: #d8a106;
}

.egg-demo-header-actions {
  gap: 0.8rem;
  justify-content: flex-end;
}

.egg-demo-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border-top: 1px solid rgba(28, 23, 9, 0.08);
  background: linear-gradient(180deg, #faf3d5 0%, #f5ebc3 100%);
  color: #594c2a;
  font-size: 0.82rem;
  font-weight: 700;
}

.egg-demo-meta-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.egg-demo-meta-copy span {
  position: relative;
}

.egg-demo-meta-copy span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8rem;
  margin-right: 1rem;
  background: rgba(28, 23, 9, 0.18);
  vertical-align: middle;
}

.egg-demo-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.egg-demo-socials a {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(28, 23, 9, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  color: #4f4428;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.egg-demo-socials svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  display: block;
}

.egg-demo-socials a:hover {
  background: #fff2bf;
  color: #8b6400;
}

.egg-demo-body .button-primary {
  background: linear-gradient(135deg, #f4be10 0%, #d89f00 100%);
  color: #17120a;
  box-shadow: 0 8px 18px rgba(216, 159, 0, 0.18);
}

.egg-demo-body .button-secondary {
  border-color: rgba(28, 23, 9, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #2c2417;
}

.egg-demo-body .button,
.egg-demo-body .button-primary,
.egg-demo-body .button-secondary {
  border-radius: 3px;
}

.egg-hero-copy,
.egg-slider,
.egg-product-card,
.egg-band,
.egg-value-card,
.egg-cta,
.egg-cta-panel {
  border: 1px solid rgba(28, 23, 9, 0.12);
  border-radius: 4px;
  background: rgba(255, 251, 235, 0.96);
  box-shadow: 0 12px 28px rgba(73, 57, 15, 0.06);
}

.egg-hero-copy {
  padding: 2rem;
}

.egg-kicker {
  margin: 0 0 1rem;
  color: #9a7300;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.egg-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #17120a;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.egg-hero-copy p {
  color: #5d5334;
}

.egg-hero-actions {
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.egg-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.egg-stats-grid article {
  padding: 1rem;
  border: 1px solid rgba(28, 23, 9, 0.1);
  border-radius: 3px;
  background: #fffef9;
}

.egg-stats-grid span,
.egg-band-list span,
.egg-value-card span {
  color: #7a6a3e;
  font-size: 0.8rem;
  font-weight: 800;
}

.egg-stats-grid strong {
  display: block;
  margin-top: 0.45rem;
  color: #17120a;
  font-family: "Sora", sans-serif;
}

.egg-slider {
  overflow: hidden;
  padding: 0.9rem;
  background: #fffdf4;
}

.egg-slider-hero {
  padding: 0.9rem;
}

.egg-slider-stage {
  position: relative;
  min-height: 35rem;
}

.egg-slider-hero .egg-slider-stage {
  min-height: 44rem;
}

.egg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.egg-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.egg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.egg-slide-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(22rem, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: rgba(23, 18, 10, 0.7);
  color: #fff8dc;
  backdrop-filter: blur(12px);
}

.egg-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  padding: 1.2rem;
  pointer-events: none;
  z-index: 2;
}

.egg-hero-content .egg-hero-copy {
  width: min(38rem, 52%);
  pointer-events: auto;
  align-self: stretch;
  background: rgba(18, 14, 8, 0.72);
  border-color: rgba(255, 230, 133, 0.2);
  backdrop-filter: blur(12px);
}

.egg-hero-content .egg-kicker,
.egg-hero-content .egg-hero-copy p,
.egg-hero-content .egg-stats-grid span {
  color: rgba(255, 242, 202, 0.88);
}

.egg-hero-content .egg-hero-copy h1,
.egg-hero-content .egg-stats-grid strong {
  color: #fffdf5;
}

.egg-hero-content .egg-stats-grid article {
  border-color: rgba(255, 230, 133, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.egg-slide-overlay span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 243, 188, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.egg-slide-overlay strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.egg-slider-controls {
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.egg-slider-controls > button,
.egg-slider-dots button {
  border: 1px solid rgba(28, 23, 9, 0.14);
  background: #fff;
  cursor: pointer;
}

.egg-slider-controls > button {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border-radius: 0.9rem;
  border-color: rgba(39, 30, 10, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 226, 0.92));
  box-shadow:
    0 14px 28px rgba(59, 44, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #2b2213;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.egg-slider-controls > button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.egg-slider-controls > button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(59, 44, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #8f6806;
}

.egg-slider-dots {
  display: flex;
  gap: 0.45rem;
}

.egg-slider-dots button {
  width: 1.6rem;
  height: 0.5rem;
  border-radius: 999px;
  padding: 0;
  border-color: rgba(39, 30, 10, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.egg-slider-dots button.is-active {
  width: 2.3rem;
  background: linear-gradient(135deg, #f4be10 0%, #d79b00 100%);
  box-shadow: 0 8px 16px rgba(215, 155, 0, 0.22);
}

.egg-product-grid,
.egg-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.egg-customer-grid,
.egg-region-grid,
.egg-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.egg-product-card,
.egg-value-card {
  padding: 1.1rem;
}

.egg-customer-card,
.egg-region-card,
.egg-quality-card {
  padding: 1.15rem;
  border: 1px solid rgba(28, 23, 9, 0.12);
  border-radius: 4px;
  background: rgba(255, 251, 235, 0.96);
  box-shadow: 0 12px 28px rgba(73, 57, 15, 0.06);
}

.egg-customer-card span,
.egg-quality-card span {
  display: inline-flex;
  min-height: 1.9rem;
  align-items: center;
  padding: 0 0.65rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(244, 190, 16, 0.2);
  background: rgba(244, 190, 16, 0.12);
  color: #8b6400;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 2px;
}

.egg-customer-card h3,
.egg-region-card strong,
.egg-quality-card h3 {
  display: block;
  margin: 0 0 0.6rem;
  color: #17120a;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.egg-customer-card p,
.egg-region-card p,
.egg-quality-card p {
  margin: 0;
  color: #5d5334;
}

.egg-product-media {
  height: 12rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(28, 23, 9, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.egg-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.egg-product-card span,
.egg-value-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.8rem;
  border-radius: 2px;
  background: rgba(244, 190, 16, 0.16);
  color: #8b6400;
}

.egg-product-card h3,
.egg-value-card h3 {
  margin: 0 0 0.6rem;
  color: #17120a;
  letter-spacing: -0.03em;
}

.egg-product-card p,
.egg-value-copy p,
.egg-value-card p,
.egg-cta-copy p,
.egg-cta-panel p {
  color: #5d5334;
}

.egg-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  background: linear-gradient(135deg, #2b2110 0%, #17120a 100%);
}

.egg-band h2,
.egg-band p {
  color: #fff6d2;
}

.egg-band-list {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.egg-band-list span {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 214, 90, 0.22);
  background: rgba(255, 214, 90, 0.08);
  color: #ffe48a;
  border-radius: 2px;
}

.egg-value-layout,
.egg-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.egg-value-copy,
.egg-cta-copy,
.egg-cta-panel {
  padding: 1.4rem;
}

.egg-value-copy h2,
.egg-cta-copy h2 {
  margin: 0;
  color: #17120a;
  letter-spacing: -0.04em;
}

.egg-cta {
  padding: 0;
  overflow: hidden;
}

.egg-cta-panel {
  background: linear-gradient(135deg, #fff6cf 0%, #f8e29b 100%);
}

.egg-cta-panel strong {
  display: block;
  margin-bottom: 0.8rem;
  color: #17120a;
  font-family: "Sora", sans-serif;
}

.egg-quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.egg-quote-form label {
  display: grid;
  gap: 0.35rem;
}

.egg-quote-form span {
  color: #6d623f;
  font-size: 0.8rem;
  font-weight: 800;
}

.egg-quote-form input {
  width: 100%;
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(28, 23, 9, 0.14);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  color: #2f2719;
  font: inherit;
}

.egg-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.egg-quote-actions .button {
  flex: 1 1 12rem;
}

.egg-footer {
  margin-top: 1rem;
  border: 1px solid rgba(28, 23, 9, 0.12);
  border-radius: 4px;
  background: linear-gradient(180deg, #1d170d 0%, #141008 100%);
  color: #f7efcd;
  overflow: hidden;
}

.egg-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 1.1rem;
  padding: 1.5rem 1.4rem 1.35rem;
}

.egg-footer-brand strong,
.egg-footer-block h3,
.egg-footer-bottom strong {
  font-family: "Sora", sans-serif;
}

.egg-footer-brand strong,
.egg-footer-block h3 {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff8dc;
}

.egg-footer-brand p,
.egg-footer-block p,
.egg-footer-block a,
.egg-footer-bottom span {
  color: rgba(255, 243, 188, 0.82);
}

.egg-footer-block {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.egg-footer-brand,
.egg-footer-block {
  padding: 0.15rem 0;
}

.egg-footer-brand {
  max-width: 18rem;
}

.egg-footer-block a {
  display: inline-flex;
  width: max-content;
}

.egg-footer-map-block {
  min-width: 0;
  grid-column: 4;
  grid-row: 1 / span 2;
}

.egg-footer-map {
  display: grid;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 230, 133, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 214, 90, 0.08), rgba(255, 214, 90, 0.02)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.egg-footer-map-kicker {
  display: inline-flex;
  width: max-content;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 230, 133, 0.2);
  background: rgba(255, 214, 90, 0.08);
  color: #ffe594;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.egg-footer-map strong {
  color: #fff8dc;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.egg-footer-map p {
  margin: 0;
  color: rgba(255, 243, 188, 0.82);
}

.egg-footer-map a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 2.85rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 230, 133, 0.18);
  background: rgba(255, 214, 90, 0.08);
  color: #fff3bc;
  text-decoration: none;
  font-weight: 700;
}

.egg-footer-hours {
  grid-column: 1;
  grid-row: 2;
}

.egg-footer-links {
  grid-column: 2 / span 2;
  grid-row: 2;
  align-content: start;
}

.egg-footer-links a {
  min-height: 2.5rem;
  align-items: center;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 230, 133, 0.12);
  background: rgba(255, 214, 90, 0.05);
}

.egg-footer-address,
.egg-footer-contact,
.egg-footer-hours {
  gap: 0.55rem;
}

.egg-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.4rem;
  border-top: 1px solid rgba(255, 230, 133, 0.12);
  background: rgba(255, 214, 90, 0.06);
}

.egg-footer-bottom strong {
  color: #ffd96e;
}

.egg-footer-bottom strong a {
  color: inherit;
  text-decoration: none;
}

.egg-footer-bottom strong a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.egg-floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(8, 59, 29, 0.16);
  background: #25d366;
  color: #081b10;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.egg-floating-whatsapp svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.egg-floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-copy,
.hero-visual {
  animation: fadeUp 900ms ease both;
}

.hero-visual {
  animation-delay: 140ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .quick-links,
  .credibility,
  .services-grid,
  .showcase-grid,
  .why-us-grid,
  .process-list,
  .cta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .utility-meta,
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 40, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
  }

  .hero-shell,
  .blog-hero,
  .blog-layout,
  .blog-post-layout,
  .egg-value-layout,
  .egg-cta,
  .demo-b2b-hero-shell,
  .demo-site-hero-shell,
  .demo-site-story,
  .demo-site-showcase,
  .offer-hero-shell,
  .contact-grid,
  .rank-tool-shell,
  .lead-form-shell,
  .quick-links,
  .credibility,
  .case-study-grid,
  .latest-post-grid,
  .demo-detail-grid,
  .demo-catalog-grid,
  .services-grid,
  .showcase-grid,
  .why-us-grid,
  .package-grid,
  .package-compare-head,
  .package-compare-row,
  .process-list,
  .cta,
  .offer-strip {
    grid-template-columns: 1fr;
  }

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

  .demo-site-header {
    grid-template-columns: 1fr;
  }

  .egg-demo-header,
  .egg-stats-grid,
  .egg-customer-grid,
  .egg-region-grid,
  .egg-quality-grid,
  .egg-product-grid,
  .egg-value-grid,
  .egg-footer-grid {
    grid-template-columns: 1fr;
  }

  .egg-demo-header-main {
    grid-template-columns: 1fr;
  }

  .demo-b2b-metrics,
  .demo-b2b-aside,
  .demo-b2b-grid,
  .demo-b2b-value-grid,
  .demo-b2b-cta {
    grid-template-columns: 1fr;
  }

  .demo-site-nav,
  .demo-site-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .egg-demo-nav,
  .egg-demo-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .egg-demo-header-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

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

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

  .egg-footer-map-block,
  .egg-footer-hours,
  .egg-footer-links {
    grid-column: auto;
    grid-row: auto;
  }

  .egg-floating-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .egg-demo-meta-copy {
    flex-direction: column;
    gap: 0.45rem;
  }

  .egg-demo-meta-copy span + span::before {
    display: none;
  }

  .demo-b2b-band {
    grid-template-columns: 1fr;
  }

  .demo-b2b-band-list {
    justify-content: flex-start;
  }

  .egg-band {
    grid-template-columns: 1fr;
  }

  .egg-band-list {
    justify-content: flex-start;
  }

  .egg-quote-form {
    grid-template-columns: 1fr;
  }

  .blog-list-media {
    aspect-ratio: 16 / 9;
  }

  .quick-links {
    margin-top: 1rem;
  }

  .hero-bubble {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .hero-phone {
    width: 100%;
  }

  .demo-modal-card {
    margin: 1rem auto;
  }

  .audit-banner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-mail-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .utility-inner,
  .page-shell {
    width: min(100vw - 1.2rem, 100%);
  }

  .demo-site-wrap {
    width: min(100vw - 1.2rem, 100%);
  }

  .egg-demo-shell {
    width: min(100vw - 1.2rem, 100%);
  }

  .demo-site-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .egg-demo-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-links {
    gap: 0.8rem;
    font-size: 0.82rem;
  }

  .demo-site-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    top: 0.6rem;
    padding: 0.9rem 1rem;
  }

  .hero-card,
  .hero-visual-core,
  .audit-banner,
  .cta,
  .blog-post-card,
  .blog-featured,
  .sidebar-card,
  .offer-strip,
  .package-card,
  .demo-modal-card {
    padding: 1.4rem;
  }

  .demo-site-hero-copy {
    padding: 1.5rem;
  }

  .demo-b2b-copy {
    padding: 1.4rem;
  }

  .egg-hero-copy {
    padding: 1.4rem;
  }

  .egg-hero-content {
    position: static;
    padding: 0;
    margin-top: 1rem;
  }

  .egg-hero-content .egg-hero-copy {
    width: 100%;
    background: rgba(24, 18, 10, 0.92);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4.3rem);
  }

  .demo-b2b-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.9rem);
  }

  .egg-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .blog-hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

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

  .button,
  .menu-toggle,
  .header-cta,
  .search-link {
    width: 100%;
  }

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

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .floating-mail-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .floating-mail-copy strong {
    font-size: 0.84rem;
  }

.floating-mail-copy small {
  font-size: 0.72rem;
}

  .demo-browser-url {
    display: none;
  }

  .demo-preview-hero,
  .preview-2 .demo-preview-hero,
  .preview-5 .demo-preview-hero,
  .preview-8 .demo-preview-hero {
    grid-template-columns: 1fr;
  }

  .demo-preview-grid,
  .preview-3 .demo-preview-grid,
  .preview-6 .demo-preview-grid,
  .preview-9 .demo-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo-b2b-grid,
  .demo-b2b-value-grid,
  .egg-product-grid,
  .egg-customer-grid,
  .egg-region-grid,
  .egg-quality-grid,
  .egg-value-grid,
  .demo-site-card-grid,
  .demo-site-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Demo 01 floating action refinement */
.egg-demo-body {
  padding-bottom: 8rem;
}

.egg-floating-actions {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 46;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
}

.egg-floating-action {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.egg-floating-action svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: currentColor;
}

.egg-floating-action::before {
  content: "";
  position: absolute;
  inset: -0.26rem;
  border-radius: inherit;
  z-index: -1;
}

.egg-floating-action:hover {
  transform: translateY(-3px) scale(1.02);
}

.egg-floating-phone {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  box-shadow:
    0 16px 28px rgba(17, 24, 39, 0.24),
    0 0 0 6px rgba(17, 24, 39, 0.08);
}

.egg-floating-phone::before {
  border: 1px solid rgba(17, 24, 39, 0.18);
}

.egg-floating-whatsapp {
  position: relative;
  right: auto;
  bottom: auto;
  width: 4.35rem;
  height: 4.35rem;
}

.egg-floating-whatsapp svg {
  width: 1.95rem;
  height: 1.95rem;
}

@media (max-width: 980px) {
  .egg-demo-body {
    padding-bottom: 7.4rem;
  }

  .egg-floating-actions {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    gap: 1rem;
  }

  .egg-floating-action,
  .egg-floating-whatsapp {
    width: 4rem;
    height: 4rem;
  }

  .egg-floating-action svg,
  .egg-floating-whatsapp svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 640px) {
  .egg-demo-body {
    padding-bottom: 7rem;
  }

  .egg-floating-actions {
    right: 0.85rem;
    bottom: max(0.95rem, env(safe-area-inset-bottom));
    gap: 0.9rem;
  }

  .egg-floating-action,
  .egg-floating-whatsapp {
    width: 3.8rem;
    height: 3.8rem;
  }

  .egg-floating-phone {
    box-shadow:
      0 12px 24px rgba(17, 24, 39, 0.22),
      0 0 0 5px rgba(17, 24, 39, 0.07);
  }

  .egg-floating-whatsapp {
    box-shadow:
      0 14px 28px rgba(17, 117, 58, 0.24),
      0 0 0 5px rgba(37, 211, 102, 0.09);
  }

  .egg-floating-action svg,
  .egg-floating-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Demo 01 floating buttons hard alignment fix */
.egg-floating-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 1rem !important;
}

.egg-floating-action,
.egg-floating-whatsapp {
  margin: 0 !important;
  transform: none !important;
}

.egg-floating-action::before,
.egg-floating-whatsapp::before {
  display: none !important;
}

.egg-floating-phone {
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.22) !important;
}

.egg-floating-whatsapp {
  box-shadow: 0 14px 26px rgba(17, 117, 58, 0.22) !important;
}

.egg-floating-action:hover,
.egg-floating-whatsapp:hover {
  transform: translateY(-2px) !important;
}

@media (max-width: 640px) {
  .egg-floating-actions {
    gap: 0.85rem !important;
  }
}

/* Demo 01 minimal mobile menu */
.egg-demo-menu-toggle {
  display: none;
  gap: 0.7rem;
  min-height: 3.05rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 30, 10, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #241c10;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.egg-demo-menu-toggle-bars {
  display: inline-grid;
  gap: 0.2rem;
}

.egg-demo-menu-toggle-bars span {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.egg-demo-mobile-panel {
  display: none;
}

@media (max-width: 980px) {
  .egg-demo-header-main {
    grid-template-columns: 1fr auto auto;
  }

  .egg-demo-menu-toggle {
    display: inline-flex;
  }

  .egg-demo-nav {
    display: none;
  }

  .egg-demo-header-actions {
    gap: 0.6rem;
  }

  .egg-demo-header-actions .button-secondary {
    display: none;
  }

  .egg-demo-mobile-panel {
    display: grid;
    gap: 0.65rem;
    width: min(100%, calc(100vw - 2rem));
    margin: 0 auto 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(39, 30, 10, 0.08);
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(255, 248, 225, 0.96));
    box-shadow: 0 18px 36px rgba(59, 44, 10, 0.08);
  }

  .egg-demo-mobile-panel[hidden] {
    display: none;
  }

  .egg-demo-mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(39, 30, 10, 0.08);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.72);
    color: #2b2213;
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
}

@media (max-width: 640px) {
  .egg-demo-topbar {
    display: none;
  }

  .egg-demo-header-main {
    width: calc(100vw - 1.2rem);
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .egg-demo-brand {
    gap: 0.65rem;
  }

  .egg-demo-brand-mark {
    width: 2.9rem;
    height: 2.9rem;
  }

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

  .egg-demo-brand-copy small {
    max-width: 17rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .egg-demo-header-actions {
    display: none;
  }

  .egg-demo-mobile-panel {
    width: calc(100vw - 1.2rem);
    margin-bottom: 0.8rem;
    padding: 0.8rem;
  }

  .egg-demo-mobile-panel a {
    min-height: 2.9rem;
    font-size: 0.78rem;
  }
}

/* Demo 01 contact dock redesign */
.egg-contact-dock {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 48;
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.egg-contact-call,
.egg-contact-whatsapp {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.egg-contact-call {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.1rem;
  padding: 0.75rem 1rem 0.75rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(22, 28, 39, 0.96), rgba(13, 18, 27, 0.96));
  color: #f8fafc;
  box-shadow:
    0 18px 38px rgba(11, 18, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.egg-contact-call:hover,
.egg-contact-whatsapp:hover {
  transform: translateY(-2px);
}

.egg-contact-call-icon {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f3a4c 0%, #1a2330 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.egg-contact-call-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.egg-contact-call-copy {
  display: grid;
  gap: 0.1rem;
}

.egg-contact-call-copy strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.egg-contact-call-copy small {
  color: rgba(241, 245, 249, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.egg-contact-whatsapp {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #28dd6f 0%, #13b85a 100%);
  color: #ffffff;
  box-shadow:
    0 20px 42px rgba(17, 117, 58, 0.28),
    0 0 0 8px rgba(37, 211, 102, 0.11);
}

.egg-contact-whatsapp::after {
  content: "WhatsApp";
  position: absolute;
  right: calc(100% + 0.8rem);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(20, 26, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #12202f;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.egg-contact-whatsapp:hover::after,
.egg-contact-whatsapp:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-0.2rem);
}

.egg-contact-whatsapp svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.egg-contact-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .egg-demo-body {
    padding-bottom: 8.2rem;
  }

  .egg-contact-dock {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    gap: 0.8rem;
  }

  .egg-contact-call {
    min-height: 3.8rem;
    padding: 0.65rem 0.9rem 0.65rem 0.75rem;
  }

  .egg-contact-whatsapp {
    width: 4.15rem;
    height: 4.15rem;
  }
}

@media (max-width: 640px) {
  .egg-demo-body {
    padding-bottom: 7.8rem;
  }

  .egg-contact-dock {
    right: 0.75rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    gap: 0.7rem;
  }

  .egg-contact-call {
    min-height: 3.55rem;
    padding: 0.55rem 0.8rem 0.55rem 0.65rem;
    gap: 0.65rem;
  }

  .egg-contact-call-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .egg-contact-call-copy strong {
    font-size: 0.85rem;
  }

  .egg-contact-call-copy small {
    font-size: 0.72rem;
  }

  .egg-contact-whatsapp {
    width: 3.9rem;
    height: 3.9rem;
    box-shadow:
      0 16px 32px rgba(17, 117, 58, 0.24),
      0 0 0 6px rgba(37, 211, 102, 0.1);
  }

  .egg-contact-whatsapp svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .egg-contact-whatsapp::after {
    display: none;
  }
}

/* Demo 01 refresh */
.egg-demo-body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 215, 83, 0.18), transparent 18%),
    linear-gradient(180deg, #fffdf6 0%, #f8f2df 24%, #fffef8 56%, #f4efe1 100%);
  color: #20190e;
}

.egg-demo-shell {
  width: 100%;
  margin: 0;
  padding-bottom: 4rem;
}

.egg-demo-shell > main > .section {
  padding: clamp(4rem, 6vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.egg-demo-shell > main > .section > *:not(.egg-slider) {
  width: min(1360px, 100%);
  margin-inline: auto;
}

.egg-demo-topbar,
.egg-demo-header-main,
.egg-demo-header-meta,
.egg-footer-grid,
.egg-footer-bottom {
  width: min(1360px, calc(100vw - 2rem));
  margin-inline: auto;
}

.egg-demo-topbar {
  padding: 0.9rem 0 0.8rem;
  color: #5c4a1b;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.egg-demo-topbar a {
  text-decoration: none;
  font-weight: 800;
}

.egg-demo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 18px 40px rgba(59, 44, 10, 0.08);
  backdrop-filter: blur(18px);
}

.egg-demo-header-main {
  gap: 1.4rem;
  padding: 1rem 0;
}

.egg-demo-brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  border-color: rgba(39, 30, 10, 0.18);
  background: linear-gradient(180deg, #ffd453 0%, #e7b319 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.egg-demo-brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.egg-demo-brand-copy small {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.egg-demo-nav {
  gap: 1.1rem;
}

.egg-demo-nav a {
  padding: 0.35rem 0 0.5rem;
  color: #322715;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.egg-demo-nav a::after {
  bottom: -0.15rem;
  height: 3px;
}

.egg-demo-header-meta {
  padding: 0.8rem 0 0.95rem;
  border-top: 1px solid rgba(39, 30, 10, 0.08);
  background: transparent;
}

.egg-demo-meta-copy {
  gap: 0.75rem 1.2rem;
  color: #6b592a;
}

.egg-demo-socials a {
  width: 2.15rem;
  height: 2.15rem;
  border-color: rgba(39, 30, 10, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.egg-demo-shell > main > .section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(255, 248, 225, 0.62), rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(39, 30, 10, 0.02), rgba(39, 30, 10, 0.02));
  border-top: 1px solid rgba(39, 30, 10, 0.05);
  border-bottom: 1px solid rgba(39, 30, 10, 0.05);
}

.egg-hero.section {
  padding: 0 1rem 3.6rem;
  background: transparent;
  border: 0;
}

.egg-hero.section .egg-slider {
  width: min(1440px, calc(100vw - 2rem));
  margin-inline: auto;
}

.egg-slider,
.egg-product-card,
.egg-band,
.egg-value-card,
.egg-cta,
.egg-cta-panel,
.egg-customer-card,
.egg-region-card,
.egg-quality-card {
  border-color: rgba(39, 30, 10, 0.09);
  box-shadow: 0 20px 52px rgba(59, 44, 10, 0.07);
}

.egg-slider {
  padding: 1rem;
  background: rgba(255, 252, 242, 0.92);
}

.egg-slider-hero .egg-slider-stage {
  min-height: clamp(38rem, 76vh, 54rem);
}

.egg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 15, 8, 0.52) 0%, rgba(20, 15, 8, 0.16) 42%, rgba(20, 15, 8, 0.3) 100%),
    linear-gradient(180deg, rgba(20, 15, 8, 0.18), rgba(20, 15, 8, 0.24));
}

.egg-slide img {
  border-radius: 4px;
}

.egg-hero-content {
  align-items: flex-start;
  padding: 1.35rem;
}

.egg-hero-content .egg-hero-copy {
  width: min(40rem, 46%);
  max-width: 40rem;
  align-self: flex-start;
  padding: 1.55rem 1.6rem;
  background: linear-gradient(180deg, rgba(18, 14, 8, 0.84), rgba(18, 14, 8, 0.72));
  border-color: rgba(255, 230, 133, 0.16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.egg-hero-copy h1 {
  max-width: 11.2ch;
  font-size: clamp(2.2rem, 3.25vw, 3.75rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.egg-hero-copy p {
  max-width: 48ch;
  font-size: 0.9rem;
  line-height: 1.56;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.egg-stats-grid {
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.egg-stats-grid article {
  min-height: auto;
  padding: 0.75rem;
}

.egg-slide-overlay {
  right: 1.3rem;
  bottom: 1.3rem;
  width: min(24rem, calc(100% - 2.6rem));
  background: rgba(22, 16, 8, 0.78);
}

.section-heading {
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  max-width: 16ch;
  color: #17120a;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p {
  max-width: 64ch;
  color: #5f5437;
  line-height: 1.8;
}

.egg-product-grid,
.egg-customer-grid,
.egg-region-grid,
.egg-quality-grid {
  gap: 1.2rem;
}

.egg-product-card,
.egg-customer-card,
.egg-region-card,
.egg-quality-card,
.egg-value-card {
  background: rgba(255, 254, 249, 0.96);
}

.egg-product-media {
  height: 14rem;
}

.egg-product-card h3,
.egg-customer-card h3,
.egg-quality-card h3,
.egg-region-card strong {
  font-size: 1.15rem;
}

.egg-band {
  padding: 1.6rem;
}

.egg-value-layout,
.egg-cta {
  gap: 1.2rem;
}

.egg-cta {
  overflow: visible;
}

.egg-cta-copy,
.egg-cta-panel,
.egg-value-copy {
  padding: 1.7rem;
}

.egg-footer {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, #171108 0%, #120d06 100%);
}

.egg-footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 1.2rem;
  padding: 2.2rem 0 2rem;
}

.egg-footer-brand {
  max-width: none;
  padding-right: 1rem;
}

.egg-footer-brand p,
.egg-footer-block p,
.egg-footer-block a,
.egg-footer-bottom span {
  line-height: 1.8;
}

.egg-footer-block a {
  text-decoration: none;
}

.egg-footer-map {
  min-height: 100%;
}

.egg-footer-map a {
  min-height: 3rem;
  padding: 0 1rem;
}

.egg-footer-bottom {
  padding: 1rem 0 1.35rem;
  background: transparent;
}

.egg-floating-whatsapp {
  right: 1.4rem;
  bottom: 1.4rem;
  width: 4.35rem;
  height: 4.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #25d366 0%, #16b85b 100%);
  color: #ffffff;
  box-shadow:
    0 22px 42px rgba(17, 117, 58, 0.3),
    0 0 0 10px rgba(37, 211, 102, 0.12);
  isolation: isolate;
}

.egg-floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -0.5rem;
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: inherit;
  z-index: -1;
}

.egg-floating-whatsapp svg {
  width: 1.95rem;
  height: 1.95rem;
}

.egg-floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 1120px) {
  .egg-demo-header-main {
    grid-template-columns: 1fr;
  }

  .egg-demo-nav,
  .egg-demo-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .egg-hero-content .egg-hero-copy {
    width: min(44rem, 62%);
  }

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

  .egg-footer-map-block {
    grid-column: auto;
    grid-row: auto;
  }

  .egg-footer-links {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .egg-demo-shell > main > .section {
    padding: 3.4rem 1rem;
  }

  .egg-demo-topbar,
  .egg-demo-header-main,
  .egg-demo-header-meta,
  .egg-footer-grid,
  .egg-footer-bottom,
  .egg-demo-shell > main > .section > *:not(.egg-slider),
  .egg-hero.section .egg-slider {
    width: min(100%, calc(100vw - 2rem));
  }

  .egg-demo-header {
    position: relative;
  }

  .egg-hero.section {
    padding-inline: 0;
  }

  .egg-hero-content {
    padding: 1rem;
  }

  .egg-hero-content .egg-hero-copy {
    width: min(100%, 42rem);
  }

  .egg-slider-hero .egg-slider-stage {
    min-height: 42rem;
  }
}

@media (max-width: 640px) {
  .egg-demo-topbar {
    font-size: 0.76rem;
  }

  .egg-demo-header-main,
  .egg-demo-header-meta,
  .egg-footer-grid,
  .egg-footer-bottom,
  .egg-demo-shell > main > .section > *:not(.egg-slider),
  .egg-hero.section .egg-slider {
    width: calc(100vw - 1.2rem);
  }

  .egg-hero.section {
    padding-bottom: 2.6rem;
  }

  .egg-slider {
    padding: 0.7rem;
  }

  .egg-slider-hero .egg-slider-stage {
    min-height: 34rem;
  }

  .egg-hero-content {
    position: static;
    padding: 0;
    margin-top: 0.85rem;
  }

  .egg-hero-content .egg-hero-copy {
    width: 100%;
    padding: 1.5rem;
    background: rgba(18, 14, 8, 0.94);
  }

  .egg-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .egg-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 1.7rem;
  }

  .egg-floating-whatsapp {
    right: 0.85rem;
    bottom: 0.95rem;
    width: 3.8rem;
    height: 3.8rem;
    box-shadow:
      0 16px 34px rgba(17, 117, 58, 0.28),
      0 0 0 7px rgba(37, 211, 102, 0.1);
  }

  .egg-floating-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}
