
:root {
  --primary-white: #ffffff;
  --bg-light: #f4f7fe;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --accent-neon: #00e676; /* Neon Green */
  --accent-blue: #0ea5e9; /* Light Ocean Blue for gradients/accents */
  --dark-blue: #1e293b;
  --card-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-3d: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility */
.text-center { text-align: center; }
.text-accent { color: var(--accent-neon); }
.text-blue { color: var(--accent-blue); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
  letter-spacing: -0.02em;
}

p.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--primary-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0, 230, 118, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-neon), #00c853);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -5px rgba(0, 230, 118, 0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(0, 230, 118, 0.1), transparent 50%);
  background-color: var(--primary-white);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  line-height: 1.1;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p.subheading {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tag {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-blue);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  border-radius: var(--border-radius);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
}

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

/* Glass/3D Cards */
.grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card-3d {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-3d::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  border-radius: var(--border-radius);
}

.card-3d:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: var(--shadow-3d);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

.card-3d h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.card-3d p {
  color: var(--text-muted);
}

/* Content Split Section */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image-container {
  position: relative;
}

.split-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-3d);
}

.split-text-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.split-text-content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.split-text-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.split-text-content ul li i {
  color: var(--accent-neon);
  font-size: 1.25rem;
}

/* Contact/Form Section 2026 Premium Glassmorphism */
.contact-section {
  background: radial-gradient(circle at top left, #0f172a 0%, #1e293b 100%);
  color: var(--primary-white);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.contact-section h2.section-title {
  color: var(--primary-white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4rem;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.form-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.form-header h3 {
  font-size: 1.75rem;
  color: var(--accent-neon);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

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

.form-group {
  margin-bottom: 0.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--primary-white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-neon);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.form-footer {
  margin-top: 3rem;
  text-align: center;
}

.form-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-neon);
}

.btn-submit {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.form-error-msg {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

.form-image-wrapper {
  border-radius: calc(var(--border-radius) - 10px);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.form-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steps */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-neon);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
  font-family: 'Outfit';
  box-shadow: 0 10px 20px -5px rgba(0, 230, 118, 0.5);
  position: relative;
  z-index: 2;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

/* SEO Content */
.seo-content {
  columns: 2;
  column-gap: 4rem;
  text-align: justify;
}

.seo-content h3 {
  break-after: avoid;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.seo-content h3:first-child {
  margin-top: 0;
}

.seo-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content, .split-content, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-text h1 { font-size: 3rem; }
  .seo-content { columns: 1; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .timeline-step:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.5rem; }
  section { padding: 4rem 0; }
  .timeline { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-step::after { display: none; }
}

/* Header/Nav */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--dark-blue);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-neon);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem 0;
}

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

.footer-col h4 {
  color: var(--primary-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-neon);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}

/* -------------------------------------
   UX & Conversion Optimizations Phase 1/2
   ------------------------------------- */

/* Trust Statistics Bar (Redesigned Phase 2) */
.trust-stats {
    position: relative;
    max-width: 1150px;
    margin: -50px 24px 5rem 24px;
    background: var(--primary-white);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
@media (min-width: 1200px) {
    .trust-stats { margin: -50px auto 5rem auto; }
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    height: 50%;
    width: 2px;
    background: rgba(0,0,0,0.06);
}
.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 200, 83, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    transition: var(--transition);
}
.stat-item:hover .stat-icon {
    transform: translateY(-5px) scale(1.05) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-blue));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}
.stat-content { text-align: left; }
.stat-content .stat-number {
    font-size: 2.25rem;
    color: var(--dark-blue);
    margin-bottom: 0;
    font-family: 'Outfit';
    font-weight: 800;
    line-height: 1;
}
.stat-content p {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Comparison Table */
.comparison-section { padding: 5rem 0; background: var(--bg-light); }
.comp-table-container { max-width: 900px; margin: 0 auto; background: var(--card-bg); border-radius: calc(var(--border-radius) * 1.5); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 1.5rem; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.comp-table th { background: var(--dark-blue); color: white; font-family: 'Outfit'; font-size: 1.25rem; }
.comp-table th:first-child { background: #0f172a; text-align: left; padding-left: 2rem; }
.comp-table td { font-weight: 500; font-size: 1.1rem; }
.comp-table td:first-child { text-align: left; font-weight: 600; color: var(--dark-blue); padding-left: 2rem; }
.comp-pro { color: var(--accent-neon); font-size: 1.75rem; }
.comp-con { color: #ef4444; font-size: 1.75rem; }

/* FAQ Accordion */
.faq-section { background: var(--primary-white); padding: 6rem 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-light); border-radius: 16px; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); border: 1px solid var(--glass-border); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: rgba(0, 230, 118, 0.4); background: var(--primary-white); }
.faq-question { padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--dark-blue); font-size: 1.25rem; }
.faq-icon { transition: transform 0.3s ease; color: var(--accent-neon); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 2rem 1.75rem 2rem; color: var(--text-muted); font-size: 1.05rem; }

/* E-E-A-T Profile */
.eeat-section { background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(0, 230, 118, 0.05)); padding: 5rem 0; position: relative; }
.eeat-card { display: flex; align-items: center; gap: 3rem; background: var(--primary-white); padding: 3rem; border-radius: calc(var(--border-radius) * 1.5); box-shadow: var(--shadow-md); max-width: 900px; margin: 0 auto; border: 1px solid var(--glass-border); position: relative; z-index: 2; }
.eeat-img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-neon); box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2); }
.eeat-content h3 { font-size: 1.75rem; color: var(--dark-blue); margin-bottom: 0.25rem; }
.eeat-content .expert-title { color: var(--accent-blue); font-weight: 600; margin-bottom: 1.25rem; display: inline-block; font-size: 1.1rem; }
.eeat-trust-badges { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.eeat-badge { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-light); padding: 10px 18px; border-radius: 30px; font-size: 0.875rem; font-weight: 600; color: var(--dark-blue); border: 1px solid rgba(0,0,0,0.05); }
.eeat-badge i { color: var(--accent-neon); font-size: 1.25rem; }

