/* RenuTech IT — styles.css v5 */
/* Fonts: Rajdhani (headings/brand), Barlow Condensed (labels/kickers), DM Sans (body) */

:root {
  --bg0: #070b14;
  --bg1: #070d1b;
  --bg2: #07162b;

  --ink: #e9eef9;
  --muted: rgba(233,238,249,.70);
  --muted2: rgba(233,238,249,.58);

  --line: rgba(255,255,255,.08);
  --line2: rgba(255,255,255,.10);

  --glass: rgba(12,20,36,.55);
  --glass2: rgba(12,20,36,.42);

  --shadow: 0 18px 50px rgba(0,0,0,.55);

  --blue: #60a5fa;
  --blue2: #3b82f6;
  --green: #60d394;
  --teal: #64d2ff;

  --r: 18px;
  --r2: 22px;

  --max: 1160px;

  --font-head: 'Rajdhani', ui-sans-serif, system-ui, sans-serif;
  --font-label: 'Barlow Condensed', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 700px at 18% 22%, rgba(96,165,250,.16), transparent 58%),
    radial-gradient(900px 600px at 75% 18%, rgba(96,211,148,.10), transparent 60%),
    radial-gradient(1200px 900px at 55% 100%, rgba(59,130,246,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}

/* Subtle dot grid overlay */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Keep all content above dot grid */
header, main, footer { position: relative; z-index: 1; }

a { color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ─── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,9,18,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* ─── BRAND ──────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(96,211,148,.30));
  transition: filter .2s ease;
}
.brand:hover .brand-mark {
  filter: drop-shadow(0 0 14px rgba(96,211,148,.50));
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .20em;
  font-size: 18px;
  line-height: 1;
}
.brand-accent { color: var(--green); }
.brand-sub {
  margin-top: 3px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted2);
  font-weight: 500;
}

/* ─── DESKTOP NAV ─────────────────────────────────────────────── */
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--muted2);
  padding: 8px 0;
  transition: color .15s ease;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transition: transform .18s ease;
  transform-origin: left;
}
.nav a:hover { color: rgba(233,238,249,.90); }
.nav a:hover::after { transform: scaleX(1); }

/* ─── HAMBURGER ───────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line2);
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease;
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(233,238,249,.80);
  transition: transform .22s ease, opacity .18s ease, width .18s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 70%; align-self: flex-end; }

/* Animated X state */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ───────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 24px 20px;
  background: rgba(5,9,20,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 62px;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-link {
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .14s ease;
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--ink); }
.mobile-cta { margin-top: 12px; text-align: center; }

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero { padding: 54px 0 26px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .20em;
  color: var(--muted2);
  margin-bottom: 16px;
}

.headline {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.headline-accent {
  display: block;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
}

.subhead {
  margin: 0 0 20px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: rgba(233,238,249,.78);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: border-color .15s ease, background .15s ease;
}
.chip:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: rgba(233,238,249,.92);
  background: rgba(255,255,255,.04);
  transition: transform .10s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 6px 20px rgba(0,0,0,.30);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(90deg, rgba(96,211,148,.92), rgba(96,165,250,.92));
  border-color: rgba(96,165,250,.26);
  color: rgba(6,10,18,.95);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(90deg, rgba(96,211,148,1), rgba(96,165,250,1));
  border-color: rgba(96,165,250,.40);
  box-shadow: 0 6px 24px rgba(96,165,250,.28);
}
.btn-ghost {
  background: rgba(255,255,255,.02);
  color: rgba(233,238,249,.88);
}
.full { width: 100%; }

.fine {
  margin-top: 14px;
  color: var(--muted2);
  font-size: 13px;
}
.link {
  color: rgba(96,165,250,.95);
  text-decoration: none;
  transition: color .12s ease;
}
.link:hover { text-decoration: underline; color: var(--blue); }
.link.strong { font-weight: 700; }

