



/* ========================================
   PREMIUM HERO SECTION - ENHANCED
   ======================================== */
.privacy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

/* Enhanced background effects */
.privacy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.12;
  animation: orbFloat 35s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.35), rgba(0, 191, 166, 0.15) 40%, transparent 70%);
  top: -300px;
  right: -200px;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.25), rgba(102, 126, 234, 0.1) 40%, transparent 70%);
  bottom: -250px;
  left: -250px;
  animation-delay: -17s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(100px, -100px) scale(1.15) rotate(120deg); }
  66% { transform: translate(-90px, 100px) scale(0.85) rotate(240deg); }
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 183, 74, 0.025) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(0, 183, 74, 0.025) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 0%, transparent 75%);
}

/* Premium badge with enhanced animation */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.06));
  border: 2px solid rgba(0, 183, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 183, 74, 0.08);
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.badge-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--digibro-green), var(--digibro-teal));
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 183, 74, 0.3);
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--digibro-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.badge-dot {
  width: 14px;
  height: 14px;
  background: var(--digibro-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 183, 74, 0.7), 0 0 20px rgba(0, 183, 74, 0.4);
}

@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(0, 183, 74, 0.7), 0 0 20px rgba(0, 183, 74, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(0, 183, 74, 0), 0 0 25px rgba(0, 183, 74, 0.6);
  }
}

/* Premium typography with enhanced gradients */
.privacy-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--digibro-dark);
  letter-spacing: -0.03em;
}



.privacy-hero-subtitle {
  font-size: 19px;
  color: var(--digibro-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 400;
}

/* Enhanced hero stats with premium shadows */
.hero-stats {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.3), 0 4px 12px rgba(0, 183, 74, 0.15);
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%) rotate(45deg);
  animation: shineFlow 3s infinite;
}

@keyframes shineFlow {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}

.stat-icon i {
  font-size: 30px;
  color: white;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-content h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--digibro-dark);
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}

.stat-content p {
  font-size: 14px;
  color: var(--digibro-muted);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Premium Privacy Visual with enhanced effects */
.privacy-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-center {
  position: relative;
  width: 220px;
  height: 220px;
  z-index: 10;
}

.privacy-pulse-ring {
  position: absolute;
  inset: -25px;
  border: 3px solid rgba(0, 183, 74, 0.5);
  border-radius: 50%;
  animation: pulseRing 3.5s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
}

.privacy-pulse-ring.delay-1 {
  animation-delay: 1.2s;
  border-color: rgba(0, 191, 166, 0.4);
}

.privacy-pulse-ring.delay-2 {
  animation-delay: 2.4s;
  border-color: rgba(0, 102, 204, 0.35);
}

@keyframes pulseRing {
  0% {
    transform: scale(0.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.security-icon-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00b74a, #00bfa6, #0066cc);
  background-size: 200% 200%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 70px rgba(0, 183, 74, 0.4), 0 10px 30px rgba(0, 183, 74, 0.2);
  animation: gradientRotate 6s ease infinite;
}

@keyframes gradientRotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.security-icon-main i {
  font-size: 90px;
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Enhanced floating items with premium glassmorphism */
.floating-security-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 183, 74, 0.15);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 183, 74, 0.05);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.floating-security-item:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.25), 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 183, 74, 0.35);
}

.floating-security-item i {
  font-size: 32px;
  color: var(--digibro-green);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-security-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--digibro-teal);
  filter: drop-shadow(0 4px 12px rgba(0, 183, 74, 0.3));
}

.floating-security-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--digibro-dark);
  text-align: center;
  letter-spacing: 0.3px;
}

/* Optimized positioning for circular pattern */
.item-1 { top: 12%; left: 8%; }
.item-2 { top: 8%; right: 10%; }
.item-3 { top: 43%; left: 0%; }
.item-4 { top: 43%; right: 0%; }
.item-5 { bottom: 10%; left: 12%; }
.item-6 { bottom: 12%; right: 10%; }

/* Enhanced scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 30px;
  height: 52px;
  border: 3px solid var(--digibro-green);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 183, 74, 0.2);
}

.wheel {
  width: 5px;
  height: 12px;
  background: var(--digibro-green);
  border-radius: 4px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2.5s ease-in-out infinite;
  box-shadow: 0 2px 6px rgba(0, 183, 74, 0.4);
}

@keyframes scrollWheel {
  0% { top: 12px; opacity: 1; }
  100% { top: 32px; opacity: 0; }
}

.scroll-indicator p {
  font-size: 13px;
  color: var(--digibro-muted);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ========================================
   HIGHLIGHTS SECTION - PREMIUM CARDS
   ======================================== */
