:root {
  --brand: #13243D;
  --brand-dark: #0d1a2d;
  --brand-light: #1e3a5f;
  --accent: #2563eb;
  --success: #059669;
  --danger: #ef4444;
  --warning: #dc2626;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 24px rgba(19,36,61,.12);
  --radius: 1rem;
  --transition: all 0.25s ease;
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Top Ribbon === */
.top-ribbon {
  background: var(--brand);
  color: #e5e7eb;
  padding: 0.65rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(19, 36, 61, 0.15);
}

.top-ribbon__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.top-ribbon__link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.top-ribbon__link strong {
  color: #93c5fd;
}

/* === Sticky Header === */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.landing-header .brand img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--brand);
  opacity: 1;
}


/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 36, 61, 0.25);
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-ghost:hover {
  background: var(--brand);
  color: #fff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: 85vh;
  background: 
    radial-gradient(1200px 600px at 15% 10%, rgba(19,36,61,0.08), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: visible;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

/* --- Trust Badge --- */
.trust-badges {
  position: absolute;
  top: -4rem;
  left: 0;
  z-index: 25;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-badge__img {
  height: 40px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

.trust-badge__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
}

/* --- Hero Content --- */
.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(19, 36, 61, 0.08);
  border: 1px solid rgba(19, 36, 61, 0.15);
  color: var(--brand);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--brand), #60a5fa 60%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-stat {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* --- Hero Visual (Animated Path Version) --- */
.hero-visual {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
/* Background Glow */
.hero-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(19,36,61,0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateY(-50%) scale(1.05); }
}

.animation-container {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 170px;
  margin: 0 auto;
}
/* SVG Container */
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Animated Dot Following Path */
.hero-dot {
  position: absolute;      /* <- antes: fixed */
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #1e3a5f, #13243D);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 0 rgba(19, 36, 61, 0.6),
    0 4px 12px rgba(19, 36, 61, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
  animation: dot-pulse 1.5s ease-out infinite;
}
.hero-dot.arrived {
  animation: dot-arrived 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0% { 
    box-shadow: 
      0 0 0 0 rgba(19, 36, 61, 0.7),
      0 4px 12px rgba(19, 36, 61, 0.5);
  }
  100% { 
    box-shadow: 
      0 0 0 24px rgba(19, 36, 61, 0),
      0 4px 12px rgba(19, 36, 61, 0.5);
  }
}

@keyframes dot-arrived {
  0%, 100% { 
    box-shadow: 
      0 0 0 8px rgba(19, 36, 61, 0.4),
      0 4px 20px rgba(19, 36, 61, 0.7);
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    box-shadow: 
      0 0 0 14px rgba(19, 36, 61, 0.25),
      0 6px 28px rgba(19, 36, 61, 0.9);
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Play Button - CLICKABLE DESIGN */
.hero-play {
  position: absolute;      /* <- antes: fixed */
  left: 0;
  top: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 35px rgba(19, 36, 61, 0.35),
    0 0 0 0 rgba(19, 36, 61, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 15;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.hero-play.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 
      0 12px 35px rgba(19, 36, 61, 0.35),
      0 0 0 0 rgba(19, 36, 61, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 
      0 16px 45px rgba(19, 36, 61, 0.45),
      0 0 0 12px rgba(19, 36, 61, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}

.hero-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 
    0 16px 50px rgba(19, 36, 61, 0.5),
    0 0 0 16px rgba(19, 36, 61, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation: none;
}

.hero-play:active {
  transform: translate(-50%, -50%) scale(1.05);
}

.play-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3a5f, #13243D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(19, 36, 61, 0.4);
}

.hero-play:hover .play-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(19, 36, 61, 0.6);
}

.play-icon svg {
  margin-left: 3px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .trust-badges {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}

/* ========================================
   SECTIONS (Features, Industries, MDP)
   ======================================== */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(19, 36, 61, 0.08);
  color: var(--brand);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 46rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* === FEATURES === */
.features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(19, 36, 61, 0.08);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  stroke: var(--brand);
}

.feature-icon.success {
  background: rgba(5, 150, 105, 0.1);
}

.feature-icon.warning {
  background: rgba(220, 38, 38, 0.1);
}

.feature-icon.red {
  background: rgba(239, 68, 68, 0.1);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-toggle {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.feature-toggle::before,
.feature-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.feature-toggle::before {
  width: 14px;
  height: 2px;
}

.feature-toggle::after {
  width: 2px;
  height: 14px;
}

.feature-card.is-open .feature-toggle {
  background: var(--brand);
  border-color: var(--brand);
}

.feature-card.is-open .feature-toggle::before,
.feature-card.is-open .feature-toggle::after {
  background: #fff;
}

.feature-card.is-open .feature-toggle::after {
  transform: scaleY(0);
}

/* Feature Details - STARTS CLOSED */
.feature-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.feature-card.is-open .feature-details {
  max-height: 500px;
}

.feature-details-inner {
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
  margin-top: 1rem;
}

.feature-details h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-details ul {
  list-style: none;
  padding: 0;
  color: var(--text-secondary);
}

.feature-details li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  line-height: 1.6;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* === INDUSTRIES === */
.industries {
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.industry-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.industry-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === MDP (Managed Data Protection) === */
.mdp {
  background: #fff;
}

.mdp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.mdp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.mdp-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.mdp-icon {
  color: var(--brand);
  margin-bottom: 1rem;
}

.mdp-icon svg {
  stroke: var(--brand);
}

.mdp-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mdp-brief {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.mdp-toggle {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.mdp-card.is-open .mdp-toggle {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* MDP Details - STARTS CLOSED */
.mdp-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mdp-card.is-open .mdp-details {
  max-height: 400px;
}

.mdp-details-inner {
  padding-top: 1rem;
}

.mdp-details ul {
  list-style: none;
  padding: 0;
  color: var(--text-secondary);
}

.mdp-details li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  line-height: 1.6;
}

.mdp-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-title .highlight {
  color: #93c5fd;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: rgba(19, 36, 61, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(19, 36, 61, 0.12);
  transform: scale(1.05);
}

.card-icon svg {
  stroke: var(--brand);
}

.card-icon.accent {
  background: rgba(37, 99, 235, 0.1);
}

.card:hover .card-icon.accent {
  background: rgba(37, 99, 235, 0.15);
}

.card-icon.accent svg {
  stroke: var(--brand);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.cta-footer {
  text-align: center;
  margin-top: 3rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--brand);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(203, 213, 225, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(203, 213, 225, 0.9);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #93c5fd;
  padding-left: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(203, 213, 225, 0.9);
}

.contact-item svg {
  flex-shrink: 0;
  color: #93c5fd;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.compliance-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  padding: 0.3rem 0.6rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(203, 213, 225, 0.8);
}

.gartner-link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
}

.gartner-link:hover {
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.video-modal__dialog {
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.video-modal__frame {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
}

.video-modal__close:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ========================================
   ACCESSIBILITY & MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-glow,
  .hero-dot,
  .hero-play {
    animation: none !important;
  }
  
  #animatedPath {
    stroke-dashoffset: 0 !important;
  }
}

/* Focus Styles */
*:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

/* Hide theme header/footer if needed */
body.itsmine-landing .site-header,
body.itsmine-landing .site-footer {
  display: none !important;
}

/* /wp-content/themes/itsmine-child-theme/itsmine-landing.css */
:root {
  --brand: #13243D;
  --brand-dark: #0d1a2d;
  --accent: #2563eb;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 6px 16px rgba(19,36,61,.12);
}

body.ebook-landing {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.ebook-landing .lm-wrap {
  max-width: 960px;
  margin: 56px auto 80px;
  padding: 0 20px;
}

/* HERO */
.ebook-landing .lm-hero {
  text-align: left;
  margin-bottom: 28px;
}
.ebook-landing .lm-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 6px 10px;
}
.ebook-landing .lm-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 12px 0 10px;
  color: var(--brand);
  font-weight: 800;
}
.ebook-landing .lm-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  max-width: 820px;
}

/* CARD */
.ebook-landing .lm-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-top: 22px;
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .ebook-landing .lm-card {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
    padding: 34px 38px;
  }
}

.ebook-landing .lm-left h3 {
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--brand-dark);
}
.ebook-landing .lm-left p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

/* Buttons */
.ebook-landing .lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  will-change: transform;
}
.ebook-landing .lm-btn:active {
  transform: translateY(1px);
}

.ebook-landing .lm-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.ebook-landing .lm-btn-primary:hover {
  filter: brightness(1.05);
}

.ebook-landing .lm-btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--brand);
}
.ebook-landing .lm-btn-outline:hover {
  border-color: #cbd5e1;
}

/* Hint */
.ebook-landing .lm-hint {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 10px;
}
.ebook-landing .lm-hint a {
  color: var(--brand);
  text-decoration: underline;
}

/* List */
.ebook-landing .lm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ebook-landing .lm-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--text-primary);
}
.ebook-landing .lm-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  font-weight: 800;
  color: var(--accent);
}

/* Actions (footer buttons) */
.ebook-landing .lm-actions {
  margin-top: 24px;
  text-align: left;
}

/* Links baseline */
.ebook-landing a {
  color: var(--accent);
  text-decoration: none;
}
.ebook-landing a:hover {
  text-decoration: underline;
}

/* Small tweaks for very narrow screens */
@media (max-width: 380px) {
  .ebook-landing .lm-btn {
    width: 100%;
  }
}


/* =========================================
   MOBILE MENU (FINAL PERFECT V2)
   ========================================= */

/* --- 1. GLOBAL FIX --- */
@media screen and (max-width: 991px) {
    html, body { 
        width: 100% !important; 
        min-width: 100% !important; 
        max-width: 100vw !important; 
        overflow-x: hidden !important; 
        margin: 0 !important; 
        padding: 0 !important; 
        position: relative !important; 
    }
    .container, .site-header, .site-main { 
        width: 100% !important; 
        max-width: 100% !important; 
        min-width: 0 !important; 
        box-sizing: border-box !important; 
    }
}

/* --- 2. CLASS STICKY HEADER (JS ACTIVATED) --- */
.landing-header.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
}

