/* ===================================
   GLOBAL STYLES & VARIABLES
   =================================== */
:root {
  /* Colors */
  --primary-color: #0a403a;
  --secondary-color: #1a5e52;
  --accent-color: #ffd700;
  --text-light-color: #ffffff;
  --text-dark-color: #2c3e50;
  --light-grayish-blue-color: #ecf0f1;
  --background-light-color: #fdfdfd;

  /* Spacing & Effects */
  --border-radius: 15px;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0,0,0,0.25);

  /* Typography */
  --font-inter: 'Inter', sans-serif;
  --font-playfair-display: 'Playfair Display', serif;

  /* Hero Colors */
  --hero-gradient-start-color: var(--primary-color);
  --hero-gradient-end-color: var(--secondary-color);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-inter);
  background: var(--background-light-color);
  color: var(--text-dark-color);
  opacity: 0;
  animation: fadeInBody 1s ease forwards;
}

h1, h2, h3, h4 {
  font-family: var(--font-playfair-display);
  margin: 0;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInBody {
  to { opacity: 1; }
}

@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to { opacity: 1; }
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonsSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

@keyframes pulseRed {
  0%, 100% { border-left-color: #dc3545; }
  50% { border-left-color: #f86c7a; }
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */

/* Header */
header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--text-light-color);
  padding: 1rem 0;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInHeader 0.8s ease-in-out;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  min-width: 188px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

nav ul li {
  transition: transform 0.3s ease;
  position: relative;
}

nav ul li a {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  color: var(--text-light-color);
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background: rgba(255,215,0,0.2);
  color: var(--accent-color);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light-color);
  margin-left: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.actions input {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: none;
  font-size: 0.95rem;
  background: rgba(255,215,0,0.1);
  color: var(--text-dark-color);
  transition: background 0.3s ease;
}

.actions input:focus {
  outline: none;
  background: rgba(255,215,0,0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, var(--hero-gradient-start-color), var(--hero-gradient-end-color));
  color: var(--text-light-color);
  padding: 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  animation: heroEntrance 1s ease-out forwards;
  animation-delay: 0.3s;
  position: relative;
  z-index: 1;
}

.hero .text {
  flex: 1;
  max-width: 850px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero .highlight {
  color: var(--accent-color);
  font-weight: 800;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--light-grayish-blue-color);
  line-height: 1.6;
}

.hero .image img {
  width: 100%;
  max-width: 450px;
  max-height: 450px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: transform 0.4s ease;
  border: 2px solid var(--light-grayish-blue-color);
  object-fit: cover;
}

.hero .image img:hover {
  transform: scale(1.08);
}

.hero-curve {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--text-light-color);
  padding: 3rem 2rem 3rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

footer h4 {
  margin-bottom: 1.2rem;
  color: var(--accent-color);
  font-size: 1.3rem;
}

footer p {
  font-size: 1rem;
  color: var(--light-grayish-blue-color);
  line-height: 1.6;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.7rem;
}

footer ul li a {
  color: var(--light-grayish-blue-color);
  display: block;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

footer .col ul li {
  color: var(--light-grayish-blue-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

footer .socials a {
  margin-right: 1rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
}

footer .socials a:hover {
  color: var(--light-grayish-blue-color);
}

footer .socials a .social-icon {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

footer .copyright {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--light-grayish-blue-color);
}

#footerSupportLinks li a {
  font-size: 0.85rem;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

/* Shared Section Styles */
.why-choose-us, 
.why-record,
.customer-reviews,
.about-us, 
.call-to-action,
#delivery-info-section {
  background: var(--background-light-color);
  padding: 2rem 2rem;
}

.why-choose-us, 
.why-record,
.customer-reviews {
  text-align: center;
}

/* Shared Section Titles */
.why-choose-us h2, 
.why-record h2,
.customer-reviews h2,
.about-us .text-col h2, 
.call-to-action .text-col h2,
.section-title {
  font-family: var(--font-playfair-display);
  font-size: 3rem;
  color: black;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#delivery-info-section .section-title,
#payment-info-section .section-title,
#warranty-info-section .section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Shared Section Descriptions */
.why-choose-us p, 
.why-record p.section-description,
.customer-reviews p {
  font-size: 1.2rem;
  color: #7D7882;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Shared Grid Layouts */
.usp-grid, 
.reasons-grid,
.customer-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.customer-reviews .reviews-grid {
  gap: 1rem;
}

/* Shared Card Styles */
.usp-card, 
.reason-card,
.review-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-card {
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
}

/* Shared Card Hover Effects */
.usp-card:hover, 
.reason-card:hover,
.review-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.review-card:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Shared Image Containers */
.usp-image-container, 
.reason-image-container {
  width: 100%;
  margin-bottom: 1rem;
}

.usp-image, 
.reason-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

/* Shared Card Headings */
.usp-card h3, 
.reason-card h3,
.review-card h3 {
  font-family: var(--font-playfair-display);
  font-size: 1.7rem;
  color: #7D7882;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Shared Card Paragraphs */
.usp-card p, 
.reason-card p,
.review-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.review-card p {
  margin-bottom: 1.5rem;
  color: #7D7882;
}

.review-card .stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-card .reviewer {
  font-weight: 600;
  color: #7D7882;
}

.customer-avatar {
  background: #fff;
  width: 280px;
  height: 280px;
  border-radius: 20%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--accent-color);
  box-shadow: var(--shadow-light);
}

/* Key Metrics Section */
.key-metrics {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--text-light-color);
  padding: 4rem 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.key-metrics .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item h3 {
  font-family: var(--font-playfair-display);
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.metric-item p {
  font-size: 1.1rem;
  color: var(--light-grayish-blue-color);
  margin-bottom: 0;
}

/* About Us & Call to Action Sections - Shared Styles */
.about-us .about-content, 
.call-to-action .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-us .image-col, 
.call-to-action .image-col {
  flex: 1;
  min-width: 300px;
}

.about-us .image-col img, 
.call-to-action .image-col img {
  width: 100%;
  max-width: 450px;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: transform 0.4s ease;
  border: 2px solid var(--light-grayish-blue-color);
  aspect-ratio: 1/1;
}

.about-us .image-col img:hover, 
.call-to-action .image-col img:hover {
  transform: scale(1.03);
}

.about-us .text-col, 
.call-to-action .text-col {
  flex: 2;
  min-width: 300px;
}

.about-us .text-col h2, 
.call-to-action .text-col h2 {
  margin-bottom: 1.5rem;
}

.about-us .text-col p, 
.call-to-action .text-col p {
  font-size: 1.1rem;
  color: #7D7882;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* ===================================
   BUTTONS
   =================================== */
.buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: buttonsSlideIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.btn, 
.btn-outline {
  padding: 1rem 2rem;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-light);
  display: inline-block;
}

.btn {
  background: var(--accent-color);
  color: var(--primary-color);
}

.btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn.video {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn.video:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Edit Buttons */
.edit-btn {
  background: #28a745;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  min-height: 36px;
  box-sizing: border-box;
}

/* Company Info Buttons */
#edit-company-info-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-color: #2563eb;
  font-weight: 600;
}

#edit-company-info-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#edit-company-info-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

#submit-company-info-btn {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border-color: #16a34a;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

#submit-company-info-btn:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  border-color: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

#submit-company-info-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

#submit-company-info-btn:disabled {
  background: #6b7280;
  border-color: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#submit-company-info-btn:disabled:hover {
  background: #6b7280;
  transform: none;
  box-shadow: none;
}

#submit-company-info-btn:disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#edit-company-info-btn::before {
  content: '';
  margin-right: 4px;
  font-size: 0.85em;
}

#submit-company-info-btn::before {
  content: '';
  margin-right: 4px;
  font-size: 0.85em;
}

#submit-company-info-btn.no-spinner::before,
#submit-company-info-btn.no-spinner::after {
  display: none !important;
  content: none !important;
}

/* Delete Button */
.delete-video-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
}

.delete-video-btn:hover {
  background: #c0392b;
}

/* Retry Button */
.retry-btn {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.retry-btn:hover {
  background: #218838;
}

.retry-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

/* Confirm Button */
.confirm-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.confirm-btn:hover {
  background: #0056b3;
}

/* Select Upgrade/Downgrade Buttons */
.select-upgrade-btn,
.select-downgrade-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 10px;
}

.select-upgrade-btn {
  background: #28a745;
  color: white;
}

.select-upgrade-btn:hover {
  background: #218838;
}

.select-downgrade-btn {
  background: #ffc107;
  color: #212529;
}

.select-downgrade-btn:hover {
  background: #e0a800;
}

/* Cancel Button States */
.cancel-btn-clicked {
  background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%) !important;
  transform: scale(0.95);
  transition: all 0.2s ease;
}

.cancel-btn-processing {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
  cursor: not-allowed;
  opacity: 0.8;
}

.cancel-btn-processing::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

#cancel-btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* ===================================
   FORMS
   =================================== */
.form-container,
.upload-form {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.upload-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-container h2,
.upload-form h2 { 
  text-align: center; 
  margin-bottom: 2rem;
}

.upload-form h2 {
  color: var(--primary-color);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group,
.upload-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label,
.upload-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark-color);
}

.form-group input,
.form-group select,
.form-group textarea,
.upload-form .form-group input,
.upload-form .form-group select,
.upload-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-inter);
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.upload-form .form-group input:focus,
.upload-form .form-group select:focus,
.upload-form .form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.character-counter {
  font-size: 0.8rem;
  color: #666;
  text-align: right;
  margin-top: 0.25rem;
}

.submit-btn,
.upload-form #submitBtn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--text-light-color);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  grid-column: 1 / -1;
  font-weight: 600;
}