.highlights-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
  position: relative;
}

.section-header {
  margin-bottom: 70px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--digibro-dark);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--digibro-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.05), rgba(0, 191, 166, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.2), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 183, 74, 0.3);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 18px 45px rgba(0, 183, 74, 0.4);
}

.highlight-icon i {
  font-size: 38px;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.highlight-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.highlight-card p {
  font-size: 16px;
  color: var(--digibro-muted);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ========================================
   POLICY ITEMS - PREMIUM DESIGN
   ======================================== */
.policy-section {
  padding: 100px 0;
  background: #ffffff;
}

.policy-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.3);
  transition: all 0.4s ease;
}

.policy-item:hover .policy-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 18px 45px rgba(0, 183, 74, 0.4);
}

.policy-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 183, 74, 0.1);
  border-radius: 24px;
  padding: 42px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.policy-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.04), rgba(0, 191, 166, 0.02));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.policy-item:hover .policy-content {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.18), 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 183, 74, 0.25);
}

.policy-item:hover .policy-content::before {
  opacity: 1;
}

.policy-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 183, 74, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.policy-item:hover .policy-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(0, 183, 74, 0.35);
}

.policy-icon i {
  font-size: 32px;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.policy-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.policy-text {
  font-size: 16px;
  color: var(--digibro-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.policy-text p {
  margin-bottom: 18px;
}

.policy-text p:last-child {
  margin-bottom: 0;
}

.policy-text strong {
  color: var(--digibro-dark);
  font-weight: 700;
}

/* Premium lists */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.policy-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--digibro-muted);
  line-height: 1.75;
}

.policy-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--digibro-green);
  font-size: 18px;
}

/* Enhanced info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.info-card {
  background: rgba(248, 250, 252, 0.8);
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 18px;
  padding: 28px 26px;
  transition: all 0.4s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 183, 74, 0.25);
}

.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h4 i {
  color: var(--digibro-green);
  font-size: 20px;
}

.info-card p,
.info-card ul {
  font-size: 15px;
  color: var(--digibro-muted);
  line-height: 1.7;
  margin: 0;
}

.info-card ul {
  padding-left: 20px;
  margin-top: 12px;
}

.info-card ul li {
  margin-bottom: 8px;
}

/* Premium contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 32px;
}

.contact-card {
  text-align: center;
  background: rgba(248, 250, 252, 0.8);
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.06), rgba(0, 191, 166, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.25);
  border-color: rgba(0, 183, 74, 0.3);
  background: rgba(255, 255, 255, 0.98);
}

.contact-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 18px 45px rgba(0, 183, 74, 0.4);
}

.contact-icon i {
  font-size: 34px;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.contact-card p {
  font-size: 15px;
  color: var(--digibro-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.contact-card a {
  color: var(--digibro-green);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--digibro-teal);
  text-decoration: underline;
}

/* ========================================
   TRUST BANNER - PREMIUM CTA
   ======================================== */
.trust-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal), #0066cc);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.trust-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  border-radius: 50%;
  animation: orbFloat 25s ease-in-out infinite;
}

.trust-banner::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  border-radius: 50%;
  animation: orbFloat 30s ease-in-out infinite reverse;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  padding: 52px;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  transition: all 0.5s ease;
}

.trust-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.24);
}

.trust-icon {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
  border-radius: 24px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: all 0.5s ease;
}

.trust-content:hover .trust-icon {
  transform: rotate(-12deg) scale(1.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.trust-icon i {
  font-size: 46px;
  color: var(--digibro-green);
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.trust-text {
  flex: 1;
}

.trust-text h3 {
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.trust-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

.trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: white;
  color: var(--digibro-green);
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.trust-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: var(--digibro-teal);
}

.trust-btn i {
  font-size: 15px;
  transition: transform 0.4s ease;
}

.trust-btn:hover i {
  transform: translateX(8px);
}

/* ========================================
   HIGHLIGHTS SECTION - GLASSMORPHISM CARDS
   ======================================== */
.highlights-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--digibro-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--digibro-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight-card {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal), var(--digibro-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.15);
  border-color: rgba(0, 183, 74, 0.2);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 183, 74, 0.3);
}

.highlight-icon i {
  font-size: 32px;
  color: var(--digibro-green);
  transition: color 0.4s ease;
}

.highlight-card:hover .highlight-icon i {
  color: white;
}

.highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.highlight-card p {
  font-size: 15px;
  color: var(--digibro-muted);
  line-height: 1.7;
  margin: 0;
}





/* Info Grid - Glassmorphism Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 251, 0.9));
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 183, 74, 0.18);
  border-color: rgba(0, 183, 74, 0.25);
  background: white;
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  transform: scale(1.1) rotate(8deg);
}

.info-card-icon i {
  font-size: 24px;
  color: var(--digibro-green);
  transition: color 0.3s ease;
}

.info-card:hover .info-card-icon i {
  color: white;
}

.info-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: var(--digibro-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   DATA SHARING GRID
   ======================================== */
.sharing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.sharing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 251, 0.95));
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sharing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.sharing-card:hover::before {
  transform: scaleX(1);
}

