:root {
  --primary-color: #854fff;
  /* Modern Indigo */
  --primary-hover: #8170F0;
  --accent-color: #10b981;
  /* Success Green */

  /* Light Theme Defaults */
  --bg-body: #ffffff;
  --bg-body-rgb: 255, 255, 255;
  /* For translucent header */
  --bg-surface: #f9fafb;
  --bg-card: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] {
  /* Dark Theme Overrides */
  --bg-body: #0f172a;
  --bg-body-rgb: 15, 23, 42;
  --bg-surface: #1e293b;
  --bg-card: #1e293b;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border-color: #334155;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section-padding {
  padding: 100px 0;
}

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

/* --- ANIMATIONS --- */
/* Base class for elements to animate */
.animate-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Class added by JS when element enters viewport */
.animate-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(79, 70, 229, 0.3);
}

.btn-outline {
  border-color: var(--border-color);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  background: rgba(79, 70, 229, 0.05);
}

/* --- DYNAMIC HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 25px 0;
  transition: all 0.4s ease;
}

/* State when scrolled down */
header.scrolled {
  background-color: rgba(var(--bg-body-rgb), 0.95);
  /* Translucent background */
  backdrop-filter: blur(12px);
  /* Blur effect behind header */
  padding: 15px 0;
  /* Shrink padding */
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Link hover underline effect */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.theme-toggle {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.theme-toggle:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: rotate(15deg);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 5px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-body);
  z-index: 9999;
  padding: 80px 25px 25px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.mobile-menu-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-actions .btn {
  width: 100%;
  text-align: center;
}

/* --- HERO SECTION --- */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-main);
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 50px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badges i {
  color: var(--accent-color);
}

/* --- SHARED COMPONENTS --- */
.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* --- FEATURES GRID --- */
.features {
  background-color: var(--bg-surface);
  position: relative;
}

/* Decorative background element */
.features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--bg-surface);
  transform: skewY(-3deg);
  z-index: -1;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.2));
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- SOLUTIONS --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.solution-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s;
}

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

.solution-icon-wrapper {
  margin-bottom: 30px;
  display: inline-block;
  padding: 20px;
  background: var(--bg-surface);
  border-radius: 50%;
}

.solution-card h3 {
  margin: 0 0 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- PRICING --- */
#pricing .container {
  max-width: 1400px;
}

.pricing-grid {
  display: grid;
  /* Default: 3 columns x 2 rows for medium-large screens */
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}


.price-card h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1;
}

.price span {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-details {
  margin: 30px 0;
  padding: 0;
  flex-grow: 1;
}

.price-details li {
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-details li small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-details li i {
  color: var(--accent-color);
  margin-bottom: 5px;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background-color: var(--bg-surface);
}

.testimonial-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.stars {
  color: #fbbf24;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 25px;
  display: block;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary-color);
}

/* --- FAQ --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.3s;
}

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

.faq-question {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-muted);
  display: none;
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  display: block;
  border-top-color: var(--border-color);
  padding-top: 20px;
}

/* --- CONTACT --- */
.contact-section {
  background-color: var(--bg-surface);
  position: relative;
  z-index: 1;
}

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

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.contact-form-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-card);
}

/* --- COUNTDOWN BANNER --- */
.countdown-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #818cf8 100%);
  color: white;
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.countdown-banner .container {
  max-width: 1200px;
}

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

.countdown-banner .countdown-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-banner strong {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.countdown-banner .countdown-code {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.countdown-banner .countdown-timer {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-banner .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-banner .countdown-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  min-width: 50px;
}

.countdown-banner .countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.countdown-banner .countdown-separator {
  font-size: 1.2rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .countdown-banner {
    padding: 12px 0;
  }

  .countdown-banner .countdown-content {
    flex-direction: column;
    gap: 15px;
  }

  .countdown-banner .countdown-text {
    flex-direction: column;
    gap: 10px;
  }

  .countdown-banner strong {
    font-size: 0.95rem;
  }

  .countdown-banner .countdown-code {
    font-size: 0.85rem;
    padding: 5px 12px;
  }

  .countdown-banner .countdown-number {
    font-size: 1.2rem;
    padding: 5px 10px;
    min-width: 45px;
  }

  .countdown-banner .countdown-timer {
    gap: 10px;
  }

  .countdown-banner .countdown-separator {
    font-size: 1rem;
  }
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-body);
  padding: 80px 0 30px;
  position: relative;
}

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

.footer-about p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  margin-bottom: 25px;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li a {
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links a {
  margin-left: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Large screens: 1200px to 1399px - 3x2 grid */
@media (min-width: 1200px) and (max-width: 1399px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium-large screens: 985px to 1400px - 2x3 grid */
@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra large screens: >= 1400px - 6x1 grid */
@media (min-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Tablet view: 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Solutions section: full width cards, one per row */
  #solutions .grid-3 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Pricing section: 3 columns x 2 rows for wider tablets */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Narrower tablets: 769px to 850px */
@media (min-width: 769px) and (max-width: 850px) {

  /* Pricing section: 2 columns x 3 rows */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  header {
    padding: 15px 0;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .nav-actions {
    gap: 10px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    height: 30px;
  }

  #pricing .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .price-card {
    padding: 30px 20px;
  }

  .price {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    height: 30px;
  }

  .container {
    padding: 0 20px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .hero-badges {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .section-title p {
    font-size: 1rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .solution-card {
    padding: 40px 20px;
  }

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

  .contact-form-box {
    padding: 30px 20px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    padding: 25px 20px;
  }

  .price {
    font-size: 2.5rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-box {
    width: 28px;
    height: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin: 0;
  }

  .price {
    font-size: 2rem;
  }

  .price-card h3 {
    font-size: 1rem;
  }

  .price-details li {
    font-size: 1rem;
  }
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0.9;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--primary-color);
}