/* Sticky Mobile CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1rem; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); z-index: 1000; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); border-top: 1px solid var(--glass-border); }
.mobile-sticky-inner { display: flex; gap: 1rem; justify-content: space-between; max-width: 600px; margin: 0 auto; }
.mobile-btn { flex: 1; padding: 14px 0; text-align: center; border-radius: 50px; font-weight: 700; font-family: 'Outfit'; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; transition: var(--transition); }
.mobile-btn-call { background: var(--dark-blue); color: white; border: 2px solid var(--dark-blue); }
.mobile-btn-offer { background: linear-gradient(135deg, var(--accent-neon), #00c853); color: white; border: none; box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3); }

/* Updated Timeline Glass styling for Warum Wir */
.timeline-step { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: 2.5rem 1.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); z-index: 2; transition: var(--transition); }
.timeline-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0, 230, 118, 0.3); }
.timeline-step::after { display: none !important; }

@media (max-width: 1024px) {
  .trust-stats { flex-wrap: wrap; padding: 2.5rem; gap: 2rem; justify-content: center; margin-top: -30px; }
  .stat-item { flex: 1 1 40%; justify-content: flex-start; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
}

@media (max-width: 768px) {
  body { padding-bottom: 80px; /* Space for sticky bar */ }
  .mobile-sticky-cta { display: block; }
  .eeat-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem; }
  .eeat-trust-badges { justify-content: center; }
  .comp-table th, .comp-table td { padding: 1rem 0.5rem; font-size: 0.95rem; }
  .comp-table th:first-child, .comp-table td:first-child { padding-left: 0.5rem; }
  
  .trust-stats { margin-top: -20px; padding: 2rem 1.5rem; flex-direction: column; gap: 1.5rem; }
  .stat-item { flex: 1 1 100%; width: 100%; padding-left: 10%; }
  .stat-item::after { display: none !important; }
}


/* --- SCROLL ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 5.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* --- POST ACTION SUCCESS UI --- */
.form-success-ui {
    display: none;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--border-radius);
    animation: fadeInUI 0.6s ease-out forwards;
}
.form-success-ui i {
    font-size: 4rem;
    color: var(--accent-neon);
    margin-bottom: 1rem;
    display: inline-block;
    animation: scaleCheck 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
    transform: scale(0);
}
.form-success-ui h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.form-success-ui p {
    color: var(--text-muted);
}
@keyframes fadeInUI {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleCheck {
    from { transform: scale(0) rotate(-45deg); }
    70% { transform: scale(1.2) rotate(10deg); }
    to { transform: scale(1) rotate(0deg); }
}

/* --- INFINITE AUTO BRAND SLIDER --- */
.brand-slider {
    background: #f8fafc;
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.brand-slider::before, .brand-slider::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 2;
}
.brand-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}
.brand-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}
.brand-track {
    display: flex;
    width: calc(200px * 14);
    animation: scrollBrands 30s linear infinite;
}
.brand-track:hover {
    animation-play-state: paused;
}
.brand-item {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.brand-item:hover {
    opacity: 1;
    color: var(--dark-blue);
}
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); }
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--dark-blue);
    color: var(--primary-white);
    padding: 5rem 0;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.4);
}
.testi-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testi-text {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testi-author {
    font-weight: 600;
    color: var(--accent-neon);
}
.testi-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-neon);
    color: var(--dark-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.3);
}

/* Form Success & Interaction UI 2026 */
.form-success-ui {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUI 0.6s ease-out;
}

.form-success-ui i {
    font-size: 5rem;
    color: var(--accent-neon);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.5));
}

.form-success-ui h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-success-ui p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.ph-spin {
    animation: ph-spin 1.5s linear infinite;
}

@keyframes ph-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
