:root {
  --bg: #ffffff;
  --text: #111111;
  --primary: #ff3b00;
  --primary-hover: #e53200;
  --gray-light: #f5f5f5;
  --gray-text: #555555;
  --border: #eeeeee;
  
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --container-max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(255, 59, 0, 0.15);
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
  color: var(--gray-text);
  font-size: 1.1rem;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

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

.logo-group {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  display: block;
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav a {
  font-weight: 600;
  font-size: 1rem;
}

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

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 0, 0.2);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Sections */
section {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--gray-light);
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 0;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-image-container {
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-img {
  width: 100%;
  height: auto;
  /* Borders and shadows removed to blend seamlessly with the page background */
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.category-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

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

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

/* Content Section Elements */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 59, 0, 0.3);
  text-underline-offset: 4px;
}

.content-section a:hover {
  text-decoration-color: var(--primary);
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 24px;
}

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

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

.footer-col a {
  color: #aaa;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none; /* In a real app we'd add a hamburger menu */
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 80px 0;
  }
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #555;
}

.faq-item:hover .faq-answer, .faq-item:focus-within .faq-answer {
  max-height: 300px;
  padding-top: 15px;
}

/* Premium Stats Bar */
.stats-bar {
  background: var(--text);
  color: white;
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  color: #ccc;
  font-weight: 600;
  margin-bottom: 0;
}

/* Comparison Table */
.comparison-section {
  padding: 100px 0;
}

.comparison-wrapper {
  overflow-x: auto;
  margin-top: 50px;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-size: 1.2rem;
}

.comparison-table td {
  background: var(--bg);
  padding: 25px 20px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.comparison-table td:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text);
}

.comparison-table td:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 59, 0, 0.03);
  border-color: rgba(255, 59, 0, 0.1);
  color: var(--primary);
}

.check-icon { color: #2ecc71; font-weight: bold; margin-right: 10px; }
.cross-icon { color: #e74c3c; font-weight: bold; margin-right: 10px; }

/* Why Us Hex Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

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

/* Glass FAQ Upgrade */
.faq-item-glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  padding: 5px 20px;
  transition: all 0.3s ease;
}

.faq-item-glass:hover {
  border-color: var(--primary);
  background: #fff;
}

/* Dual Mobile CTA */
.dual-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  z-index: 2000;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

.dual-cta-btn {
  padding: 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dual-cta-btn .btn-icon {
  width: 20px;
  height: 20px;
}

.cta-phone { background: var(--text); }
.cta-whatsapp { background: var(--primary); }

@media (max-width: 768px) {
  .dual-cta { display: grid; }
  .sticky-cta { display: none; } /* Hide old one */
}

/* Premium Contact Form 2026 */
.premium-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.premium-form-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 59, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.glass-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

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

.form-header h2 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.form-header p {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.premium-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.form-group input, 
.form-group textarea {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 59, 0, 0.1);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.form-footer {
  margin-top: 40px;
  text-align: center;
}

.btn-premium {
  width: 100%;
  max-width: 450px;
  background: var(--primary);
  color: white;
  padding: 24px 48px;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 59, 0, 0.1);
}

.btn-premium:hover {
  background: var(--primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  .premium-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .glass-form-card {
    padding: 30px 20px;
  }
}

/* Premium 3D Glass Buttons */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
}

.btn-3d-glass {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  padding: 12px 40px 12px 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.btn-3d-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-3d-glass:hover::before {
  left: 100%;
}

.btn-3d-glass .icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 15px;
  box-shadow: 4px 0 10px rgba(255, 59, 0, 0.3);
  overflow: hidden;
}

.icon-circle .btn-icon {
  width: 28px;
  height: 28px;
}

.btn-3d-glass .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-3d-glass .btn-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 2px;
}

.btn-3d-glass .btn-text {
  font-size: 1.3rem;
}

.btn-3d-glass:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(255, 59, 0, 0.15);
  border-color: var(--primary-hover);
}

.btn-3d-glass:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-3d-glass {
    width: 100%;
    max-width: 320px;
    padding: 10px 30px 10px 10px;
  }
  .btn-3d-glass .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  .btn-3d-glass .btn-text {
    font-size: 1.1rem;
  }
}

/* Trust Section Modern 2026 */
.trust-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.trust-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.trust-section p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.trust-badge-modern {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 16px 32px 16px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.trust-icon-modern {
  font-size: 36px;
  margin-right: 25px;
  position: relative;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 4px 6px rgba(241, 196, 15, 0.3));
}

.trust-icon-modern::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e2e8f0;
}

