@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #3b5cff;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #0f172a;
  --gray: #64748b;
  --light-bg: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: white;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  width: 100%;
}

.main-wrapper {
  margin-top: 66px;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-custom-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.btn-custom-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  color: white;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
}

.btn-hero {
  padding: 15px 35px;
  font-size: 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-hero-primary {
  background: white;
  color: var(--primary);
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  background-color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--primary);
}

/* Dashboard Preview */
.dashboard-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.mini-card {
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  height: 100%;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-title {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.metric-change {
  font-size: 13px;
  font-weight: 600;
}

.metric-change.up {
  color: var(--success);
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b, #334155);
}

.stat-box {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
}

/* Process Steps */
.process-section {
  padding: 80px 0;
}

.step-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.15);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  font-weight: 800;
  margin: 0 auto 25px;
}

/* All Features Section */
.all-features {
  padding: 80px 0;
  background: white;
}

.module-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s;
  height: 100%;
  display: block;
}

.module-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.1);
}

.module-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.module-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.module-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing */
/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Price Header */
.price-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}

.price-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.price-icon i {
  font-size: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-header h3 {
  color: #1e293b;
  font-size: 28px;
}

.price-header p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Pricing Details & Includes */
.pricing-details,
.pricing-includes {
  margin-bottom: 35px;
}

.pricing-details h5,
.pricing-includes h5 {
  color: #1e293b;
  font-size: 18px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #475569;
}

.pricing-list li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

/* Pricing CTA */
.pricing-cta {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.pricing-cta .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pricing-cta .btn-custom-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .price-header h3 {
    font-size: 24px;
  }

  .price-icon {
    width: 70px;
    height: 70px;
  }

  .price-icon i {
    font-size: 32px;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
}

.feature-list i {
  color: var(--success);
  margin-top: 3px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

/* Footer */
.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Section Titles */
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 60px;
}

.mini-card canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 100px !important;
}

.contact-modal {
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.contact-modal .modal-header h4 {
  font-size: 1.4rem;
}

.contact-modal .form-control,
.contact-modal .form-select {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.contact-modal .form-control:focus,
.contact-modal .form-select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.15rem rgba(99, 102, 241, 0.2);
}

.btn-custom-primary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  color: #fff;
  border-radius: 12px;
}

.btn-custom-primary:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
}

.modal-header .btn-close {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff !important;
  opacity: 1;
  padding: 0px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 0px;
}

.modal-header .btn-close:before {
  content: "\f00d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: normal;
  margin-bottom: -1px;
}

.modal-header .btn-close:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
}

/* Policy Pages Styles - Add this to your main CSS file */

/* Policy Hero Section */
.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -300px;
  right: -200px;
}

.policy-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
}

.policy-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 30px;
  color: white;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
}

.policy-title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.policy-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

/* Quick Navigation */
.quick-nav {
  margin-top: -40px;
  padding: 0 0 60px;
  position: relative;
  z-index: 10;
}

.nav-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s;
  border: 2px solid transparent;
  text-align: center;
}

.nav-item i {
  font-size: 28px;
  color: var(--primary);
}

.nav-item span {
  font-size: 14px;
  font-weight: 600;
}

.nav-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
  color: var(--primary);
}

/* Policy Content */
.policy-content {
  padding: 60px 0 80px;
  background: var(--light-bg);
}

.content-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: var(--primary);
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 25px;
}

.content-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.styled-list {
  color: var(--gray);
  line-height: 2;
  padding-left: 25px;
}

.styled-list li {
  margin-bottom: 12px;
}

/* Info Boxes */
.info-box {
  background: linear-gradient(135deg, #f8fafc, white);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 25px 0;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* Use Cards */
.use-card {
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 100%;
}

.use-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

.use-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.use-card h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.use-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* Sharing Items */
.sharing-item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.sharing-item:last-child {
  border-bottom: none;
}

.sharing-item h6 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.sharing-item p {
  margin: 0;
  color: var(--gray);
}

/* Security Features */
.security-feature {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  transition: all 0.3s;
}

.security-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.security-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--primary);
}

