/* ============================================
   WARRANTY VAULT - MAIN STYLES
   ============================================ */

:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #e6f0ff;
  --secondary-color: #00d084;
  --accent-color: #ff6b35;
  --dark-bg: #0f1419;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --success-color: #00d084;
  --error-color: #ff3333;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
  min-height: 600px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 150px;
  right: 0;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20px;
  left: 50px;
  animation-delay: 2s;
}

.card-icon {
  font-size: 40px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-icon {
  font-size: 20px;
}

/* ============================================
   VALUE PROPOSITIONS
   ============================================ */

.value-props {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.prop-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.prop-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.prop-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.prop-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-light);
  font-size: 14px;
}

.step-arrow {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
}

.plan-price span {
  font-size: 16px;
  color: var(--text-light);
}

.plan-description {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
}

.plan-features {
  flex: 1;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-dark);
}

.feature.disabled {
  color: var(--text-light);
  opacity: 0.6;
}

.check {
  color: var(--success-color);
  font-weight: 700;
  font-size: 18px;
}

.cross {
  color: #ccc;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 25px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 2px solid var(--border-color);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 25px;
  background: var(--light-bg);
  display: none;
  animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions-section {
  padding: 80px 0;
  background: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.solution-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.solution-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.solution-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
}

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   CHECKOUT SECTION
   ============================================ */

.checkout-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.page-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.order-summary {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.order-summary h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.summary-item strong {
  color: var(--text-dark);
}

.summary-divider {
  height: 2px;
  background: var(--border-color);
  margin: 20px 0;
}

.summary-item.total {
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.security-badge {
  display: flex;
  gap: 15px;
  background: var(--primary-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  align-items: flex-start;
}

.lock-icon {
  font-size: 32px;
}

.security-badge p {
  margin: 0;
  font-size: 14px;
}

.security-badge strong {
  color: var(--primary-color);
}

/* ============================================
   PAYMENT FORM
   ============================================ */

.payment-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.payment-form h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.method-option:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.method-option input {
  cursor: pointer;
}

.method-option.active {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.method-icon {
  font-size: 24px;
}

/* ============================================
   FORM STYLES
   ============================================ */

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

.form-field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-field.checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-field.checkbox label {
  margin: 0;
  font-weight: 400;
}

.form-field.checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-field.checkbox a:hover {
  text-decoration: underline;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--light-bg);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.badge-icon {
  font-size: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  line-height: 1.3;
}

.story-section {
  padding: 80px 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.story-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-card {
  background: linear-gradient(135deg, var(--primary-light), #f0f8ff);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.card-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.story-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
}

.mission-content {
  text-align: center;
}

.mission-statement {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
  line-height: 1.6;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
  padding: 80px 0;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.member-avatar {
  font-size: 64px;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-member p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 10px;
}

.member-bio {
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: var(--transition);
}

.info-card:hover {
  background: var(--primary-light);
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-light);
  font-size: 14px;
}

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================
   FOOTER - UPDATED
   ============================================ */

.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f2e 100%);
  color: white;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: white;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-style: italic;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  animation: slideIn 0.3s ease-out;
}

.notification.success {
  border-left: 4px solid var(--success-color);
}

.notification.error {
  border-left: 4px solid var(--error-color);
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================
   POLICY PAGES (Privacy, Terms, Refund)
   ============================================ */

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.policy-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.policy-header p {
  font-size: 16px;
  opacity: 0.9;
}

.policy-content {
  padding: 40px 0;
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.policy-section ul li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
}

.policy-section ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.blog-header p {
  font-size: 18px;
  opacity: 0.9;
}

.blog-container {
  padding: 40px 0;
}

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

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #f0f8ff);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  width: fit-content;
}

.blog-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  font-size: 14px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.blog-link:hover {
  transform: translateX(5px);
}

/* ============================================
   CAREERS PAGE
   ============================================ */

.careers-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.careers-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.careers-header p {
  font-size: 18px;
  opacity: 0.9;
}

.careers-container {
  padding: 40px 0;
}

.why-join {
  margin-bottom: 80px;
}

.why-join h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.open-positions {
  margin-bottom: 80px;
}

.open-positions h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
}

.positions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.position-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  transition: var(--transition);
}

.position-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.position-header h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 0;
}

.position-type {
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.position-location {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.position-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.position-requirements {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.position-requirements strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 15px;
}

.position-requirements ul {
  list-style: none;
  padding: 0;
}

.position-requirements li {
  color: var(--text-light);
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
}

.position-requirements li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.btn-apply {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.culture-section {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.culture-section h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.culture-section p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}

/* ============================================
   HELP CENTER PAGE
   ============================================ */

.help-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.help-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.help-header p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.search-box button {
  padding: 12px 30px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.search-box button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.help-container {
  padding: 40px 0;
}

.help-categories {
  margin-bottom: 80px;
}

.help-categories h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
}

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

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.category-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.category-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.category-link:hover {
  transform: translateX(5px);
}

.popular-articles {
  margin-bottom: 80px;
}

.popular-articles h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-item h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.article-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.article-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.article-item a:hover {
  transform: translateX(5px);
}

.contact-support {
  background: linear-gradient(135deg, var(--primary-light), #f0f8ff);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}

.contact-support h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-support > p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.support-option {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.support-option h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.support-option p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
}

.support-time {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.btn-contact {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 18px;
  opacity: 0.9;
}

.faq-container {
  padding: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 60px;
  background: #ffffff;
  padding: 0;
}

.faq-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background: var(--light-bg);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* ============================================
   AUTHENTICATION PAGES (LOGIN & REGISTER)
   ============================================ */

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
  padding: 40px 20px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.auth-card {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  margin-bottom: 40px;
  text-align: center;
}

.auth-header h1 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.auth-header p {
  color: var(--text-light);
  font-size: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-light);
  transition: var(--transition);
}

.toggle-password:hover {
  color: var(--primary-color);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  align-self: flex-end;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  color: var(--text-light);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
}

.social-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.google-btn span,
.microsoft-btn span {
  font-size: 18px;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  color: var(--text-light);
  font-size: 14px;
}

.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-benefits {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.auth-benefits h2 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.password-strength {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.strength-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: #dc3545;
  transition: var(--transition);
}

.strength-text {
  font-size: 12px;
  color: var(--text-light);
}

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

.error-message {
  color: #dc3545;
  font-size: 12px;
  display: none;
}

.error-message.show {
  display: block;
}

/* ============================================
   VAULT UPLOAD PAGE
   ============================================ */

.vault-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
  padding: 60px 20px;
}

.vault-header {
  text-align: center;
  margin-bottom: 60px;
}

.vault-header h1 {
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.vault-header p {
  font-size: 18px;
  color: var(--text-light);
}

.vault-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.upload-card {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.form-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.file-upload-area {
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 102, 204, 0.05) 100%);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-area:hover {
  border-color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.08) 100%);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.file-upload-area h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.file-upload-area p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.file-info {
  color: var(--text-light);
  font-size: 12px;
  margin-top: 15px;
}

.file-preview {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.file-icon {
  font-size: 32px;
}

.file-details {
  flex: 1;
}

.file-name {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-size: 14px;
}

.file-size {
  color: var(--text-light);
  font-size: 12px;
  margin: 5px 0 0 0;
}

.remove-file {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.remove-file:hover {
  transform: scale(1.2);
}

.additional-files-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.price-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency {
  position: absolute;
  left: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.price-wrapper input {
  padding-left: 30px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.form-actions .btn {
  flex: 1;
  justify-content: center;
}

.vault-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.file-types {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-types li {
  color: var(--text-light);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}

.file-types li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.security-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #28a745 100%);
  color: white;
}

.security-card h3 {
  color: white;
}

.security-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

.security-card a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.info-card p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease-out;
}

.modal-header {
  margin-bottom: 20px;
  text-align: center;
}

.modal-header h2 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 0;
}

.modal-body {
  margin-bottom: 30px;
  text-align: center;
}

.modal-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0;
}

.modal-footer {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   DASHBOARD PAGE
   ============================================ */

.dashboard-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  margin-top: 80px;
}

.dashboard-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.dashboard-header p {
  font-size: 16px;
  opacity: 0.9;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header-actions {
  display: flex;
  gap: 15px;
}

/* Dashboard Stats */
.dashboard-stats {
  padding: 60px 0;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-light), #f0f8ff);
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.stat-icon {
  font-size: 48px;
}

.stat-content h3 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

/* Plan Section */
.plan-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
}

.plan-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.plan-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.plan-card-active {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color);
  position: relative;
}

.plan-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-card-active h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.plan-card-active p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 15px;
}

.feature-item.disabled {
  opacity: 0.5;
  color: var(--text-light);
}

.check-icon {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 700;
}

.feature-item.disabled .check-icon {
  color: #ccc;
}

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

/* Upgrade Options */
.upgrade-options {
  animation: slideDown 0.3s ease-out;
}

.upgrade-options h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--text-dark);
  text-align: center;
}

.upgrade-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.upgrade-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.upgrade-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.upgrade-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.upgrade-card h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.upgrade-card .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.upgrade-card .price span {
  font-size: 16px;
  color: var(--text-light);
}

.upgrade-features {
  list-style: none;
  margin-bottom: 30px;
}

.upgrade-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 15px;
}

.upgrade-features li:last-child {
  border-bottom: none;
}

.upgrade-card .btn {
  width: 100%;
  justify-content: center;
}

/* Warranty Files Section */
.warranty-files-section {
  padding: 60px 0;
  background: #ffffff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 28px;
  color: var(--text-dark);
}

.filter-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.search-input,
.filter-select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.search-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.warranty-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.warranty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.warranty-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.warranty-icon {
  font-size: 32px;
}

.warranty-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-expiring {
  background: #fff3cd;
  color: #856404;
}

.status-expired {
  background: #f8d7da;
  color: #721c24;
}

.warranty-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.warranty-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

.detail-label {
  font-weight: 600;
}

.warranty-actions {
  display: flex;
  gap: 10px;
}

.warranty-actions button {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-view {
  background: var(--primary-light);
  color: var(--primary-color);
}

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

.btn-delete {
  background: #f8d7da;
  color: #721c24;
}

.btn-delete:hover {
  background: #f5c6cb;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  background: var(--light-bg);
  border-radius: 12px;
  border: 2px dashed var(--border-color);
}

.empty-state p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.empty-state p:first-child {
  font-size: 32px;
  margin-bottom: 15px;
}

.empty-state .btn {
  margin-top: 20px;
}

/* Reminders Section */
.reminders-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
}

.reminders-section h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.reminders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.reminder-card {
  background: #fff3cd;
  border-left: 5px solid #f59e0b;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.reminder-card:hover {
  background: #fff8e1;
  transform: translateY(-2px);
}

.reminder-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.reminder-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.reminder-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.empty-reminders {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.reminder-card {
  background: #fff3cd;
  border-left: 5px solid #f59e0b;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.reminder-card:hover {
  background: #fff8e1;
  transform: translateY(-2px);
}

.reminder-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reminder-icon {
  font-size: 1.4rem;
}

.reminder-text {
  font-size: 0.95rem;
  color: #333;
}

.reminder-product {
  font-weight: 600;
  color: #2b6cb0; /* soft blue */
}

.reminder-days {
  font-weight: 600;
  color: #d97706; /* amber tone */
}

.reminder-date {
  font-style: italic;
  color: #555;
}

.empty-reminders {
  background: #f0fdf4;
  color: #166534;
  border-left: 5px solid #22c55e;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.empty-reminders.error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 5px solid #ef4444;
}


/* === Warranty Table Styling === */
.warranty-table {
  width: 95%; /* fills most of dashboard width */
  margin: 20px auto;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background: #fff;
}

.warranty-table th,
.warranty-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.warranty-table th {
  background: #f8f9fb;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.warranty-table tr:hover {
  background: #f7faff;
  transition: 0.2s ease-in;
}

.view-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.view-link:hover {
  text-decoration: underline;
}

/* === Button styling === */
.btn-sm {
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  margin: 4px 0;
  cursor: pointer;
  width: 70px;
  font-weight: 500;
}

.btn-edit {
  background-color: #f5f5f5;
  color: #333;
}

.btn-edit:hover {
  background-color: #ffecd1;
}

.btn-delete {
  background-color: #ffe6e6;
  color: #c0392b;
}

.btn-delete:hover {
  background-color: #ffcccc;
}

/* === Responsive layout === */
@media (max-width: 900px) {
  .warranty-table {
    width: 100%;
    font-size: 14px;
  }
  .btn-sm {
    width: auto;
    padding: 4px 8px;
  }
}


.required{
color:red;
font-weight:bold;
}


    #chatbot-icon {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: #0066ff;
        color: white;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        z-index: 1000;
    }

    #chatbot-box {
        position: fixed;
        bottom: 90px;
        right: 25px;
        width: 350px;
        height: 420px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.25);
        display: none;
        flex-direction: column;
        z-index: 1000;
    }

    #chat-header {
        padding: 12px;
        background: #0066ff;
        color: white;
        font-weight: bold;
        border-radius: 12px 12px 0 0;
    }

    #chat-body {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        font-size: 14px;
    }

    #chat-input-area {
        display: flex;

        border-top: 1px solid #ddd;
    }

    #chat-input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
    }

    #send-btn {
        padding: 10px 15px;
        background: #0066ff;
        color: white;
        border: none;
        cursor: pointer;
    }