.submit-btn:hover:not(:disabled),
.upload-form #submitBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
}

.submit-btn:disabled,
.upload-form #submitBtn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.security-notice {
  background: #f0f8ff;
  border: 1px solid #cce7ff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #0066cc;
}

.required::after {
  content: " *";
  color: #ff6b6b;
}

#form-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  transition: all 0.3s ease;
}

#form-status.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

#form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#form-status.loading {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  position: relative;
}

#form-status.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid #856404;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

/* Radio Groups */
.radio-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* VideoContent Textarea */
#videoContent {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#videoContent:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
}

/* Upload Progress */
.upload-progress {
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  border-left: 4px solid #007bff;
}

.upload-file-info {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.progress-bar-container {
  width: 100%;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 10px;
  transition: width 0.3s ease;
  min-width: 0;
}

.progress-text {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.upload-summary {
  border-radius: 5px;
  margin-top: 15px;
  padding: 15px;
  font-weight: bold;
}

.upload-status-container {
  max-height: 400px;
  overflow-y: auto;
}

.progress-bar.processing {
  background: linear-gradient(90deg, #28a745, #20c997, #28a745);
  background-size: 200% 200%;
  animation: progress-animation 2s ease infinite;
}

#progress-wrapper {
  display: none;
  margin-top: 1rem;
}

#progress-bar {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 15px;
  border-radius: 10px;
  overflow: hidden;
}

#progress-bar::-webkit-progress-bar {
  background-color: #eee;
}