.security-feature h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.security-feature p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  gap: 20px;
  margin-top: 25px;
}

.right-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  transition: all 0.3s;
}

.right-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.right-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.right-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.right-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* Contact Section */
.contact-section .contact-card {
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.contact-section .contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

.contact-section .contact-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-section .contact-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-section .contact-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* Policy CTA */
.policy-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
}

.policy-cta h3 {
  font-size: 36px;
  font-weight: 800;
}

.policy-cta p {
  font-size: 18px;
  opacity: 0.95;
}

/* Terms of Service Specific Styles */
.definition-list {
  margin-top: 25px;
}

.definition-item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.definition-item:last-child {
  border-bottom: none;
}

.definition-item h6 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.definition-item p {
  margin: 0;
  color: var(--gray);
}

.service-feature {
  display: flex;
  gap: 15px;
  align-items: start;
}

.service-feature i {
  font-size: 20px;
  margin-top: 3px;
}

.service-feature h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-feature p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.obligation-section {
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 12px;
  padding: 25px;
}

.obligation-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.payment-terms {
  margin-top: 25px;
}

.payment-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.payment-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.payment-item i {
  font-size: 24px;
  margin-top: 3px;
}

.payment-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.payment-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 12px;
  padding: 25px 30px;
  margin: 25px 0;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 15px;
}

.liability-box {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
  border-radius: 12px;
  padding: 25px 30px;
  margin: 25px 0;
}

.liability-box p {
  color: #721c24;
  margin-bottom: 15px;
}

.ip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark);
}

.ip-item i {
  font-size: 20px;
  color: var(--primary);
}

/* Cookie Policy Specific Styles */
.cookie-type-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.cookie-type-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cookie-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.cookie-icon.essential {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.cookie-icon.functional {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.cookie-icon.analytics {
  background: linear-gradient(135deg, #17a2b8, #117a8b);
}

.cookie-icon.marketing {
  background: linear-gradient(135deg, #ffc107, #e0a800);
}

.cookie-header h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}

.cookie-examples {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.cookie-examples strong {
  color: var(--dark);
  display: block;
  margin-bottom: 10px;
}

.use-case-card {
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 100%;
}

.use-case-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.use-case-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.use-case-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.third-party-section {
  margin-top: 25px;
}

.third-party-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.third-party-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.third-party-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.third-party-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.third-party-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}

.choice-section {
  margin-top: 25px;
}

.choice-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.choice-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.choice-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.choice-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.choice-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
}

.browser-links a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 5px;
}

.browser-links a:hover {
  text-decoration: underline;
}

.duration-types {
  margin-top: 25px;
}

.duration-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 15px;
  margin-bottom: 15px;
}

.duration-badge {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.duration-badge.session {
  background: linear-gradient(135deg, #17a2b8, #117a8b);
}

.duration-badge.persistent {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.duration-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.duration-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

header.fixed_header .navbar {
  position: fixed;
  width: 100%;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-fwd-center {
  0% {
    transform: translateZ(-1400px);
    opacity: 0;
  }

  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}

.module-cta {
  text-decoration: none;
  border: 2px dashed var(--primary);
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.module-cta:hover {
  border-color: var(--primary-dark);
}

.cta-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .policy-title {
    font-size: 36px;
  }

  .section-heading {
    font-size: 24px;
  }

  .content-section {
    padding: 30px 20px;
  }

  .nav-item span {
    font-size: 12px;
  }

  .policy-cta h3 {
    font-size: 28px;
  }

  .right-item,
  .payment-item,
  .third-party-item,
  .choice-item,
  .duration-item {
    flex-direction: column;
  }

  .right-badge,
  .cookie-icon,
  .use-case-icon,
  .third-party-logo,
  .choice-icon,
  .duration-badge {
    margin: 0 auto 15px;
  }
}

@media (max-width: 450px) {
  .pricing-cta .btn {
    font-size: 16px;
  }

  section {
    overflow: hidden;
  }
}