:root {
  --brand: #2b2623;
  --brand-light: #3d3430;
  --brand-muted: #6b5e59;
  --accent: #c8a96e;
  --accent-light: #e8d5a8;
  --white: #ffffff;
  --off-white: #fafaf8;
  --border: rgba(43, 38, 35, 0.1);
  --border-strong: rgba(43, 38, 35, 0.2);
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 38, 35, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--brand);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* HERO */
.hero {
  padding: 120px 32px 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200, 169, 110, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(43, 38, 35, 0.04) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1399px) {
  .hero-content {
    max-width: 650px;
  }
}

@media (max-width: 1199px) {
  .hero-content {
    max-width: 510px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--brand);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--brand-muted);
  max-width: 560px;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 2%;
  top: 56%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 620px;
  z-index: 2;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 32px 26px rgba(43, 38, 35, 0.15), 0 8px 24px rgba(43, 38, 35, 0.06);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mock-topbar {
  background: var(--brand);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.r {
  background: #ff5f57;
}

.mock-dot.y {
  background: #febc2e;
}

.mock-dot.g {
  background: #28c840;
}

.mock-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.mock-body {
  padding: 1rem;
  background: var(--off-white);
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mock-h {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}

.mock-tag {
  background: rgba(200, 169, 110, 0.15);
  color: var(--brand);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mock-stat {
  background: var(--white);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.mock-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
}

.mock-stat-lbl {
  font-size: 0.6rem;
  color: var(--brand-muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.mock-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mock-task {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mock-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-status.done {
  background: #22c55e;
}

.mock-status.prog {
  background: var(--accent);
}

.mock-status.todo {
  background: var(--border-strong);
}

.mock-task-text {
  font-size: 0.7rem;
  color: var(--brand);
  flex: 1;
  font-weight: 500;
}

.mock-task-team {
  font-size: 0.6rem;
  color: var(--brand-muted);
  margin-left: auto;
}

.mock-progress {
  margin-top: 0.5rem;
}

.mock-progress-lbl {
  font-size: 0.65rem;
  color: var(--brand-muted);
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
}

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

/* SECTIONS */
section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.section-intro {
  max-width: 1280px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-muted);
  /* max-width: 640px; */
}

/* INTRO SECTION */
.intro {
  background: var(--off-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brand-muted);
  margin-bottom: 1.25rem;
}

.intro-text p strong {
  color: var(--brand);
  font-weight: 600;
}

.intro-callout {
  background: var(--brand);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
}

.callout-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro-callout h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.intro-callout p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: default;
}

.why-list li:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.04);
  transform: translateX(4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #d6b98c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.why-icon img {
  max-width: 32px;
  width: 100%;
}

.why-list li span {
  font-size: 0.9375rem;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.5;
}

.why-cta-box {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.why-cta-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-cta-box p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

/* TOOLS SECTION */
.tools {
  background: var(--off-white);
}

.tools-intro {
  max-width: 640px;
  margin-bottom: 4rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.tool-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.tool-card:hover {
  border-color: rgba(200, 169, 110, 0.4);
  box-shadow: 0 16px 48px rgba(43, 38, 35, 0.1);
  transform: translateY(-4px);
}

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

.tool-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #d6b98c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--white);
}

.tool-card-icon img {
  max-width: 32px;
  width: 100%;
}

.tool-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.tool-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-muted);
}

/* TRACKING SECTION */
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.tracking-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
}

.track-item:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.03);
}

.track-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--accent);
}

.track-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand);
}

.tracking-visual {
  background: var(--brand);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tracking-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tracking-visual::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.tv-h {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tv-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.tv-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tv-bar-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  width: 90px;
  flex-shrink: 0;
}

.tv-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.tv-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

.tv-bar-pct {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  text-align: right;
}

.tv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tv-stat-n {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.tv-stat-l {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* SECURITY SECTION */
.security {
  background: var(--off-white);
}

.security-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.sec-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.sec-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.sec-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #d6b98c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--white);
}

.sec-card-icon img {
  max-width: 32px;
  width: 100%;
  max-height: 32px;
}

.sec-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.sec-card p {
  font-size: 1rem;
  color: var(--brand-muted);
  line-height: 1.5;
}

.security-cta-panel {
  background: var(--brand);
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.security-cta-panel h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.security-cta-panel p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* TEAMS SECTION */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  /* max-width: 1100px; */
  margin: 3rem auto 0;
}

.team-card {
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s;
  cursor: default;
}

.team-card:hover {
  border-color: rgba(200, 169, 110, 0.5);
  box-shadow: 0 12px 40px rgba(43, 38, 35, 0.1);
  transform: translateY(-4px);
}

.team-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: #d6b98c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--white);
}

.team-icon img {
  max-width: 32px;
  width: 100%;
}

.team-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-muted);
}

