:root {
  --bg: #f5efe6;
  --bg-deep: #efe4d5;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fffaf2;
  --text: #1f2728;
  --muted: #5f6a68;
  --line: rgba(31, 39, 40, 0.1);
  --teal: #5ea79c;
  --teal-deep: #2f6b64;
  --gold: #c88f44;
  --coral: #c86d5d;
  --shadow: 0 24px 60px rgba(64, 49, 33, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(94, 167, 156, 0.12), transparent 20%),
    radial-gradient(circle at top right, rgba(200, 143, 68, 0.12), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, #f8f2ea 50%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.theme-tech-3d {
  background:
    radial-gradient(circle at 15% 10%, rgba(94, 167, 156, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(200, 143, 68, 0.16), transparent 18%),
    linear-gradient(180deg, #f7f1e8 0%, #f3e7d8 46%, #ecddd0 100%);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.ambient {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

.ambient-a {
  top: 8%;
  left: -8%;
  background: rgba(94, 167, 156, 0.3);
}

.ambient-b {
  top: 38%;
  right: -10%;
  background: rgba(200, 143, 68, 0.28);
}

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

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding-top: 16px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: rgba(255, 248, 240, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(31, 39, 40, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(94, 167, 156, 0.18), rgba(200, 143, 68, 0.2)), var(--surface-strong);
  color: var(--teal-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 39, 40, 0.08);
}

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

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong, h1, h2, h3 { font-family: "Sora", sans-serif; }
.brand-copy small, .hero-text, .headline-block p, .content-card p, .service-stack p, .showcase-card p, .footer p, .contact-panel p, .contact-form .form-note, .stack-card p, .timeline-card p, .service-page-card p {
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 10px; }
.nav a {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.96rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav a:hover, .nav a.active {
  background: rgba(94, 167, 156, 0.12);
  color: var(--teal-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.3s ease;
}

.hero { position: relative; padding: 86px 0 32px; }
.hero-grid, .split-layout, .contact-layout, .page-hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.hero-home {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
}

.eyebrow, .mini-label, .stat-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow, .mini-label { color: var(--teal-deep); }
h1, h2 { margin: 14px 0 18px; line-height: 1.02; }
h1 { font-size: clamp(2.9rem, 5.9vw, 5.2rem); max-width: 12ch; }
.hero-text, .content-card p, .contact-panel p { max-width: 610px; font-size: 1.08rem; line-height: 1.9; }

.hero-actions, .footer-links, .contact-meta, .contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.hero-benefits article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.hero-benefits strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.hero-benefits small {
  color: var(--muted);
  line-height: 1.6;
}

.hero-title {
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: riseWord 0.7s ease forwards;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-mini-stats article {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.hero-mini-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  color: var(--teal-deep);
}

.hero-mini-stats small {
  color: var(--muted);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(47, 107, 100, 0.16);
}

.button-primary { color: #fff; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.button-secondary { border-color: rgba(31, 39, 40, 0.12); background: rgba(255, 255, 255, 0.58); }

.hero-strip, .contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip span, .contact-tags span, .contact-meta span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 39, 40, 0.08);
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-visual { display: flex; justify-content: center; }

.hero-stage-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.tech-stage {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 0.96;
  border-radius: 38px;
  background:
    radial-gradient(circle at center, rgba(94, 167, 156, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(31, 39, 40, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(7deg) rotateY(-8deg);
}

.tech-stage::before,
.tech-stage::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 28px;
  border: 1px solid rgba(31, 39, 40, 0.06);
}

.tech-stage::after { inset: 10%; }

.hero-illustration {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 220px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-float-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.hero-float-card small {
  color: var(--muted);
  line-height: 1.5;
}

.hero-float-card-a {
  left: -28px;
  bottom: 58px;
}

.hero-float-card-b {
  right: -18px;
  top: 42px;
}

.hero-float-card-c {
  left: 20%;
  top: -12px;
}

.section { padding: 44px 0 92px; }
.section-intro { padding-top: 12px; }
.headline-block { max-width: 860px; margin-bottom: 30px; }
.headline-block.narrow { max-width: 760px; }
.headline-block h2, .content-card h2, .contact-panel h1 { font-size: clamp(2.3rem, 4.6vw, 4.2rem); }

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

.premium-ribbon article,
.feature-bullets > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
}

.premium-ribbon strong,
.feature-bullets strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.premium-ribbon p,
.feature-bullets p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.intro-grid, .showcase-grid, .service-page-grid, .infra-grid, .timeline-grid {
  display: grid;
  gap: 22px;
}

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

.stat-card, .content-card, .showcase-card, .service-page-card, .stack-card, .contact-panel, .contact-form, .timeline-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 39, 40, 0.08);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: var(--shadow);
}

.glass-3d,
.depth-panel,
.product-card,
.shop-mini-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 250, 244, 0.62));
  backdrop-filter: blur(18px);
}

.glass-3d::before,
.depth-panel::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 167, 156, 0.18), transparent 70%);
  pointer-events: none;
}

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

.visual-card {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
}

.visual-card img,
.service-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.service-media {
  margin-bottom: 16px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.feature-bullets {
  display: grid;
  gap: 16px;
}

.stat-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.accent-teal { background: linear-gradient(180deg, rgba(94, 167, 156, 0.12), rgba(255, 252, 247, 0.88)); }
.accent-gold { background: linear-gradient(180deg, rgba(200, 143, 68, 0.12), rgba(255, 252, 247, 0.88)); }
.accent-coral { background: linear-gradient(180deg, rgba(200, 109, 93, 0.12), rgba(255, 252, 247, 0.88)); }

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-deep);
  font-weight: 700;
}

