.elementor-25 .elementor-element.elementor-element-8b858f5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-25 .elementor-element.elementor-element-8b858f5{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-57dd420 *//* Variant 3: Lead-Gen Fokus */

/* Variables */
:root {
  --v3-primary: #0E5DA8;
  --v3-primary-dark: #0A3E6E;
  --v3-accent: #19B7C9;
  --v3-cta: #FFB547; /* Orange for conversion */
  --v3-cta-hover: #e09b33;
  --v3-text: #1B2430;
  --v3-text-light: #5B6777;
  --v3-white: #FFFFFF;
  --v3-bg-light: #F6FAFD;
  --v3-bg-dark: #1B2430;
  --v3-border: #DCE6EF;
  --v3-success: #2BB673;
  
  --v3-shadow: 0 4px 12px rgba(0,0,0,0.1);
  --v3-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --v3-radius: 6px;
  
  --v3-font-heading: 'Poppins', sans-serif;
  --v3-font-body: 'Inter', sans-serif;
}

#tonk-home-v3 {
  font-family: var(--v3-font-body) !important;
  color: var(--v3-text) !important;
  line-height: 1.5;
  background-color: var(--v3-white) !important;
  padding-bottom: 60px; /* Space for sticky CTA */
}

/* Reset */
#tonk-home-v3 * {
  box-sizing: border-box;
}

#tonk-home-v3 h1, #tonk-home-v3 h2, #tonk-home-v3 h3, #tonk-home-v3 h4 {
  font-family: var(--v3-font-heading) !important;
  font-weight: 700;
  color: var(--v3-primary-dark) !important;
  margin-top: 0;
}

#tonk-home-v3 a {
  text-decoration: none;
  transition: all 0.2s ease;
}

#tonk-home-v3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.v3-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.v3-section {
  padding: 50px 0;
}

.v3-bg-light {
  background-color: var(--v3-bg-light) !important;
}

.v3-bg-dark {
  background-color: var(--v3-bg-dark) !important;
  color: var(--v3-white) !important;
}

.v3-text-white {
  color: var(--v3-white) !important;
}

.center {
  text-align: center;
}

.v3-highlight {
  color: var(--v3-primary) !important;
  background: rgba(14, 93, 168, 0.1);
  padding: 0 5px;
}

/* Sticky Mobile CTA */
.v3-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--v3-white);
  padding: 10px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  display: flex; /* Flex by default on mobile */
  justify-content: space-between;
  gap: 10px;
  z-index: 999;
  transition: transform 0.3s ease;
  transform: translateY(100%); /* Start hidden */
}

.v3-sticky-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--v3-radius);
  font-weight: 700;
  font-size: 0.9rem;
}

.v3-sticky-call {
  background: var(--v3-white) !important;
  color: var(--v3-primary) !important;
  border: 2px solid var(--v3-primary) !important;
}

.v3-sticky-offer {
  background: var(--v3-cta) !important;
  color: var(--v3-text) !important;
  border: 2px solid var(--v3-cta) !important;
}

/* Hero Section */
.v3-hero {
  padding: 40px 0;
  background-color: var(--v3-bg-light) !important;
}

.v3-hero-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.v3-trust-badge-top {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--v3-cta-hover) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.v3-headline {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.v3-hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.v3-hero-bullets li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v3-hero-bullets li strong {
  color: var(--v3-primary) !important;
}

/* Partner Slider (Lead Gen) */
.v3-partner-slider {
  margin-top: 20px;
  overflow: hidden;
}

.v3-slide-track {
  display: flex;
  width: calc(150px * 10);
  animation: v3-scroll 20s linear infinite;
}

.v3-slide {
  width: 150px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-slide img {
  max-width: 100%;
  height: auto;
  opacity: 0.6;
  filter: grayscale(100%);
}

@keyframes v3-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-150px * 5)); }
}

/* Hero Form */
.v3-hero-form-wrapper {
  background: var(--v3-white);
  padding: 25px;
  border-radius: var(--v3-radius);
  box-shadow: var(--v3-shadow-lg);
  border-top: 5px solid var(--v3-cta);
}

.v3-hero-form-header {
  text-align: center;
  margin-bottom: 20px;
}

.v3-hero-form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.v3-hero-form-header p {
  font-size: 0.9rem;
  color: var(--v3-success) !important;
  font-weight: 600;
}

.v3-form-group {
  margin-bottom: 15px;
}

.v3-form-group input,
.v3-form-group select,
.v3-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-radius);
  font-size: 1rem;
  background: #f9f9f9;
}

.v3-form-group input:focus,
.v3-form-group select:focus,
.v3-form-group textarea:focus {
  outline: none;
  border-color: var(--v3-primary);
  background: #fff;
}

.v3-form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.v3-btn-submit {
  width: 100%;
  background: var(--v3-cta) !important;
  color: var(--v3-text) !important;
  font-weight: 700;
  border: none;
  padding: 15px;
  border-radius: var(--v3-radius);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.v3-btn-submit:hover {
  background: var(--v3-cta-hover) !important;
}

.v3-form-footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--v3-text-light) !important;
  margin-top: 15px;
}

