.elementor-7118 .elementor-element.elementor-element-c7885ae{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5e38463 *//* ==============================
   TreG Technologies Services UI
   ============================== */

:root {
  --bg: #0C141A;
  --bg-soft: #101d25;
  --secondary-bg: #111B22;
  --card: rgba(17, 27, 34, 0.82);
  --card-strong: rgba(17, 27, 34, 0.94);
  --border: rgba(159, 221, 255, 0.18);
  --border-hover: rgba(71, 211, 255, 0.55);
  --text: #f7fbff;
  --text-muted: #a8b8c5;
  --text-soft: #d7e3ea;
  --yellow: #f5c84b;
  --yellow-soft: #ffe08a;
  --accent: #3bd5ff;
  --accent-strong: #65e8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 34px rgba(59, 213, 255, 0.2);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 20, 26, 0.96), #0C141A 42%, #0C141A),
    radial-gradient(circle at 18% 10%, rgba(59, 213, 255, 0.13), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(62, 132, 255, 0.14), transparent 30%),
    var(--bg);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Section structure */
.services-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
  isolation: isolate;
}

.services-section--featured {
  min-height: 100vh;
  padding: 112px 0 104px;
}

.services-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.services-section--secondary {
  padding-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-orbit {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.42;
  pointer-events: none;
}

.section-orbit--one {
  top: -150px;
  right: -110px;
  background: radial-gradient(circle, rgba(59, 213, 255, 0.22), transparent 64%);
}

.section-orbit--two {
  bottom: 60px;
  left: -170px;
  background: radial-gradient(circle, rgba(94, 124, 255, 0.18), transparent 66%);
}

/* Headings and copy */
.section-header {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-header--featured {
  max-width: 960px;
  margin-bottom: 54px;
}

.section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: end;
  max-width: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 16px rgba(59, 213, 255, 0.85);
}

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

h1,
.section-header h2 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
}

.section-header--featured h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(59, 213, 255, 0.16);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

/* Reusable service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.services-grid--compact {
  gap: 20px;
}

.services-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 8%, rgba(59, 213, 255, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  content: "";
  border-right: 1px solid rgba(101, 232, 255, 0.22);
  border-bottom: 1px solid rgba(101, 232, 255, 0.22);
  border-radius: 0 0 18px 0;
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  background:
    linear-gradient(145deg, rgba(59, 213, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--card-strong);
  box-shadow: var(--shadow), var(--glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card--compact {
  min-height: 300px;
}

.service-card--featured {
  min-height: 360px;
  border-color: rgba(101, 232, 255, 0.28);
  background:
    linear-gradient(150deg, rgba(59, 213, 255, 0.08), rgba(255, 255, 255, 0.026) 42%),
    var(--card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 42px rgba(59, 213, 255, 0.08);
}

.service-card--featured .icon-box {
  width: 62px;
  height: 62px;
  font-size: 1.65rem;
}

.card-index {
  display: block;
  margin-bottom: 28px;
  color: rgba(215, 227, 234, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(101, 232, 255, 0.28);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(59, 213, 255, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  color: var(--accent-strong);
  font-size: 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 30px rgba(59, 213, 255, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover .icon-box {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 42px rgba(59, 213, 255, 0.24);
}

.service-card h2,
.service-card h3 {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 1.23rem;
  font-weight: 750;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* Individual service detail pages */
.service-detail-section {
  position: relative;
  padding: 104px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 8%, rgba(59, 213, 255, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--secondary-bg) 46%, var(--bg));
  isolation: isolate;
}

.service-detail-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(245, 200, 75, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 213, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 78px;
}

.service-hero__content,
.service-hero__panel,
.glass-card,
.process-step,
.service-cta {
  border: 1px solid rgba(159, 221, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.service-hero__content {
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.service-hero__content h2,
.section-kicker h3,
.service-cta h3 {
  color: var(--yellow);
}

.service-hero__content h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-hero__content p,
.service-cta p {
  max-width: 820px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.service-hero__content p:last-child,
.service-cta p:last-child {
  margin-bottom: 0;
}

.service-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border-color: rgba(245, 200, 75, 0.26);
  box-shadow: var(--shadow), 0 0 34px rgba(245, 200, 75, 0.08);
}

.panel-label {
  color: var(--yellow-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-hero__panel ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-hero__panel li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.service-hero__panel li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(59, 213, 255, 0.8);
}

.service-block {
  margin-top: 76px;
}

.section-kicker {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-kicker h3,
.service-cta h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.value-grid,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 20px;
}

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

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

.glass-card {
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius-md);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 213, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(59, 213, 255, 0.07), rgba(255, 255, 255, 0.026)),
    var(--card-strong);
  box-shadow: var(--shadow), var(--glow);
}

.glass-card h4,
.process-step h4 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 1.12rem;
  line-height: 1.2;
}

.glass-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.feature-card {
  min-height: 260px;
}

.icon-placeholder {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.28);
  border-radius: 14px;
  color: var(--yellow-soft);
  font-weight: 800;
  background: rgba(245, 200, 75, 0.08);
  box-shadow: 0 12px 28px rgba(245, 200, 75, 0.08);
}

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

.process-step {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-weight: 900;
}

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

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(245, 200, 75, 0.2);
  border-radius: var(--radius-md);
  color: var(--yellow);
  font-weight: 750;
  background:
    linear-gradient(145deg, rgba(245, 200, 75, 0.06), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 82px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border-color: rgba(59, 213, 255, 0.3);
  background:
    radial-gradient(circle at 92% 12%, rgba(59, 213, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--card);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.cta-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.cta-button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.cta-button--whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(59, 213, 255, 0.12));
}

.cta-button--email {
  background: linear-gradient(135deg, rgba(245, 200, 75, 0.18), rgba(59, 213, 255, 0.1));
}

.cta-button--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.66);
}

.cta-button--email:hover {
  border-color: rgba(245, 200, 75, 0.66);
}

/* Responsive behavior */
@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-header--split {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .service-hero,
  .service-cta {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

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

  .services-section {
    padding: 72px 0;
  }

  .services-section--featured {
    min-height: auto;
    padding: 76px 0 72px;
  }

  .services-section--secondary {
    padding-top: 58px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  h1,
  .section-header h2 {
    line-height: 1.08;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .service-card--compact {
    min-height: auto;
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .service-card--featured {
    min-height: auto;
  }

  .card-index,
  .icon-box {
    margin-bottom: 22px;
  }

  .service-detail-section {
    padding: 72px 0;
  }

  .service-hero {
    gap: 18px;
    margin-bottom: 56px;
  }

  .service-block {
    margin-top: 54px;
  }

  .value-grid,
  .feature-grid,
  .trust-grid,
  .process-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .glass-card,
  .process-step {
    min-height: auto;
  }

  .service-cta {
    margin-top: 58px;
  }

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

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .service-card {
    padding: 22px;
  }

  .section-intro,
  .service-card p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/* End custom CSS */