/* COMPARISON TABLE */
.compare {
  background: var(--off-white);
}

.compare-intro {
  /* max-width: 900px; */
  margin: 0 auto;
  margin-bottom: 3.5rem;
  text-align: center;
}

.compare-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-muted);
  margin-top: 1rem;
}

.compare-table {
  /* max-width: 900px; */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table-inner {
  width: 100%;
  border-collapse: collapse;
}

.compare-table-inner th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.th-traditional {
  background: #f0eeec;
  color: var(--brand-muted);
}

.th-clopad {
  background: var(--brand);
  color: var(--white);
}

.th-clopad .gold {
  color: var(--accent);
}

.compare-table-inner td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.compare-table-inner tr:nth-child(even) td {
  background: #fafaf8;
}

.compare-table-inner tr:nth-child(odd) td {
  background: var(--white);
}

.td-traditional {
  color: var(--brand-muted);
}

.td-clopad {
  color: var(--brand);
  font-weight: 500;
}

.td-clopad .check {
  color: #22c55e;
  margin-right: 0.4rem;
}

/* FAQ */
.faq {
  /* max-width: 1600px;
     margin: 0 auto; */
  text-align: center;
  padding: 100px 5vw;
}

.faq .container {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-intro {
  /* max-width: 560px; */
  margin-bottom: 3rem;
}



.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.faq-item ul {
  text-align: left;
  margin: 0;
}

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  list-style: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-icon {
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

details[open] .faq-icon {
  border-color: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  padding-top: 1rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--brand-muted);
  text-align: start;
}

.faq-a ul {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-a ul li::before {
  content: '→  ';
  color: var(--accent);
  font-weight: 600;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 2rem;
}

.cta-card {
  /* max-width: 1100px; */
  margin: 0 auto;
  background: var(--brand);
  border-radius: 24px;
  padding: 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(43, 38, 35, 0.2);
}

/* Decorative background rings inside the card */
.cta-card::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-inner .section-label {
  color: var(--accent);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section h2 em {
  font-style: normal;
  color: var(--accent);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.25rem 0 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.hero-content> :nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content> :nth-child(2) {
  animation-delay: 0.25s;
}

.hero-content> :nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content> :nth-child(4) {
  animation-delay: 0.55s;
}

nav .container-fluid {
  padding-left: 5vw;
  padding-right: 5vw;
}

.team-headings {
  text-align: center;
}

/* ============================================================
   RESPONSIVE — Full system: 1280px → 320px
   ============================================================ */

/* ---- 1280px: Comfortable large screens ---- */
@media (max-width: 1280px) {

  .footer-top {
    padding: 3.5rem 2rem 3rem;
  }

  .footer-bottom {
    padding: 1.25rem 2rem;
  }

  .cta-card {
    padding: 72px 4rem;
  }
}

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {

  .faq {
    padding: 80px 4vw;
  }


  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    position: static !important;
    right: 2%;
    top: 50%;
    transform: none !important;
    max-width: 620px;
    width: 100%;
    z-index: 2;
    margin: 0 auto;
  }

  .intro-grid,
  .why-grid,
  .tracking-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

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

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

  .why-cta-box,
  .security-cta-panel {
    position: static;
  }

  .cta-section {
    padding: 64px 4vw;
  }

  .cta-card {
    padding: 64px 3rem;
  }
}

/* ---- 900px: Tablet portrait ---- */
@media (max-width: 900px) {

  .faq {
    padding: 72px 4vw;
  }


  .hero-content {
    max-width: 100%;
  }

  .intro-grid,
  .why-grid,
  .tracking-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .teams-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

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

  .why-cta-box,
  .security-cta-panel {
    position: static;
  }

  .cta-section {
    padding: 60px 4vw;
  }

  .cta-card {
    padding: 60px 2.5rem;
    border-radius: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    padding: 3rem 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-bottom {
    padding: 1.25rem 2rem;
  }
}

/* ---- 767px: Hamburger / mobile landscape ---- */
@media (max-width: 767px) {

  .faq {
    padding: 64px 1.5rem;
  }


  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .intro-grid,
  .why-grid,
  .tracking-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .teams-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .security-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-cta-box,
  .security-cta-panel {
    position: static;
    padding: 2rem;
  }

  .why-cta-box h3 {
    font-size: 1.25rem;
  }

  .security-cta-panel h3 {
    font-size: 1.125rem;
  }

  .intro-callout {
    padding: 2rem;
  }

  .callout-icon {
    font-size: 1.5rem;
  }

  .tool-card {
    padding: 1.75rem;
  }

  .tracking-visual {
    padding: 2rem;
  }

  /* Comparison table — horizontal scroll on small widths */
  .compare-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table-inner {
    min-width: 540px;
  }

  /* CTA */
  .cta-section {
    padding: 48px 1.5rem;
  }

  .cta-card {
    padding: 56px 2rem;
    border-radius: 18px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 600px: Mobile ---- */
@media (max-width: 600px) {

  .faq {
    padding: 56px 1.25rem;
  }


  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .teams-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tv-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .why-list li {
    padding: 1rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 48px 1.5rem;
    border-radius: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ---- 480px: Small mobile ---- */
@media (max-width: 480px) {

  .faq {
    padding: 48px 1rem;
  }


  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-sub {
    font-size: 0.9375rem;
  }

  .section-desc {
    font-size: 0.9375rem;
  }

  .intro-text p {
    font-size: 0.9375rem;
  }

  .why-cta-box {
    padding: 1.5rem;
  }

  .security-cta-panel {
    padding: 1.75rem;
    margin-bottom: 0;
  }

  .tracking-visual {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 40px 1.25rem;
    border-radius: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 2rem;
  }

  .footer-bottom {
    padding: 1.25rem;
  }
}

/* ---- 375px: Standard phone ---- */
@media (max-width: 375px) {
  nav {
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 30px;
  }


  .faq {
    padding: 40px 1rem;
  }


  h1 {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  .faq-q {
    font-size: 0.9375rem;
  }

  .compare-table-inner th,
  .compare-table-inner td {
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
  }

  .tool-card {
    padding: 1.5rem;
  }

  .sec-card {
    padding: 1.25rem;
  }

  .cta-card {
    padding: 36px 1rem;
  }

  .mobile-link {
    font-size: 0.9375rem;
  }
}

/* ---- 320px: Minimum breakpoint ---- */
@media (max-width: 320px) {


  .faq {
    padding: 36px 0.875rem;
  }


  h1 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.28rem 0.625rem;
  }

  .hero-sub {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-desc {
    font-size: 0.875rem;
  }

  .tool-card {
    padding: 1.25rem;
  }

  .sec-card {
    padding: 1rem;
  }

  .why-list li {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .team-card {
    padding: 1.25rem;
  }

  .tracking-visual {
    padding: 1.25rem;
  }

  .intro-callout {
    padding: 1.5rem;
  }

  .why-cta-box,
  .security-cta-panel {
    padding: 1.25rem;
  }

  .faq-q {
    font-size: 0.875rem;
  }

  .faq-a {
    font-size: 0.875rem;
  }

  .cta-card {
    padding: 32px 0.875rem;
    border-radius: 12px;
  }

  .footer-top {
    padding: 2rem 0.875rem 1.5rem;
  }

  .footer-bottom {
    padding: 1rem 0.875rem;
  }

  .footer-tagline {
    font-size: 0.8125rem;
  }

  .mobile-link {
    font-size: 0.875rem;
    padding: 0.75rem 0;
  }
}

/* VIDEO MODAL */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}

.video-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.video-modal-overlay.is-open .video-modal-box {
  transform: scale(1);
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-modal-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}