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

:root {
  --brand: #D36D35;
  --brand-light: #e8835050;
  --brand-dim: #D36D3520;
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #8a8a8a;
  --muted2: #555;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 3px;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
}

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

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.dropdown {
  position: relative;
}

.dropdown>a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.btn-login {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, #D36D3555 0%, #D36D3522 40%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-dim);
  border: 1px solid rgba(211, 109, 53, 0.3);
  color: #e8935a;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.accent { color: var(--brand); }

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 760px;
  margin-bottom: 20px;
  position: relative;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
}

.hero .description {
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.btn-primary {
  background: var(--brand);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(211, 109, 53, 0.35);
}

.btn-primary:hover {
  background: #c05e28;
  transform: translateY(-1px);
  box-shadow: 0 0 45px rgba(211, 109, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}

.btn-secondary:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

/* testimonial */
.testimonial {
  margin-top: 72px;
  position: relative;
  max-width: 420px;
}

.testimonial-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted2);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.testimonial blockquote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #8b3a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

/* logos */
.trusted {
  margin-top: 64px;
  position: relative;
  width: 100%;
  max-width: 800px;
}

.trusted p {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logos {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .5;
  transition: opacity .2s;
}

.logo-item:hover {
  opacity: 1;
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 560px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ─── FEATURES ─── */
#features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background .2s;
  position: relative;
}

.feature-card:hover {
  background: var(--bg3);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--brand-dim), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-dim);
  border: 1px solid rgba(211, 109, 53, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
}

/* ─── TRACKING ─── */
#tracking {
  background: var(--bg2);
}

.tracking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tracking-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.tracking-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--brand-light), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.chart-bar-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 140px;
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand), #e8935a);
  border-radius: 6px 6px 0 0;
  transition: height .3s;
  position: relative;
}

.bar-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--muted2);
  white-space: nowrap;
}

.chart-labels {
  display: flex;
  gap: 10px;
  padding-top: 28px;
}

.chart-stat {
  flex: 1;
  text-align: center;
}

.chart-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}

.chart-stat-label {
  font-size: 11px;
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.metric-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.metric-card .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.metric-card .label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.metric-card .change {
  font-size: 11px;
  color: #4caf7d;
  margin-top: 4px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── ANALYTICS ─── */
#analytics {
  background: var(--bg);
}

.analytics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.analytics-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.analytics-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .2s, transform .2s;
  cursor: default;
}

.analytics-card:hover {
  border-color: rgba(211, 109, 53, 0.35);
  transform: translateX(4px);
}

.analytics-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--brand-dim);
  border: 1px solid rgba(211, 109, 53, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.analytics-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.analytics-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.big-stat {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.big-stat::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, var(--brand-light), transparent 65%);
  filter: blur(50px);
}

.big-stat .num {
  font-size: 64px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -3px;
  position: relative;
}

.big-stat .num span {
  color: var(--brand);
}

.big-stat .label {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  position: relative;
}

.stat-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.stat-item {
  flex: 1;
  background: var(--bg3);
  padding: 16px;
  text-align: center;
}

.stat-item .n {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

.stat-item .l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── MANAGEMENT ─── */
#management {
  background: var(--bg2);
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mgmt-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.mgmt-card:hover {
  border-color: rgba(211, 109, 53, .3);
  transform: translateY(-3px);
}

.mgmt-card.large {
  grid-column: span 2;
}

.mgmt-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.mgmt-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-dim);
  border: 1px solid rgba(211, 109, 53, .3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mgmt-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(76, 175, 125, 0.15);
  color: #4caf7d;
  border: 1px solid rgba(76, 175, 125, .25);
}

.mgmt-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mgmt-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.user-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 13px;
  font-weight: 500;
}

.user-email {
  font-size: 11px;
  color: var(--muted);
}

.user-status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
}

.status-active {
  background: rgba(76, 175, 125, .15);
  color: #4caf7d;
}

.status-idle {
  background: rgba(255, 180, 0, .12);
  color: #ffb400;
}

/* ─── INTEGRATIONS ─── */
#integrations {
  background: var(--bg);
}

.integrations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.integration-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, transform .2s;
  cursor: default;
}

.integration-item:hover {
  border-color: rgba(211, 109, 53, .3);
  transform: scale(1.04);
}

.integration-item .int-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.integration-item .int-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.integration-item.featured {
  border-color: rgba(211, 109, 53, .35);
}

.integration-item.featured .int-name {
  color: var(--brand);
}

.integration-connect {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.integration-connect .dot {
  width: 8px;
  height: 8px;
  background: #4caf7d;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.integration-connect span {
  font-size: 13px;
  color: var(--muted);
}

.integration-connect strong {
  color: var(--text);
}

/* ─── PRICING ─── */
#pricing {
  background: var(--bg2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--brand);
  background: linear-gradient(160deg, rgba(211, 109, 53, .08) 0%, var(--bg3) 60%);
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-price .currency {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--muted);
}

.plan-price .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
}

.plan-price .period {
  font-size: 14px;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-features li.disabled {
  opacity: .35;
}

.plan-features li.disabled::before {
  content: '—';
  color: var(--muted2);
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.plan-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.plan-btn-outline:hover {
  border-color: rgba(255, 255, 255, .2);
  color: var(--text);
}

.plan-btn-fill {
  background: var(--brand);
  border: none;
  color: white;
  box-shadow: 0 0 25px rgba(211, 109, 53, .35);
}

.plan-btn-fill:hover {
  background: #c05e28;
  box-shadow: 0 0 40px rgba(211, 109, 53, .5);
}

.pricing-header {
  text-align: center;
}

.pricing-header .section-title {
  margin: 0 auto 16px;
}

.pricing-header .section-sub {
  margin: 0 auto 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 0;
}

.toggle-label {
  font-size: 14px;
  color: var(--muted);
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--brand);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: left .2s;
}

.toggle-switch.off {
  background: var(--muted2);
}

.toggle-switch.off::after {
  left: 23px;
}

.save-badge {
  font-size: 11px;
  background: rgba(76, 175, 125, .15);
  color: #4caf7d;
  border: 1px solid rgba(76, 175, 125, .25);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col 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;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted2);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s, border-color .2s;
}

.social-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, .2);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s, transform .6s;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

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

  .tracking-layout,
  .analytics-layout,
  .integrations-layout {
    grid-template-columns: 1fr;
  }

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

  .mgmt-card.large {
    grid-column: span 1;
  }

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

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

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 540px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
.popup-overlay.open .popup {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.popup-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}

.popup-header {
  margin-bottom: 32px;
}
.popup-header h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.popup-header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted2);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(211, 109, 53, 0.5);
}

.popup-submit {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 540px) {
  .popup { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}