#progress-bar::-webkit-progress-value {
  background-color: var(--accent-color);
  transition: width 0.2s ease;
}

/* Days Selection */
.days-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.day-option {
  display: flex;
  align-items: center;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.day-option:hover {
  background-color: #f5f5f5;
}

.day-option input[type="checkbox"] {
  margin-right: 8px;
}

.day-option input[type="checkbox"]:disabled {
  opacity: 0.5;
}

.selection-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

/* Honeypot field - hidden from humans but visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* ===================================
   MODALS
   =================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.modal-header h3 {
  margin: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  z-index: 10;
}

.modal-body .form-group {
  margin-bottom: 1rem;
}

.modal-body .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.modal-footer {
  text-align: right;
  margin-top: 1.5rem;
}

/* Combined Modal Textarea Styles */
.modal textarea,
textarea,
#products_services,
#target_customer,
#requirements,
#company_info_text {
  width: 100%;
  min-height: 150px;
  height: 150px;
  max-height: 400px;
  overflow-y: auto;
  resize: vertical;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.modal textarea:focus {
  min-height: 200px;
}

/* Company Info Modal Enhancements */
#company-info-modal .modal-content {
  max-width: 900px;
  width: 90%;
}

#company-info-modal textarea {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  resize: vertical;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#company-info-modal textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

#company-info-modal .modal-footer button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#company-info-modal .modal-footer button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.modal-footer button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--text-light-color);
  font-size: 1rem;
}

/* Cancel Modal Styling */
.cancel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(220, 53, 69, 0.1);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease forwards;
}

