/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Theme Colors */
  --bg-main: #050505;
  --bg-card: rgba(20, 20, 25, 0.6);
  --bg-card-hover: rgba(25, 25, 30, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #ff7a00;
  
  /* Accent Colors */
  --accent-primary: #ff7a00; /* Vibrant Orange */
  --accent-secondary: #ff9f1a; /* Lighter Orange */
  --accent-gradient: linear-gradient(135deg, #ff7a00 0%, #ff4500 100%);
  --accent-gradient-hover: linear-gradient(135deg, #ff5100 0%, #e63900 100%);
  
  /* Text Colors */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-highlight: #ffffff;
  
  /* Status Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Shadows & Blur */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(255, 122, 0, 0.25);
  --glass-blur: blur(12px);
  
  /* Layout */
  --container-max-width: 1200px;
  --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow backgrounds */
body::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 159, 26, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-speed);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Typography Utility Classes */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-highlight);
}

p {
  color: var(--text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-highlight);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-highlight);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: var(--glass-blur);
  transition: all var(--transition-speed);
}

.header.scrolled {
  height: 70px;
  background: rgba(7, 10, 19, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 6px;
}

.logo-icon img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-highlight);
  line-height: 1;
  letter-spacing: -1.2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

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

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

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.trust-item svg {
  color: var(--color-success);
}

/* Hero Mockup Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 12px;
  width: 100%;
  aspect-ratio: 1.45/1;
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.mockup-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: -1;
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.mockup-content {
  display: grid;
  grid-template-columns: 50px 1fr;
  height: calc(100% - 30px);
  gap: 12px;
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 8px;
}

.sidebar-icon {
  width: 100%;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.sidebar-icon.active {
  background: var(--accent-gradient);
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  height: 100%;
}

.mockup-main {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0) 100%);
  border-bottom: 2px solid var(--accent-secondary);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 10px;
}

.chart-bar {
  width: 15px;
  background-color: var(--accent-primary);
  border-radius: 4px 4px 0 0;
  transition: height 1s;
}

.mockup-detail {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-line {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.detail-line.short {
  width: 60%;
}

.detail-line.accent {
  background-color: var(--accent-primary);
  width: 40%;
}

/* Comparison Calculator Section */
.calc-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: var(--glass-blur);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.slider-info {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.slider-val {
  color: var(--accent-secondary);
  font-weight: 700;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.calc-saving {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-success);
  margin-bottom: 8px;
}

.calc-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.feature-card:hover {
  background-color: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
}

/* Dynamic Feature Explorer Section */
.explorer-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-highlight);
  box-shadow: var(--shadow-glow);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.explorer-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.explorer-content p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

.explorer-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.explorer-bullets svg {
  color: var(--color-success);
}

.explorer-visual {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  aspect-ratio: 1.4/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Pricing Section */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-toggle {
  display: flex;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.pricing-toggle button {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.pricing-toggle button.active {
  background: var(--accent-primary);
  color: var(--text-highlight);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
}

.pricing-badge {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-speed);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gradient);
  color: var(--text-highlight);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-header p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.price-amount {
  margin-bottom: 30px;
}

.price-amount .currency {
  font-size: 1.8rem;
  font-weight: 700;
  vertical-align: top;
}

.price-amount .value {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-highlight);
}

.price-amount .term {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-features svg {
  color: var(--accent-secondary);
}

/* Testimonial Section */
.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: var(--glass-blur);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--color-warning);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-highlight);
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.dot-indicator.active {
  background-color: var(--accent-primary);
  width: 24px;
  border-radius: 4px;
}

/* Accordion FAQs */
.faqs-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed);
  color: var(--accent-secondary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease-out;
  border-top: 1px solid transparent;
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-header {
  background-color: rgba(255, 255, 255, 0.01);
}

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

.faq-item.active .faq-body {
  border-color: rgba(255, 255, 255, 0.05);
}

/* Contact / Modal Form */
.contact-section {
  position: relative;
}

.contact-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 30px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}

.form-control:focus {
  border-color: var(--border-focus);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--color-error);
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  animation: fadeIn 0.5s ease;
}

.form-success svg {
  color: var(--color-success);
  margin-bottom: 16px;
}

/* Footer styling */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
  background-color: rgba(7, 10, 19, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-description {
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--text-highlight);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 40px auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .calc-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tab-pane.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    transition: left 0.3s ease-in-out;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-actions {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
