:root {
  --bg: #06090f;
  --bg2: #0a0f1a;
  --bg3: #0e1522;
  --surface: #111a28;
  --surface2: #172135;
  --border: rgba(255,255,255,0.07);
  --teal: #00C9B1;
  --orange: #F4812A;
  --ruby: #E84040;
  --text: #e8edf5;
  --muted: #a0b4cc; /* Clareei um pouco o texto mutado para melhorar a leitura */
  --dim: #546b8a;
  --radius: 14px;
  --font-logo: 'Barlow Condensed', 'Franklin Gothic Demi', sans-serif;
  --font-head: 'Barlow', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px; /* Aumentado a base geral de 16px para 17px */
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-dark {
  background: var(--bg2);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(6,9,15,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,201,177,0.4) 30%, rgba(244,129,42,0.4) 70%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.nav-logo .logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-genius {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 1.4rem; /* Logo um pouco maior */
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-bim {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.4rem; /* Logo um pouco maior */
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.05rem; /* Aumentado o texto do menu */
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  background: var(--teal);
  color: #06090f !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.95rem !important; /* CTA do menu maior */
  transition: opacity .2s, transform .2s !important;
}

.nav-cta:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* =========================================================
   HERO HOME & PAGES
   ========================================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5vw 80px;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 25%, var(--orange) 60%, var(--ruby) 80%, transparent 100%);
  opacity: 0.6;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,201,177,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,201,177,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,201,177,0.13) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,129,42,0.1) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.hero-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.hero-brand-name {
  font-family: var(--font-logo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.hero-brand-name span {
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-brand-sub {
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,177,0.1);
  border: 1px solid rgba(0,201,177,0.3);
  color: var(--teal);
  font-size: .9rem; /* Badge maior */
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: fadeUp .6s ease both;
}

.hero-stripes {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  align-items: center;
}

.hero-stripes span:nth-child(1) { width: 28px; height: 4px; border-radius: 2px; background: var(--teal); display: block; }
.hero-stripes span:nth-child(2) { width: 18px; height: 4px; border-radius: 2px; background: var(--orange); display: block; }
.hero-stripes span:nth-child(3) { width: 10px; height: 4px; border-radius: 2px; background: var(--ruby); display: block; }

h1.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp .7s .1s ease both;
}

h1.hero-title .hl { color: var(--teal); }
h1.hero-title .hl-orange { color: var(--orange); }

.hero-sub {
  font-size: 1.25rem; /* Aumentado bastante para destaque do subtítulo da Home */
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeUp .7s .2s ease both;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #06090f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem; /* Botão primário maior */
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .01em;
}

.btn-primary:hover {
  background: #00b8a3;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,201,177,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem; /* Botão secundário maior */
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .25s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--surface);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp .7s .4s ease both;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem; /* Numeros maiores */
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: .9rem; /* Labels maiores */
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* PAGE HERO (Produtos e Sobre) */
.page-hero {
  padding: 150px 5vw 70px;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,201,177,0.12), transparent 70%);
  pointer-events: none;
}

.page-hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.page-hero-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 6px;
}