.cancel-modal .modal-content {
  border: 2px solid #dc3545;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.cancel-modal .modal-header {
  background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
  color: white;
}

.cancel-warning {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  color: #721c24;
}

.cancel-warning strong {
  color: #dc3545;
}

/* Video Modal Styles */
.video-responsive {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: black;
}

.video-responsive iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.close-button {
  color: var(--text-light-color);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
}

/* ===================================
   PORTAL & LOGIN STYLES
   =================================== */
.portal-container, 
.login-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.login-container {
  max-width: 400px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 1.5rem;
}

.login-container input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.login-container button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--text-light-color);
  font-size: 1.1rem;
  cursor: pointer;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.portal-header h2 {
  margin: 0;
}

.section {
  margin-bottom: 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.section-header h3 {
  margin: 0;
}

.section-header > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.content-type-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.content-type-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-type-body {
  padding: 1rem;
}

.video-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Personal Info Styles */
.personal-info {
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  max-width: 1000px;
}

.personal-info h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 40px;
}

.info-grid div {
  font-size: 0.95rem;
  line-height: 1.4;
}

.info-grid .full-width {
  grid-column: 1 / -1;
}

.upload-quota {
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;
}

/* Video Content Types Section Layout */
.video-content-section {
  margin-bottom: 2.5rem;
}

.video-actions-row {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* Video Priority Styles */
.priority-flag {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.priority-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.priority-group input[type="checkbox"] {
  width: auto;
}

#bulk-upload-fields, 
#single-upload-fields {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

/* Subscription Info */
.scheduled-cancellation {
  border-left: 4px solid #dc3545;
  background: linear-gradient(90deg, rgba(220, 53, 69, 0.05) 0%, transparent 100%);
  animation: pulseRed 2s infinite;
}

.pending-change-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  margin: 10px 0;
  color: #856404;
  font-style: normal;
}

.pending-change-notice strong {
  color: #d68910;
}

.pending-change-notice em {
  color: #856404;
  font-size: 0.9em;
}

/* ===================================
   TABLES
   =================================== */
.video-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  table-layout: fixed;
}

.video-list-table th,
.video-list-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.video-list-table th {
  background-color: #f7f7f7;
  font-weight: 600;
}

.video-list-table tr:hover {
  background-color: #fafafa;
}

.video-list-table td a {
  color: #0073e6;
  text-decoration: none;
  word-break: break-all;
  display: inline-block;
  max-width: 100%;
}

.video-list-table td a:hover {
  text-decoration: underline;
}

/* Column widths for 4-column layout */
.video-list-table th:nth-child(1),
.video-list-table td:nth-child(1) {
  width: 40%;
}

.video-list-table th:nth-child(2),
.video-list-table td:nth-child(2),
.video-list-table th:nth-child(3),
.video-list-table td:nth-child(3) {
  width: 20%;
}

.video-list-table th:nth-child(4),
.video-list-table td:nth-child(4) {
  width: 20%;
  text-align: center;
}

/* Table responsive wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  width: 100%;
  max-width: 100%;
}

/* ===================================
   DELIVERY INFO SECTION
   =================================== */
.delivery-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.delivery-text-content {
  flex: 2;
  min-width: 300px;
}

.delivery-image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.delivery-image-content img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.delivery-text-content, 
.delivery-text-content * {
  font-family: var(--font-inter) !important;
  color: var(--text-dark-color) !important;
  font-size: 1rem !important;
  background: none !important;
}

.delivery-text-content h3 {
  font-family: var(--font-playfair-display) !important;
  color: var(--secondary-color) !important;
  font-size: 1.8rem !important;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-grayish-blue-color);
}

.delivery-text-content h3:first-child {
  margin-top: 0;
}

.delivery-text-content ul {
  list-style-type: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.delivery-text-content ul li {
  line-height: 1.8;
  margin-bottom: 0.75rem;
  position: relative;
}

.delivery-text-content ul li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: -1.5rem;
  top: 0;
  font-family: sans-serif !important;
}

.delivery-text-content ul ul {
  margin-top: 0.75rem;
  padding-left: 2rem;
}

.delivery-text-content ul ul li::before {
  content: '◦';
  color: var(--primary-color);
}

.delivery-text-content b,
.delivery-text-content strong {
  font-weight: bold !important;
  font-family: inherit !important;
  color: inherit !important;
}