.service-stack, .stack-wrap { display: grid; gap: 16px; }

.service-stack article, .stack-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.7);
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
}

.service-stack span, .stack-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--teal-deep);
  background: linear-gradient(135deg, rgba(94, 167, 156, 0.16), rgba(200, 143, 68, 0.15));
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.service-stack h3, .showcase-card h3, .service-page-card h3, .stack-card h3, .timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.showcase-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }

.showcase-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(94, 167, 156, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(248, 239, 227, 0.76));
}

.showcase-card.wide { min-height: 320px; }

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

.work-card {
  display: flex;
  flex-direction: column;
}

.work-card-top,
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.work-card-top {
  margin-bottom: 12px;
}

.work-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(94, 167, 156, 0.14);
  color: var(--teal-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.work-meta {
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-grid {
  margin-top: 26px;
}

.product-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.product-thumb,
.product-hero-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.product-thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
}

.product-hero-image {
  max-height: 300px;
  margin-bottom: 18px;
}

.admin-message-cell {
  max-width: 260px;
  white-space: normal;
  color: var(--muted);
}

.price-pill {
  display: inline-flex;
  margin: 6px 0 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 39, 40, 0.06);
  color: var(--teal-deep);
  font-size: 0.94rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-shop {
  padding-bottom: 22px;
}

.shop-stack {
  display: grid;
  gap: 16px;
}

.shop-mini-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(31, 39, 40, 0.08);
  box-shadow: var(--shadow);
}

.shop-mini-card small {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.shop-mini-card h3 {
  margin: 0 0 10px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(31, 39, 40, 0.08);
  background: linear-gradient(135deg, rgba(31, 39, 40, 0.96), rgba(47, 107, 100, 0.88));
  color: #fff7ef;
  box-shadow: var(--shadow);
}

.cta-panel .eyebrow { color: #f2d8ad; }
.cta-panel h2 { margin-bottom: 0; max-width: 12ch; }

.footer { padding: 0 0 28px; }
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 39, 40, 0.08);
}

.footer-links a { color: var(--muted); }
.page-hero { padding: 66px 0 30px; }
.service-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-page-card { min-height: 220px; }
.infra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.timeline-card { position: relative; overflow: hidden; }
.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.contact-layout { padding: 56px 0 86px; }

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 39, 40, 0.1);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 107, 100, 0.4);
  box-shadow: 0 0 0 4px rgba(94, 167, 156, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes beam {
  0% { transform: translateX(-18px); opacity: 0.15; }
  50% { opacity: 1; }
  100% { transform: translateX(18px); opacity: 0.15; }
}

@keyframes riseWord {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid, .split-layout, .contact-layout, .page-hero, .intro-grid, .showcase-grid, .service-page-grid, .infra-grid, .timeline-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel, .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .nav-wrap { border-radius: 28px; }
  .menu-toggle { display: inline-block; }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 248, 240, 0.95);
    border: 1px solid rgba(31, 39, 40, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero { padding-top: 46px; }
  .section { padding-bottom: 68px; }
  .tech-stage { min-height: 420px; }
  .floating-panel { min-width: 132px; padding: 14px; }
}

.footer-rich {
  padding-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 39, 40, 0.08);
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-block strong {
  display: block;
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 39, 40, 0.08);
  font-size: 0.9rem;
  color: var(--teal-deep);
}