.page-hero-brand-name {
  display: block;
  font-family: var(--font-logo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.page-hero-brand-name span {
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-brand-sub {
  display: block;
  margin-top: 4px;
  font-size: .95rem; /* Aumentado */
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.page-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.page-sub {
  max-width: 900px;
  font-size: 1.25rem; /* Subtítulo de página bem visível */
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.page-tags {
  margin-top: 38px;
}

/* =========================================================
   SECTIONS & BASE TYPOGRAPHY
   ========================================================= */
.section-tight {
  padding-top: 20px;
  padding-bottom: 60px;
}

section {
  padding: 100px 5vw;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem; /* Tag maior */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-tag-center {
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
}

h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.15rem; /* Texto de seção maior */
  color: var(--muted);
  max-width: 720px;
  line-height: 1.75;
  font-weight: 300;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* =========================================================
   GENIUSFREE (Mockup)
   ========================================================= */
.gf-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.gf-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; }
.gf-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,201,177,0.15), transparent 70%); }
.gf-mockup { background: var(--bg3); border-radius: 10px; border: 1px solid var(--border); padding: 20px; font-family: monospace; font-size: .9rem; color: var(--muted); position: relative; z-index: 1; }
.gf-mockup-bar { display: flex; gap: 6px; margin-bottom: 16px; align-items: center; }
.gf-mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #E84040; } .dot-y { background: #F4812A; } .dot-g { background: #00C9B1; }
.gf-mockup-title { margin-left: 8px; color: var(--dim); font-family: var(--font-body); font-size: .85rem; white-space: nowrap; text-overflow: ellipsis; flex: 1; min-width: 0; }
.cmd-line { padding: 4px 0; display: flex; gap: 10px; align-items: center; }
.cmd-icon { color: var(--teal); font-size: 1rem; }
.cmd-text { color: #a0b4cc; font-size: .95rem; }
.cmd-badge { margin-left: auto; background: rgba(0,201,177,0.15); color: var(--teal); font-size: .75rem; padding: 3px 10px; border-radius: 100px; font-weight: 600; font-family: var(--font-body); }
.gf-mockup-footer { text-align: center; margin-top: 16px; color: var(--teal); font-size: .85rem; font-family: var(--font-body); }
.gf-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.gf-highlight { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: border-color .2s; }
.gf-highlight:hover { border-color: rgba(0,201,177,0.3); }
.gf-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.gf-highlight h4 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.gf-highlight p { font-size: .95rem; color: var(--muted); line-height: 1.5; }

/* =========================================================
   FEATURES (Tabs and Cards)
   ========================================================= */
.feat-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 60px; }
.feat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn { padding: 12px 24px; border-radius: 100px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-family: var(--font-body); font-size: 1rem; font-weight: 500; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.tab-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.tab-btn.active { background: var(--teal); border-color: var(--teal); color: #06090f; font-weight: 700; }
.feat-panel { display: none; }
.feat-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; animation: fadeUp .3s ease; }

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px; /* Mais respiro */
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--orange), transparent); opacity: 0; transition: opacity .25s; }
.feat-card:hover { border-color: rgba(0,201,177,0.2); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feat-card h4 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.feat-card p { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }

.feat-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 40px; }
.feat-big-title { font-size: 1.8rem !important; margin-bottom: 12px !important; }
.feat-big-text { font-size: 1.15rem !important; margin-bottom: 24px !important; line-height: 1.7 !important; color: var(--muted); }
.feat-list { list-style: none; color: var(--muted); font-size: 1.05rem; }
.feat-list li { margin-bottom: 10px; }

.feat-media-placeholder { background: var(--bg3); border-radius: 8px; height: 280px; display: flex; align-items: center; justify-content: center; font-size: 1rem; text-align: center; padding: 20px; }
.feat-media-teal { border: 1px dashed var(--teal); color: var(--teal); }
.feat-media-orange { border: 1px dashed var(--orange); color: var(--orange); }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 50px; position: relative; overflow: hidden; transition: all .3s; }
.product-card:hover { transform: translateY(-4px); }
.product-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius) var(--radius) 0 0; }
.wire::after { background: linear-gradient(90deg, var(--orange), var(--ruby)); }
.pipe::after { background: linear-gradient(90deg, var(--teal), var(--orange)); }
.product-card.wire { border-color: rgba(244,129,42,0.25); }
.product-card.pipe { border-color: rgba(0,201,177,0.25); }
.product-card.wire::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(244,129,42,0.12), transparent 70%); }
.product-card.pipe::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(0,201,177,0.12), transparent 70%); }
.product-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; }
.badge-wire { background: rgba(244,129,42,0.15); color: var(--orange); }
.badge-pipe { background: rgba(0,201,177,0.15); color: var(--teal); }
.product-card h3 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.wire h3 { color: var(--orange); }
.pipe h3 { color: var(--teal); }

.product-card p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 28px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-features li { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: var(--text); }
.product-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.wire .product-features li::before { color: var(--orange); }
.pipe .product-features li::before { color: var(--teal); }

.product-note { font-size: 1rem !important; color: var(--muted) !important; margin-bottom: 26px !important; line-height: 1.6; }