/* ===================================
   QA PAGE STYLES
   =================================== */
.qa-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.qa-container {
  max-width: 900px;
  margin: 0 auto;
}

.qa-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.qa-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #7D7882;
  margin-bottom: 3rem;
}

.faq-search {
  margin-bottom: 2.5rem;
  position: relative;
}

#faqSearchInput {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

#faqSearchInput:focus {
  outline: none;
  border-color: var(--accent-color);
}

.faq-accordion {
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--text-dark-color);
  transition: background-color 0.3s ease;
  font-family: var(--font-playfair-display);
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fafafa;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.faq-answer ul {
  padding: 0 1.5rem 1.5rem 3rem;
  margin: 0;
}

/* ===================================
   PRICING PAGE STYLES
   =================================== */
.pricing-section { 
  padding: 4rem 2rem; 
}

.pricing-intro { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.pricing-intro ul { 
  list-style-type: none; 
  padding: 0; 
  display: inline-flex; 
  gap: 1.5rem; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.pricing-intro ul li { 
  position: relative; 
  padding-left: 20px; 
}

.pricing-intro ul li::before { 
  content: '✓'; 
  color: var(--accent-color); 
  position: absolute; 
  left: 0; 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 1.5rem;
  align-items: stretch; 
}

.pricing-card { 
  background: #fff; 
  border-radius: var(--border-radius); 
  box-shadow: var(--shadow-medium); 
  padding: 1.5rem;
  display: flex; 
  flex-direction: column; 
  text-align: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.highlight { 
  border: 2px solid var(--accent-color); 
  transform: scale(1.05); 
  z-index: 10; 
}

.pricing-card.highlight:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 { 
  font-size: 1.8rem; 
  margin-bottom: 0.3rem;
  color: var(--primary-color); 
  font-family: var(--font-playfair-display);
}

.pricing-card .best-for { 
  font-style: italic; 
  color: #555; 
  margin-bottom: 1rem;
  min-height: 40px; 
  line-height: 1.4;
  font-size: 0.95rem;
}

.pricing-card .price { 
  font-size: 2.5rem; 
  font-weight: 700; 
  color: var(--text-dark-color); 
  margin-bottom: 0.3rem;
  font-family: var(--font-playfair-display);
}

.pricing-card .price-note { 
  font-size: 0.9rem; 
  color: #777; 
  margin-bottom: 1rem;
}

.pricing-card .paypal-container { 
  margin-top: auto; 
}

/* PayPal Button Spacing Optimization */
.pricing-card .paypal-container div[data-paypal-button] {
  margin-bottom: 0.5rem !important;
}

.pricing-card .paypal-container div[data-paypal-button]:last-child {
  margin-bottom: 0 !important;
}

.pricing-card .paypal-container .paypal-buttons {
  margin: 0 !important;
}

.pricing-card .paypal-container .paypal-button {
  margin-bottom: 0.5rem !important;
}

.pricing-card .paypal-container .paypal-button:last-child {
  margin-bottom: 0 !important;
}

.pricing-card .paypal-container [data-funding-source] {
  margin-bottom: 0.4rem !important;
}

.pricing-card .paypal-container [data-funding-source]:last-child {
  margin-bottom: 0 !important;
}

.paypal-loading {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */
.checkout-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.checkout-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.checkout-info,
.downgrade-summary, 
.upgrade-summary, 
.cancel-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1em;
}

.downgrade-note, 
.upgrade-note, 
.cancel-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
  color: #856404;
}

.payment-section {
  margin: 30px 0;
  text-align: center;
}

.payment-section h3 {
  margin-bottom: 20px;
  color: #333;
}

.paypal-container {
  min-height: 60px;
  margin: 20px 0;
}

.payment-success {
  text-align: center;
  padding: 30px;
  background: #d4edda;
  border-radius: 8px;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.success-icon {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 15px;
}

.payment-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 6px;
  margin: 15px 0;
  border: 1px solid #f5c6cb;
}

.processing-message {
  text-align: center;
  padding: 20px;
  background: #fff3cd;
  border-radius: 8px;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.checkout-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.back-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

.security-note {
  margin-top: 15px;
  color: #6c757d;
  font-size: 0.9em;
}

/* ===================================
   UPGRADE/DOWNGRADE OPTIONS
   =================================== */
.upgrade-options,
.downgrade-options {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.upgrade-option,
.downgrade-option {
  flex: 1;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.upgrade-option:hover {
  border-color: #28a745;
}

.downgrade-option:hover {
  border-color: #ffc107;
}

.upgrade-option h4,
.downgrade-option h4 {
  color: #333;
  margin-bottom: 15px;
}

.upgrade-option p,
.downgrade-option p {
  margin: 8px 0;
  color: #666;
}

.upgrade-option .price {
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745;
  margin: 15px 0;
}

.downgrade-option .savings {
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745;
  margin: 15px 0;
}

/* ===================================
   NOTIFICATION MESSAGES
   =================================== */
.security-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.security-warning strong {
  font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .usp-card { 
    padding: 1.5rem; 
  }
  .usp-card .icon-circle { 
    width: 60px; 
    height: 60px; 
  }
  .usp-card .icon-circle img { 
    width: 32px; 
    height: 32px; 
  }
  .key-metrics .container { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .customer-reviews .reviews-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .menu-toggle { 
    display: block; 
  }
  
  nav { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--primary-color); 
    text-align: center; 
    box-shadow: var(--shadow-light); 
  }
  
  nav.open { 
    display: block; 
  }
  
  nav ul { 
    flex-direction: column; 
    padding: 1.5rem 0; 
    gap: 1rem; 
  }
  
  nav ul li { 
    padding: 0.6rem 0; 
  }
  
  .actions { 
    display: none; 
  }
  
  .hero-content { 
    flex-direction: column-reverse; 
    text-align: center; 
  }
  
  .hero h1 { 
    font-size: 2.5rem; 
  }
  
  .hero p { 
    font-size: 1.1rem; 
  }
  
  .buttons { 
    flex-direction: column; 
    align-items: center; 
    gap: 1rem; 
  }
  
  .btn, 
  .btn-outline { 
    padding: 0.9rem 1.8rem; 
    font-size: 1rem; 
  }
  
  .hero .image img,
  .about-us .image-col img, 
  .call-to-action .image-col img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    object-fit: contain;
    aspect-ratio: 1/1;
  }

  .why-choose-us h2, 
  .why-record h2, 
  .call-to-action h2, 
  .customer-reviews h2, 
  .about-us .text-col h2 { 
    font-size: 2.2rem; 
  }
  
  .why-choose-us p, 
  .why-record p, 
  .customer-reviews p { 
    font-size: 1.1rem; 
  }
  
  .btn-outline.featured-btn { 
    padding: 0.9rem 2rem; 
    font-size: 1rem; 
  }
  
  .info-grid {
    display: block;
  }
  
  .info-grid > div {
    margin-bottom: 12px;
    padding: 2px 0;
    border-bottom: 1px solid #eee;
  }
  
  .info-grid > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .info-grid .full-width {
    width: 100%;
  }
  
  .upgrade-options,
  .downgrade-options {
    flex-direction: column;
  }
  
  .checkout-container {
    margin: 20px;
    padding: 15px;
  }
  
  .summary-row {
    flex-direction: column;
    gap: 5px;
  }
  
  .summary-row span:first-child {
    font-weight: 600;
  }
  
  .pricing-section {
    padding: 3rem 1.5rem;
  }
  
  .pricing-intro ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .pricing-card {
    padding: 1.2rem;
  }
  
  .pricing-card.highlight {
    transform: none;
  }
  
  .pricing-card.highlight:hover {
    transform: translateY(-5px);
  }
  
  .pricing-card h3 {
    font-size: 1.6rem;
  }
  
  .pricing-card .price {
    font-size: 2.2rem;
  }
  
  .pricing-card .best-for {
    margin-bottom: 0.8rem;
    min-height: 35px;
  }
  
  .pricing-card .price-note {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 2rem 1rem;
  }
  
  .pricing-card {
    padding: 1rem;
  }
  
  .pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
  
  .pricing-card .price {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }
  
  .pricing-card .best-for {
    margin-bottom: 0.6rem;
    min-height: 30px;
    font-size: 0.9rem;
  }
  
  .pricing-card .price-note {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
  }
  
  .pricing-intro ul li {
    padding-left: 15px;
    font-size: 0.9rem;
  }
  
  .pricing-grid {
    gap: 1rem;
  }
}