/*
Theme Name: Eletic Technology
Theme URI: https://eletic-tec.com
Author: Eletic Technology FZ LLC
Description: Custom corporate WordPress theme for IT consulting and Odoo implementation services.
Version: 1.0.0
Text Domain: eletic-tech
*/

:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #dde5ee;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --navy: #10243e;
  --blue: #1167d8;
  --teal: #00a99d;
  --gold: #d99a28;
  --shadow: 0 18px 55px rgba(16, 36, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(221, 229, 238, 0.72);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--blue) 62%, var(--teal));
  color: #fff;
  font-size: 20px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #263244;
  font-size: 14px;
  font-weight: 650;
}

.menu a {
  padding: 10px 0;
}

.menu a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 103, 216, 0.22);
}

.btn-secondary {
  border-color: rgba(17, 103, 216, 0.28);
  background: #fff;
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #eef6fb;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-technology.png") center right / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 37%, rgba(255,255,255,0.62) 58%, rgba(255,255,255,0.18) 100%);
  content: "";
}

.hero-content {
  width: min(680px, 100%);
  padding: 82px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 72px);
  max-width: 780px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #405066;
  font-size: 19px;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 46px;
}

.metric {
  border: 1px solid rgba(221, 229, 238, 0.86);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(16, 36, 62, 0.08);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 6px 26px rgba(16, 36, 62, 0.05);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #eaf4ff;
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
}

.feature-list li::before {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e8f8f6;
  color: var(--teal);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.panel {
  border: 1px solid rgba(221, 229, 238, 0.92);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.odoo-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(113, 75, 103, 0.08);
}

.odoo-brand img {
  width: 148px;
  height: auto;
}

.odoo-brand span {
  color: #714b67;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pipeline {
  display: grid;
  gap: 16px;
}

.pipe-step {
  display: flex;
  gap: 16px;
  align-items: start;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbfd;
}

.pipe-step span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.pipe-step > div {
  min-width: 0;
}

.pipe-step h3 {
  font-size: 19px;
}

.pipe-step p {
  max-width: 42rem;
  margin: 6px 0 0;
  color: var(--muted);
}

.cta {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--navy), #15365e);
  color: #fff;
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.eletic-form {
  display: grid;
  gap: 14px;
}

.eletic-form label {
  display: grid;
  gap: 7px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 750;
}

.eletic-form input,
.eletic-form select,
.eletic-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.eletic-form textarea {
  min-height: 130px;
  resize: vertical;
}

.eletic-status {
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: #e8f8f6;
  color: #087c72;
  font-weight: 700;
}

.site-footer {
  padding: 36px 0;
  background: #071827;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #20c65a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(32, 198, 90, 0.34);
  font-size: 22px;
  font-weight: 900;
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, #f5fbff, #eef6fb);
}

.content {
  padding: 72px 0;
}

.content :where(p, li) {
  color: var(--muted);
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .menu {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(255,255,255,0.9);
  }

  .metrics,
  .grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metrics {
    gap: 10px;
  }
}