.trust-content-modern {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-title-modern {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1a202c;
  margin-bottom: 4px;
}

.trust-subtitle-modern {
  display: flex;
  align-items: center;
  color: #10b981;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-subtitle-modern svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
/* Live Status Indicator */
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(46, 204, 113, 0.2);
  margin-bottom: 20px;
  animation: fade-in 1s ease-out;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  position: relative;
}

.status-dot::after,
.status-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2ecc71;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.status-dot::before {
  animation-delay: 1s;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

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

.live-status-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2ecc71;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}

.live-status-header .status-dot {
  width: 8px;
  height: 8px;
}

/* WhatsApp Round Button Above Form */
.whatsapp-form-btn-wrap {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.whatsapp-round-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: white;
  padding: 14px 28px 14px 14px;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-round-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.wa-icon-wrap {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.wa-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #25d366;
}

/* Pulsing green network rings */
.wa-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #25d366;
  opacity: 0;
  animation: wa-ring-pulse 2.5s ease-out infinite;
}

.wa-pulse-ring:nth-child(2) { animation-delay: 0.8s; }
.wa-pulse-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes wa-ring-pulse {
  0%   { width: 48px; height: 48px; opacity: 0.8; }
  100% { width: 100px; height: 100px; opacity: 0; }
}

.wa-btn-text { line-height: 1.2; }
.wa-btn-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.wa-btn-main  { display: block; font-size: 1.25rem; }


.btn-whatsapp-form {
  background: var(--primary);
  color: #fff;
  padding: 24px 48px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 20px rgba(255, 59, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp-form:hover {
  background: var(--primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 59, 0, 0.4);
  color: #fff;
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.btn-icon-circle .btn-icon {
  width: 24px;
  height: 24px;
}

/* Fixed Floating WhatsApp Button – Bottom Right */
.wa-float-btn {
  position: fixed;
  bottom: 80px; /* above mobile dual-cta */
  right: 20px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.wa-float-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}

/* Pulse rings around floating button */
.wa-float-btn .wa-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-color: #25d366;
}

@media (min-width: 769px) {
  .wa-float-btn {
    bottom: 30px;
  }
}

/* SEO Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.comparison-wrapper {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comp-table th {
    padding: 25px;
    text-align: left;
    font-size: 1.3rem;
    color: var(--midnight);
    border-bottom: 3px solid #f0f0f0;
}

.comp-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f8f8f8;
    font-size: 1.05rem;
}

.comp-table tr:last-child td { border-bottom: none; }

.trust-check { color: #2ecc71; font-weight: bold; margin-right: 8px; }
.trust-cross { color: #e74c3c; font-weight: bold; margin-right: 8px; }

/* Process Section */
.process-section {
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(255, 59, 0, 0.25);
    position: relative;
    z-index: 2;
}

.process-step h3 { margin-bottom: 15px; color: var(--midnight); }
.process-step p { color: #666; line-height: 1.6; }

@media (max-width: 768px) {
    .comparison-wrapper { padding: 20px; }
    .comp-table th, .comp-table td { padding: 15px; }
}

/* Trust Badge Floating (Left) */
.trust-badge-float {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9998;
    background: white;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid #efefef;
    text-decoration: none;
    color: var(--midnight);
}

.trust-badge-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.18);
}

.trust-badge-float .google-logo { width: 24px; height: 24px; }
.trust-stars { color: #ffb400; font-size: 1.1rem; }

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid #f5f5f5;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-info h4 { margin: 0; font-size: 1.1rem; color: var(--midnight); }
.testi-info span { font-size: 0.85rem; color: #999; }

.testi-text {
    line-height: 1.7;
    color: #555;
    font-style: italic;
    position: relative;
}

.testi-stars {
    color: #ffb400;
    margin-top: 15px;
    display: block;
}

@media (max-width: 1100px) {
    .trust-badge-float { bottom: 85px; left: 15px; padding: 10px 14px; }
    .trust-badge-float span { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .trust-badge-float { display: none; }
}

/* Brand Wall - Infinite Scroll Version */
.brand-wall {
    padding: 50px 0;
    background: #fff; /* Wieder Hell */
    border-top: 1px solid #eee;
    overflow: hidden;
    position: relative;
}

.brand-scroll-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.brand-scroll {
    display: flex;
    white-space: nowrap;
    animation: scrollBrands 40s linear infinite;
    gap: 80px;
    padding: 15px 0;
}

@keyframes scrollBrands {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brand-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #222; /* Dunkle Schrift */
    text-transform: uppercase;
    letter-spacing: 5px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    opacity: 0.2; /* Dezent im Hintergrund */
}

.brand-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

/* Local SEO Districts */
.districts-section {
    padding: 60px 0;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.district-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 35px;
}

.district-item {
    background: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 1rem;
    color: #666;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: default;
}

.district-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Pre-Footer CTA */
.pre-footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta h2 { font-size: 2.8rem; margin-bottom: 25px; font-weight: 900; }
.pre-footer-cta p { font-size: 1.3rem; opacity: 0.8; margin-bottom: 45px; max-width: 700px; margin-left: auto; margin-right: auto; }

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .pre-footer-cta h2 { font-size: 2rem; padding: 0 15px; }
    .brand-grid { gap: 20px 40px; }
    .brand-item { font-size: 1.1rem; }
    .cta-btn-wrapper { flex-direction: column; align-items: center; }
}

/* New Floating CTA Bar 2026 */
.floating-cta-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: auto;
  min-width: 280px;
  background: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  visibility: hidden;
}

.floating-cta-bar.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cta-icon-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-icon-btn:hover {
  transform: scale(1.15) translateY(-5px);
}

.cta-icon-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.cta-icon-btn.phone { background: #333; }
.cta-icon-btn.mail { background: var(--primary); }
.cta-icon-btn.whatsapp { background: #25D366; }

.cta-icon-btn::after {
  content: attr(data-label);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #111;
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-icon-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .floating-cta-bar {
    width: 90%;
    bottom: 15px;
  }
}