.footer-socials a span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(94, 167, 156, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
}

.social-icon {
  line-height: 0;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(31, 39, 40, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1f9e72, #27d084);
  box-shadow: 0 18px 30px rgba(31, 158, 114, 0.28);
  font-weight: 800;
}

.whatsapp-float .social-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.inline-icon {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(94, 167, 156, 0.16), rgba(200, 143, 68, 0.16));
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.inline-icon::before,
.inline-icon::after {
  content: "";
  position: absolute;
}

.icon-shield::before {
  inset: 9px 11px 8px;
  border: 2px solid var(--teal-deep);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  clip-path: polygon(50% 0, 100% 18%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.icon-chip::before {
  inset: 11px;
  border: 2px solid var(--teal-deep);
  border-radius: 6px;
}

.icon-chip::after {
  left: 8px;
  right: 8px;
  top: 20px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 -8px 0 var(--gold), 0 8px 0 var(--gold);
}

.icon-network::before {
  left: 9px;
  top: 19px;
  width: 24px;
  height: 2px;
  background: var(--teal-deep);
  box-shadow: 0 -10px 0 transparent, 0 10px 0 transparent;
}

.icon-network::after {
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 20px 0 var(--gold), 20px 10px 0 var(--gold);
}

.icon-cube::before {
  inset: 11px;
  border: 2px solid var(--teal-deep);
  transform: rotate(45deg);
}

.icon-server::before {
  left: 10px;
  right: 10px;
  top: 10px;
  height: 8px;
  border-radius: 6px;
  background: rgba(47, 107, 100, 0.18);
  border: 2px solid var(--teal-deep);
  box-shadow: 0 10px 0 rgba(47, 107, 100, 0.18), 0 20px 0 rgba(47, 107, 100, 0.18);
}

.icon-server::after {
  width: 4px;
  height: 4px;
  left: 15px;
  top: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 10px 0 var(--gold), 0 20px 0 var(--gold);
}

.footer-contact p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.admin-body {
  background:
    radial-gradient(circle at top left, rgba(94, 167, 156, 0.1), transparent 20%),
    linear-gradient(180deg, #f6efe6 0%, #f1e4d6 100%);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  width: min(1400px, calc(100% - 32px));
  margin: 24px auto;
}

.admin-sidebar,
.admin-content,
.admin-login-card,
.admin-panel {
  border-radius: 28px;
  border: 1px solid rgba(31, 39, 40, 0.08);
  background: rgba(255, 251, 246, 0.78);
  box-shadow: var(--shadow);
}

.admin-sidebar {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-sidebar-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-sidebar h2,
.admin-content h1,
.admin-login-card h1 {
  margin: 0;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-nav a {
  padding: 12px 16px;
  border-radius: 16px;
}

.admin-nav a.active,
.admin-nav a:hover {
  background: rgba(94, 167, 156, 0.12);
  color: var(--teal-deep);
}

.admin-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-quick-links a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 39, 40, 0.08);
}

.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.category-filter a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 39, 40, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.category-filter a.active,
.category-filter a:hover {
  background: rgba(94, 167, 156, 0.12);
  color: var(--teal-deep);
}

.admin-content {
  padding: 28px;
}

.admin-topbar,
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-stat-grid,
.admin-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

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

.admin-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.admin-panel {
  padding: 24px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 39, 40, 0.08);
}

.admin-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.admin-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-link-button {
  border: 0;
  background: transparent;
  color: var(--coral);
  cursor: pointer;
  padding: 0;
}

.admin-form-grid {
  display: grid;
  gap: 16px;
}

.admin-form {
  margin-top: 18px;
}

.admin-form-grid.compact {
  gap: 14px;
}

.admin-field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 39, 40, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.admin-field textarea {
  resize: vertical;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.admin-alert {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
}

.admin-alert.success {
  background: rgba(94, 167, 156, 0.14);
  color: var(--teal-deep);
}

.admin-alert.error {
  background: rgba(200, 109, 93, 0.14);
  color: #8d3c2f;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 32px;
}

@media (max-width: 1080px) {
  .footer-grid,
  .admin-shell,
  .admin-stat-grid,
  .admin-grid,
  .product-grid,
  .visual-split,
  .premium-ribbon,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-home {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .tech-stage {
    transform: none;
  }

  .hero-home {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-stage-wrap {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-float-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .product-card,
  .shop-mini-card,
  .contact-panel,
  .content-card {
    padding: 22px;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