.sharing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 183, 74, 0.2);
  border-color: rgba(0, 183, 74, 0.3);
  background: white;
}

.sharing-card i {
  font-size: 36px;
  color: var(--digibro-green);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.sharing-card:hover i {
  transform: scale(1.15) rotate(-5deg);
  color: var(--digibro-teal);
}

.sharing-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 12px;
}

.sharing-card p {
  font-size: 14px;
  color: var(--digibro-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   SECURITY FEATURES
   ======================================== */
.security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 251, 0.9));
  border: 1.5px solid rgba(0, 183, 74, 0.12);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.security-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--digibro-green), var(--digibro-teal));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.security-feature:hover::before {
  transform: scaleY(1);
}

.security-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 183, 74, 0.15);
  border-color: rgba(0, 183, 74, 0.25);
  background: white;
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.security-feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  transform: rotate(-5deg) scale(1.1);
}

.feature-icon i {
  font-size: 24px;
  color: var(--digibro-green);
  transition: color 0.3s ease;
}

.security-feature:hover .feature-icon i {
  color: white;
}

.feature-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--digibro-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   RIGHTS GRID (DPDPA 2023)
   ======================================== */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.right-item {
  background: white;
  border: 2px solid rgba(0, 183, 74, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.right-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.05), rgba(0, 191, 166, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.right-item:hover::before {
  opacity: 1;
}

.right-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 183, 74, 0.18);
  border-color: rgba(0, 183, 74, 0.3);
}

.right-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.right-item:hover .right-icon {
  background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
  transform: rotate(10deg) scale(1.1);
}

.right-icon i {
  font-size: 28px;
  color: var(--digibro-green);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.right-item:hover .right-icon i {
  color: white;
}

.right-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--digibro-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.right-item p {
  font-size: 13px;
  color: var(--digibro-muted);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}







/* ========================================
   RESPONSIVE DESIGN - ENHANCED
   ======================================== */

@media (max-width: 992px) {
  .privacy-hero {
    padding: 130px 0 70px;
  }

  .hero-stats {
    gap: 3rem;
  }

  .floating-security-item {
    padding: 18px 20px;
  }

  .floating-security-item span {
    font-size: 12px;
  }

  .policy-item {
    gap: 26px;
  }

  .policy-number {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .policy-content {
    padding: 38px 34px;
  }
  
  .trust-content {
    flex-direction: column;
    text-align: center;
    padding: 44px 36px;
  }
  
  .trust-text h3 {
    font-size: 30px;
  }
  
  .trust-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .privacy-hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    gap: 2.5rem;
  }

  .stat-item {
    gap: 14px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 26px;
  }

  .privacy-visual {
    height: 440px;
    margin-top: 50px;
  }

  .floating-security-item {
    padding: 16px 20px;
  }

  .floating-security-item i {
    font-size: 26px;
  }

  .policy-item {
    flex-direction: column;
    gap: 22px;
  }

  .policy-number {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .policy-content {
    padding: 34px 30px;
  }

  .policy-title {
    font-size: 26px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-banner {
    padding: 70px 0;
  }
  
  .trust-content {
    padding: 40px 30px;
  }
  
  .trust-icon {
    width: 80px;
    height: 80px;
  }
  
  .trust-icon i {
    font-size: 40px;
  }
  
  .trust-text h3 {
    font-size: 26px;
  }
  
  .trust-text p {
    font-size: 16px;
  }
  
  .trust-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    padding: 12px 22px;
  }

  .badge-text {
    font-size: 11px;
  }

  .privacy-hero-subtitle {
    font-size: 17px;
  }

  .highlights-section {
    padding: 70px 0;
  }

  .highlight-card {
    padding: 34px 26px;
  }

  .policy-item {
    margin-bottom: 36px;
  }

  .policy-number {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .policy-content {
    padding: 28px 24px;
  }

  .policy-title {
    font-size: 22px;
  }

  .policy-text {
    font-size: 15px;
  }
  
  .trust-content {
    padding: 36px 26px;
    gap: 28px;
  }
  
  .trust-text h3 {
    font-size: 24px;
  }
  
  .trust-text p {
    font-size: 15px;
  }
}