/* ─── HERO IMAGE ──────────────────────────────────────────────── */
.hero-media {
  margin-top: 20px;
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  transition: box-shadow .2s ease;
}
.hero-media:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(96,165,250,.12);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7,11,20,.08) 0%,
      rgba(7,11,20,.30) 55%,
      rgba(7,11,20,.62) 100%
    );
  pointer-events: none;
}
.hero-media-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .92;
  transition: opacity .2s ease, transform .4s ease;
}
.hero-media:hover .hero-media-img {
  opacity: 1;
  transform: scale(1.015);
}

/* ─── GLASS CARD (right hero) ─────────────────────────────────── */
.glass-card {
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(18,30,52,.65), rgba(10,16,30,.55));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.glass-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.65);
  border-color: rgba(255,255,255,.14);
}
.glass-head { padding: 22px 22px 16px; }
.card-kicker {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .20em;
  color: rgba(233,238,249,.55);
  margin-bottom: 10px;
}
.card-title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 22px 18px;
}
.mini {
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 14px;
  transition: background .15s ease, border-color .15s ease;
}
.mini:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.mini-title {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.mini-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.glass-foot {
  padding: 14px 22px 18px;
  border-top: 1px dashed rgba(255,255,255,.10);
}
.foot-note {
  color: rgba(233,238,249,.60);
  font-size: 13px;
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 34px 0; }
.section-head { margin-bottom: 16px; }

.section-kicker {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .20em;
  color: rgba(233,238,249,.55);
  margin-bottom: 10px;
}
.section-title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.muted { color: var(--muted); }
.small { font-size: 13px; color: var(--muted2); }

/* ─── WIDE CARD ───────────────────────────────────────────────── */
.wide-card {
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 14px 40px rgba(0,0,0,.40);
  padding: 28px;
  transition: box-shadow .2s ease;
}
.wide-card:hover { box-shadow: 0 18px 50px rgba(0,0,0,.50); }
.wide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.list { margin-top: 16px; display: grid; gap: 10px; }
.list-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.sub-title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: rgba(233,238,249,.92);
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.example {
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: rgba(233,238,249,.76);
  font-size: 13px;
  line-height: 1.45;
  transition: background .14s ease, border-color .14s ease;
}
.example:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
}

.note {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(233,238,249,.60);
  font-size: 13px;
}

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.price-card {
  position: relative;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
  padding: 24px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .18s ease;
}
.price-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-3px);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(96,165,250,.10), rgba(255,255,255,.03));
  border-color: rgba(96,165,250,.22);
}
.price-card.featured:hover {
  border-color: rgba(96,165,250,.36);
  box-shadow: 0 20px 56px rgba(0,0,0,.55), 0 0 0 1px rgba(96,165,250,.14);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(96,165,250,.14);
  border: 1px solid rgba(96,165,250,.22);
  color: rgba(233,238,249,.80);
}

.price-top { margin-bottom: 10px; }
.plan {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.price { display: flex; align-items: baseline; gap: 8px; }
.amt {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.per { color: var(--muted2); font-weight: 600; font-size: 15px; }
.price-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(233,238,249,.76);
  font-size: 13px;
  line-height: 1.45;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(96,211,148,.92);
  font-weight: 900;
}

/* ─── STEPS / PROCESS ─────────────────────────────────────────── */
.steps { display: grid; gap: 12px; margin-top: 14px; }
.step {
  display: flex;
  gap: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 16px;
  transition: background .14s ease, border-color .14s ease;
}
.step:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(96,165,250,.14);
  border: 1px solid rgba(96,165,250,.22);
  color: rgba(233,238,249,.86);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.step-body { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-card {
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: center;
}

.contact-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.12);
}
.contact-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .20em;
  color: rgba(233,238,249,.55);
  margin-bottom: 8px;
}
.contact-email {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(233,238,249,.55);
  font-size: 13px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .wide-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .hero-media { max-width: 100%; }
}

@media (max-width: 480px) {
  .wrap { width: calc(100% - 32px); }
  .section-title { font-size: 22px; }
  .headline { font-size: 30px; }
  .amt { font-size: 36px; }
  .topbar-inner { padding: 12px 0; }
}