/* Animasi */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* --- 3. Burger --- */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 100002 !important; position: relative; }
.mobile-toggle span { display: block; width: 25px; height: 3px; background-color: var(--brand, #13243D); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }

/* --- 4. Overlay --- */
.mobile-overlay { display: none; position: fixed !important; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 100000 !important; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px); }

/* --- 5. MENU --- */
.desktop-menu { display: flex; gap: 1.5rem; align-items: center; }
.mobile-menu { display: none !important; }

@media screen and (max-width: 991px) {
    .desktop-menu { display: none !important; }
    .mobile-toggle { display: block !important; }

    /* Header Layout */
    .landing-header__inner { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 15px 20px !important; width: 100% !important; }
    .brand img { max-height: 35px !important; width: auto !important; display: block; }

    /* MENU SIDEBAR MOBILE */
    .mobile-menu {
        position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important;
        width: 280px !important; height: 100vh !important;
        background: #ffffff !important;
        display: flex !important; flex-direction: column !important;
        transform: translateX(100%) !important; visibility: hidden !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
        z-index: 100001 !important;
    }
    .mobile-menu.is-active { transform: translateX(0) !important; visibility: visible !important; }
    .mobile-overlay.is-active { display: block !important; opacity: 1 !important; }

    /* Header Menu Mobile (Logo + Close) */
    .mobile-menu-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 20px 25px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #fff !important;
    }
    .mobile-logo img { height: 30px !important; width: auto !important; }
    .mobile-close {
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 5px !important;
        color: #64748b !important;
        display: flex !important; align-items: center; justify-content: center;
    }
    .mobile-close:hover { color: var(--brand, #13243D) !important; }

    /* Links */
    .mobile-links { padding: 20px 25px !important; overflow-y: auto !important; display: flex !important; flex-direction: column !important; }
    .mobile-links a { font-size: 1rem !important; padding: 15px 0 !important; border-bottom: 1px solid #f1f5f9 !important; width: 100% !important; display: block !important; text-align: left !important; color: #334155 !important; text-decoration: none !important; }
    .mobile-links a.btn { margin-top: 25px !important; text-align: center !important; background-color: var(--brand, #13243D) !important; color: #fff !important; display: flex !important; justify-content: center !important; padding: 12px !important; border-radius: 6px !important; border: none !important; }

    /* Fix Hero */
    .hero { padding-top: 2rem !important; padding-bottom: 2rem !important; overflow: hidden !important; }
    .hero__grid { display: flex !important; flex-direction: column !important; width: 100% !important; margin: 0 !important; gap: 20px !important; }
    .trust-badges { position: static !important; margin: 0 auto 15px auto !important; display: flex !important; justify-content: center !important; width: 100% !important; transform: none !important; }
    .trust-badge { max-width: 90% !important; }
    .hero-content { padding: 0 5px !important; }
    .hero-title { font-size: 2rem !important; line-height: 1.2 !important; }
    .hero-buttons { flex-direction: column !important; padding: 0 !important; gap: 10px !important; }
    .hero-buttons .btn { width: 100% !important; }
    .hero-glow { display: none !important; }
    .hero-visual { width: 100% !important; max-width: 100% !important; overflow: hidden !important; margin-top: 10px !important; }
    .animation-container { width: 100% !important; transform: scale(0.7) !important; transform-origin: center top !important; }
}

/* === FIX: Button Start Now on Navbar === */
.nav a.btn { 
    color: #ffffff !important; 
    opacity: 1 !important; 
}
.nav a.btn:hover { 
    color: #ffffff !important;
    opacity: 1 !important;
}