.product-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; text-decoration: none; transition: all .2s; border: 1px solid; cursor: pointer; }
.wire .product-cta { color: var(--orange); border-color: rgba(244,129,42,0.4); background: rgba(244,129,42,0.08); }
.wire .product-cta:hover { background: rgba(244,129,42,0.15); transform: translateX(4px); }
.pipe .product-cta { color: var(--teal); border-color: rgba(0,201,177,0.4); background: rgba(0,201,177,0.08); }
.pipe .product-cta:hover { background: rgba(0,201,177,0.15); transform: translateX(4px); }
.annual-tag { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--dim); margin-top: 14px; }
.annual-tag::before { content: '🔒'; font-size: .9rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; position: relative; transition: all .25s; }
.testimonial:hover { border-color: rgba(0,201,177,0.2); transform: translateY(-3px); }
.testimonial::before { content: '"'; position: absolute; top: 20px; right: 24px; font-size: 5rem; font-family: var(--font-head); color: var(--surface2); line-height: 1; }
.testimonial p { font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.av1 { background: linear-gradient(135deg, #00C9B1, #006f7e); color: #fff; }
.av2 { background: linear-gradient(135deg, #F4812A, #E84040); color: #fff; }
.av3 { background: linear-gradient(135deg, #00C9B1, #F4812A); color: #fff; }
.author-info h5 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.author-info span { font-size: .85rem; color: var(--muted); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

/* =========================================================
   DOWNLOAD BOX
   ========================================================= */
.download-box { max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid rgba(0,201,177,0.2); border-radius: var(--radius); padding: 60px 50px; position: relative; overflow: hidden; }
.download-top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--ruby)); }
.download-icon { width: 80px; height: 80px; background: rgba(0,201,177,0.1); border: 1px solid rgba(0,201,177,0.25); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 32px; }
.download-btn { margin: 0 auto; display: inline-flex; font-size: 1.15rem; padding: 18px 40px; }
.download-brand { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 10px; opacity: .95; }
.download-brand img { width: 28px; height: 28px; object-fit: contain; }
.download-brand span { font-family: var(--font-head); font-size: 1rem; color: var(--muted); }
.download-note { margin-top: 20px; font-size: .95rem; color: var(--dim); }
.download-note span { color: var(--teal); }

/* =========================================================
   ABOUT & CONTACT
   ========================================================= */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 20px; }
.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; padding: 0 5vw 0; }
.about-num-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; }
.about-num-card .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--teal); letter-spacing: -0.02em; margin-bottom: 4px; }
.about-num-card .lbl { font-size: .95rem; color: var(--muted); }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,201,177,0.1), transparent 70%); }
.about-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.about-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tech-tag { background: var(--bg3); border: 1px solid var(--border); color: var(--text); font-size: .9rem; padding: 8px 16px; border-radius: 100px; font-weight: 500; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 60px; margin-top: 40px; position: relative; overflow: hidden; }
.contact-container::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,129,42,0.08), transparent 70%); pointer-events: none; }
.contact-info h3 { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 20px; color: var(--text); }
.contact-info p { color: var(--muted); margin-bottom: 30px; font-size: 1.05rem; }
.contact-list { margin-top: 40px; list-style: none; padding: 0; }
.contact-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--text); font-size: 1.05rem; }
.contact-list li span { color: var(--teal); font-weight: 700; min-width: 18px; display: inline-flex; justify-content: center; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .95rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-control { width: 100%; padding: 14px 18px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color .2s; }
.form-control:focus { border-color: var(--teal); }
textarea.form-control { min-height: 120px; resize: vertical; }
.contact-submit { width: 100%; border-radius: 8px; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 60px 5vw 40px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 1rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .9rem; color: var(--dim); }

/* =========================================================
   WIREGENIUS EXTRAS
   ========================================================= */
.wire-page-hero .page-hero-brand-name span { background: linear-gradient(135deg, var(--orange), var(--ruby)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wire-glow { background: radial-gradient(circle, rgba(244,129,42,0.14), transparent 70%); }
.wire-intro-card::before { background: radial-gradient(circle, rgba(244,129,42,0.12), transparent 70%); }

.federated-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.federated-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all .25s; }
.federated-card:hover { border-color: rgba(244,129,42,0.25); transform: translateY(-3px); }
.federated-step { width: 42px; height: 42px; border-radius: 12px; background: rgba(244,129,42,0.12); border: 1px solid rgba(244,129,42,0.22); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; margin-bottom: 18px; }
.federated-card h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 8px; }
.federated-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }

.wire-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.wire-feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all .25s; }
.wire-feature-card:hover { border-color: rgba(244,129,42,0.22); transform: translateY(-3px); }
.wire-feature-card h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 8px; }
.wire-feature-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.wire-highlight-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }

.tutorial-steps { display: grid; gap: 16px; margin-top: 42px; }
.tutorial-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
.tutorial-step:hover { border-color: rgba(244,129,42,0.22); }
.tutorial-number { width: 48px; height: 48px; border-radius: 14px; background: rgba(244,129,42,0.12); border: 1px solid rgba(244,129,42,0.22); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.tutorial-step h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 6px; }
.tutorial-step p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.media-placeholder { min-height: 220px; border-radius: var(--radius); background: var(--bg3); border: 1px dashed rgba(244,129,42,0.4); color: var(--orange); display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; font-size: 1rem; }
.wire-cta-box { border-color: rgba(244,129,42,0.2); }
.wire-top-line { background: linear-gradient(90deg, var(--orange), var(--ruby), var(--teal)); }
.wire-download-icon { background: rgba(244,129,42,0.1); border: 1px solid rgba(244,129,42,0.25); }

/* =========================================================
   PIPEGENIUS EXTRAS
   ========================================================= */
.pipe-page-hero .page-hero-brand-name span { background: linear-gradient(135deg, var(--teal), #6ee7d8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pipe-glow { background: radial-gradient(circle, rgba(0,201,177,0.14), transparent 70%); }
.pipe-intro-card::before { background: radial-gradient(circle, rgba(0,201,177,0.12), transparent 70%); }
.exclusive-highlight { margin-top: 42px; background: var(--surface); border: 1px solid rgba(0,201,177,0.18); border-radius: var(--radius); padding: 40px; display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start; }
.exclusive-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(0,201,177,0.1); border: 1px solid rgba(0,201,177,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.exclusive-highlight h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 8px; }
.exclusive-highlight p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.pipe-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.pipe-feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all .25s; }
.pipe-feature-card:hover { border-color: rgba(0,201,177,0.22); transform: translateY(-3px); }
.pipe-feature-card h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 8px; }
.pipe-feature-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }

.pipe-number { background: rgba(0,201,177,0.12); border: 1px solid rgba(0,201,177,0.22); color: var(--teal); }
.pipe-media { border: 1px dashed rgba(0,201,177,0.4); color: var(--teal); }
.pipe-cta-box { border-color: rgba(0,201,177,0.2); }
.pipe-top-line { background: linear-gradient(90deg, var(--teal), #6ee7d8, var(--orange)); }
.pipe-download-icon { background: rgba(0,201,177,0.1); border: 1px solid rgba(0,201,177,0.25); }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison-table-wrapper { margin-top: 42px; overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.comparison-table th, .comparison-table td { padding: 22px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table thead th { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); background: rgba(255,255,255,0.02); }
.comparison-table tbody td { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }
.comparison-table tbody tr td:first-child { color: var(--text); font-weight: 600; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .gf-layout, .about-layout, .contact-container, .feat-card-featured { grid-template-columns: 1fr; gap: 40px; }
  .products-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .federated-grid, .wire-feature-grid, .pipe-feature-grid, .wire-highlight-layout, .media-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 24px 5vw; gap: 20px; }
  .hamburger { display: flex; }
  .hero-brand { margin-bottom: 18px !important; }
  .hero-brand img { width: 42px; height: 42px; }
  .gf-highlights, .about-numbers { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .download-box { padding: 42px 26px; }
  .page-hero { padding-top: 130px; }
  .federated-grid, .wire-feature-grid, .pipe-feature-grid, .wire-highlight-layout, .media-grid, .tutorial-step, .exclusive-highlight { grid-template-columns: 1fr; }
}