:root {
  --bg: #0d1b2a;
  --bg-soft: #13263a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --panel: #f6f1e8;
  --text: #eff4f8;
  --muted: #c4d0da;
  --heading: #fffdf8;
  --accent: #31d0aa;
  --accent-deep: #158f86;
  --accent-warm: #ffb24d;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(5, 12, 21, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(49, 208, 170, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 178, 77, 0.18), transparent 22%),
    linear-gradient(180deg, #08111d 0%, #102235 45%, #0e1721 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  pointer-events: none;
  z-index: 0;
}

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

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

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 72px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(6, 13, 24, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(4, 11, 22, 0.24);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #08231e;
  background: linear-gradient(135deg, var(--accent) 0%, #89f2d7 100%);
}

.brand-logo-wrap {
  width: 116px;
  height: 116px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(4, 11, 22, 0.18);
}

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

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

.brand-text strong,
.nav a,
.button,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--heading);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #67e7c9 100%);
  color: #08231e;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: 0 14px 28px rgba(49, 208, 170, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(49, 208, 170, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--heading);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 72px 0 28px;
}

.hero-copy,
.hero-panel,
.service-card,
.process-grid article,
.cta-card,
.highlights article {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(49, 208, 170, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-copy::after,
.cta-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 77, 0.38), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #9ef3dd;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--heading);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-text,
.section-heading p,
.process-grid p,
.cta-card p,
.highlights p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
}

.hero-badges li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel-card-primary {
  color: #07211d;
  background:
    linear-gradient(160deg, #f8f2e8 0%, #f5dbc0 56%, #f4c58a 100%);
}

.panel-card-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
}

.panel-label,
.service-index {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.metric-grid article {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
}

.metric-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.metric-grid span,
.stack-list li {
  color: rgba(7, 33, 29, 0.78);
}

.panel-card-secondary .stack-list li {
  color: var(--text);
}

.stack-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.stack-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.highlights article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
}

.highlights span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-warm);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 178, 77, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.brand-heading {
  max-width: 880px;
  margin-bottom: 0;
}

.brand-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.brand-points article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.brand-points strong {
  display: block;
  margin-bottom: 12px;
  color: var(--heading);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.brand-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p:last-child {
  margin: 0;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(49, 208, 170, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(49, 208, 170, 0.36);
  background:
    radial-gradient(circle at top right, rgba(49, 208, 170, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
}

.service-card h3 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 1.28rem;
  line-height: 1.15;
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.service-head .service-index {
  margin: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(49, 208, 170, 0.12);
  color: #9ef3dd;
  flex-shrink: 0;
}

.service-icon svg,
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.service-index {
  color: var(--accent-warm);
}

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

.process-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(49, 208, 170, 0.14);
  color: #9ef3dd;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.process-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.18rem;
}

.process-grid p {
  margin: 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-grid article {
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.value-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.value-grid article,
.faq-item,
.site-footer {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.value-grid article,
.faq-item {
  padding: 28px;
}

.value-grid h3,
.faq-item h3 {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: 1.2rem;
  line-height: 1.2;
}

.value-grid p,
.faq-item p,
.site-footer p,
.footer-links a {
  color: var(--muted);
  line-height: 1.7;
}

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

.cta-section {
  padding-bottom: 40px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(49, 208, 170, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(49, 208, 170, 0.16), transparent 25%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.cta-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.cta-card h2 {
  max-width: 12ch;
}

.cta-card p:last-child {
  margin-bottom: 0;
  max-width: 62ch;
}

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

.contact-panel article,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(8, 18, 30, 0.48);
  backdrop-filter: blur(12px);
}

.contact-panel article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 138px;
  padding: 18px;
  text-align: center;
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: #9ef3dd;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel a {
  color: var(--heading);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.form-note {
  font-size: 0.92rem;
}

.quote-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.quote-form label {
  color: var(--heading);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(196, 208, 218, 0.78);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(49, 208, 170, 0.48);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(49, 208, 170, 0.12);
}

.quote-form select option {
  color: #08111d;
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quote-submit {
  margin-top: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #72f7a2 100%);
  color: #042010;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(11, 29, 20, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(11, 29, 20, 0.4);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  max-width: 760px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--heading);
}

@media (max-width: 1100px) {
  .hero,
  .services-grid,
  .industry-grid,
  .brand-points,
  .value-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-card h2 {
    max-width: 100%;
  }

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

@media (max-width: 860px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  h1 {
    max-width: 100%;
  }

  .highlights,
  .services-grid,
  .industry-grid,
  .brand-points,
  .process-grid,
  .value-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 12px;
    padding: 14px;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-copy,
  .panel-card,
  .brand-card,
  .brand-points article,
  .service-card,
  .process-grid article,
  .highlights article,
  .cta-card,
  .quote-form,
  .contact-panel article {
    padding: 22px;
  }

  .brand-logo-wrap {
    width: 94px;
    height: 94px;
    padding: 8px;
  }

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

  .hero-actions,
  .contact-panel,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-small,
  .whatsapp-float {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
  }

  .section {
    padding-top: 70px;
  }
}