/* Trust Bar */
.v3-trust-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--v3-border);
}

.v3-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: center;
}

.v3-trust-item {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.v3-icon-check {
  color: var(--v3-success) !important;
  font-weight: bold;
}

/* Services Compact */
.v3-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.v3-service-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--v3-white);
  padding: 20px;
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-radius);
}

.v3-img-placeholder {
  font-size: 2rem;
  background: var(--v3-bg-light) !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--v3-radius);
}

.v3-service-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.v3-service-content p {
  font-size: 0.9rem;
  color: var(--v3-text-light) !important;
  margin-bottom: 10px;
}

.v3-link {
  font-weight: 600;
  color: var(--v3-primary) !important;
  font-size: 0.9rem;
}

.v3-center-btn {
  text-align: center;
  margin-top: 30px;
}

.v3-btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--v3-primary-dark) !important;
  color: var(--v3-white) !important;
  border-radius: var(--v3-radius);
  font-weight: 600;
}

/* USPs */
.v3-usps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.v3-usp-image {
  position: relative;
}

.v3-usp-image img {
  border-radius: var(--v3-radius);
}

.v3-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--v3-cta) !important;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: var(--v3-radius);
  box-shadow: var(--v3-shadow);
}

.v3-usp-bullets-large {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.v3-usp-bullets-large li {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--v3-success);
}

.v3-usp-bullets-large strong {
  display: block;
  font-size: 1.1rem;
  color: var(--v3-primary-dark) !important;
  margin-bottom: 5px;
}

/* Reviews */
.v3-review-summary {
  text-align: center;
  margin-bottom: 30px;
}

.v3-stars-large {
  color: var(--v3-cta) !important;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.v3-reviews-grid {
  display: grid;
  gap: 20px;
}

.v3-review-card {
  background: var(--v3-bg-light) !important;
  padding: 20px;
  border-radius: var(--v3-radius);
}

.v3-stars {
  color: var(--v3-cta) !important;
  margin-bottom: 10px;
}

.v3-reviewer {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--v3-text-light) !important;
  margin-top: 10px;
  text-align: right;
}

/* Steps */
.v3-steps-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.v3-step-box {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: var(--v3-radius);
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.v3-step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v3-cta) !important;
  margin-bottom: 10px;
}

.v3-step-arrow {
  color: var(--v3-cta) !important;
  font-size: 1.5rem;
  transform: rotate(90deg);
}

.v3-btn-accent {
  display: inline-block;
  background: var(--v3-cta) !important;
  color: var(--v3-text) !important;
  padding: 12px 30px;
  border-radius: var(--v3-radius);
  font-weight: 700;
}

/* Area */
.v3-h3-center {
  text-align: center;
  margin-bottom: 20px;
}

.v3-area-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.v3-area-links span {
  background: var(--v3-bg-light) !important;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* FAQ Simple */
.v3-accordion-simple {
  max-width: 800px;
  margin: 0 auto;
}

.v3-acc-btn {
  background: var(--v3-white) !important;
  border: 1px solid var(--v3-border) !important;
  width: 100%;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: var(--v3-radius);
  position: relative;
}

.v3-acc-btn::after {
  content: '+';
  position: absolute;
  right: 15px;
  font-size: 1.2rem;
  color: var(--v3-primary) !important;
}

.v3-acc-btn.active::after {
  content: '-';
}

.v3-acc-panel {
  padding: 0 15px 15px;
  display: none;
  color: var(--v3-text-light) !important;
}

/* Final CTA */
.v3-headline-final {
  margin-bottom: 10px;
}

.v3-final-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.v3-btn-large-primary {
  background: var(--v3-cta) !important;
  color: var(--v3-text) !important;
  padding: 15px 30px;
  border-radius: var(--v3-radius);
  font-weight: 700;
  display: block;
  text-align: center;
}

.v3-btn-large-outline {
  border: 2px solid var(--v3-primary) !important;
  color: var(--v3-primary) !important;
  padding: 15px 30px;
  border-radius: var(--v3-radius);
  font-weight: 700;
  display: block;
  text-align: center;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .v3-sticky-cta {
    display: none;
  }

  #tonk-home-v3 {
    padding-bottom: 0;
  }
  
  .v3-hero-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .v3-hero-text {
    flex: 1;
    padding-top: 40px;
  }
  
  .v3-hero-form-wrapper {
    flex: 0 0 400px;
  }
  
  .v3-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .v3-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .v3-usps-wrapper {
    flex-direction: row;
    align-items: center;
  }
  
  .v3-usps-wrapper > * {
    flex: 1;
  }
  
  .v3-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .v3-steps-row {
    flex-direction: row;
    justify-content: center;
  }
  
  .v3-step-arrow {
    transform: rotate(0deg);
  }
  
  .v3-final-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .v3-btn-large-primary, .v3-btn-large-outline {
    display: inline-block;
  }
}/* End custom CSS */