/* ==========================================================================
   RANG1.DE CUSTOM THEME STYLESHEET
   1:1 Pixel-Perfect Match for Desktop, Tablet, and Mobile Designs
   ========================================================================== */

/* --- CSS Reset & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-heading: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --color-green-main: #14A846;
  --color-green-dark: #1C2B27;
  --color-green-grad: linear-gradient(90deg, #0B7E37 0%, #148657 50%, #15856C 100%);
  
  --color-gold-main: #EEB525;
  --color-gold-alt: #F1C40F;
  --color-gold-grad: linear-gradient(to right, #F1C40F, #EEB525, #EEB525, #F1C40F);
  
  --color-text-dark: #1C2B27;
  --color-text-muted: #616161;
  --color-bg-light: #F8FAF8;
  --color-bg-white: #FFFFFF;
  
  --border-subtle: 1px solid rgba(28, 43, 39, 0.12);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-floating: 0 15px 40px rgba(0, 0, 0, 0.12);
  
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 9999px;
  
  --max-w-content: 1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Layout Containers --- */
.section_container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.section_padded {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.white_bg { background-color: var(--color-bg-white); }
.light_bg { background-color: var(--color-bg-light); }

.green_bg,
.green_bg_gradient,
.bg_nose {
  position: relative;
  background: linear-gradient(105deg, #0D8432 0%, #107A70 100%) !important;
  color: #FFFFFF;
}

.green_bg::before,
.green_bg_gradient::before,
.bg_nose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../../uploads/rang1_assets/noise_bg_texture_small.webp");
  background-repeat: repeat;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.green_bg > *,
.green_bg_gradient > *,
.bg_nose > * {
  position: relative;
  z-index: 1;
}

.align_center { align-items: center; }
.text_center { text-align: center; }
.text_white { color: #FFFFFF !important; }
.mt_12 { margin-top: 12px; }
.mt_16 { margin-top: 16px; }
.mt_24 { margin-top: 24px; }
.mt_32 { margin-top: 32px; }
.mt_40 { margin-top: 40px; }
.mt_48 { margin-top: 48px; }
.max_w_700 { max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
}

.section_heading_h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.92px;
  line-height: 1.24;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.section_heading_h2.text_white {
  color: #FFFFFF !important;
}

.section_heading_h2 em,
.section_heading_h2 span.italic {
  font-style: italic;
  font-weight: 400;
}

.section_header_center {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.subheading_h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.body_text {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.65;
}
  color: var(--color-text-muted);
  line-height: 1.6;
}

.body_text strong,
.body_text.bold_highlight {
  color: var(--color-text-dark);
  font-weight: 700;
}

.text_white {
  color: #FFFFFF !important;
}

.highlight_gold {
  color: var(--color-gold-main);
}

.highlight_green {
  color: var(--color-green-main);
}

.text_center { text-align: center; }
.text_left { text-align: left; }
.text_right { text-align: right; }

.mt_8 { margin-top: 8px; }
.mt_12 { margin-top: 12px; }
.mt_16 { margin-top: 16px; }
.mt_20 { margin-top: 20px; }
.mt_24 { margin-top: 24px; }
.mt_32 { margin-top: 32px; }
.mt_40 { margin-top: 40px; }
.mt_48 { margin-top: 48px; }
.mt_64 { margin-top: 64px; }
.mt_80 { margin-top: 80px; }

.mb_8 { margin-bottom: 8px; }
.mb_16 { margin-bottom: 16px; }
.mb_24 { margin-bottom: 24px; }
.mb_32 { margin-bottom: 32px; }

/* --- Buttons --- */
.main_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #F9D038 0%, #E8B923 100%) !important;
  color: #1C2B27 !important;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 185, 35, 0.4);
  transition: all 0.3s ease-in-out;
}

.main_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 185, 35, 0.55);
}

.outline_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid #D1D5DB;
  background-color: #FFFFFF;
  color: #1C2B27;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.outline_btn:hover {
  background-color: #F9FAFB;
  border-color: #9CA3AF;
  color: #1C2B27;
  transform: translateY(-1px);
}

/* --- Grids --- */
.two_col_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.three_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.two_cards_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.rounded_shadow_img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 24px;
  padding-bottom: 24px;
}

.header_container {
  max-width: var(--max-w-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand_logo img {
  height: 56px;
  width: auto;
}

.desktop_nav .nav_list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop_nav .nav_list a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.desktop_nav .nav_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold-main);
  transition: width 0.3s ease;
}

.desktop_nav .nav_list a:hover::after {
  width: 100%;
}

.mobile_toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
  z-index: 101;
}

.mobile_toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile_drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(28, 43, 39, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 100px 32px 40px;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile_drawer.active {
  transform: translateY(0);
}

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

.mobile_nav_link {
  color: #FFFFFF;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.drawer_cta {
  margin-top: 32px;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero_section {
  position: relative;
  background: linear-gradient(105deg, #0D8432 0%, #107A70 100%);
  overflow: visible;
  padding-top: 150px;
  padding-bottom: 0px;
  color: #FFFFFF;
}

.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../../uploads/rang1_assets/noise_bg_texture_small.webp");
  background-repeat: repeat;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.hero_circle_bg {
  width: 1354px;
  height: 1353px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* Floating Doodle Icons */
.hero_doodle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.2s ease-out;
}

#hero_icon_www {
  top: 65px;
  left: 235px;
  width: 72px;
}

#hero_icon_dialog {
  top: 255px;
  left: 75px;
  width: 72px;
}

#hero_icon_plane {
  top: 405px;
  left: 145px;
  width: 150px;
}

#hero_icon_mag {
  top: 740px;
  left: 75px;
  width: 64px;
}

#hero_icon_like {
  top: 155px;
  right: 115px;
  width: 85px;
}

#hero_icon_search {
  top: 490px;
  right: 100px;
  width: 230px;
}

#hero_icon_envelope {
  top: 770px;
  right: 120px;
  width: 70px;
}

.hero_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 20;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hero_title {
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Laptop Mockup & Floating Cards */
.hero_mockup_stage {
  position: relative;
  width: 1280px;
  max-width: 100%;
  height: 556px;
  margin: 45px auto -50px auto;
  z-index: 15;
  display: flex;
  justify-content: center;
}

#laptop {
  width: 780px;
  height: 556px;
  position: relative;
  z-index: 5;
  margin: 0 auto;
}

#laptop lottie-player {
  width: 100%;
  height: 100%;
}

#data {
  width: 428px;
  height: 148px;
  position: absolute;
  top: -30px;
  left: calc(50% - 390px - 125px);
  z-index: 10;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.16));
}

#data lottie-player {
  width: 100%;
  height: 100%;
}

#chart {
  width: 375px;
  height: 232px;
  position: absolute;
  left: calc(50% - 390px - 110px);
  bottom: -30px;
  z-index: 12;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.16));
}

#chart lottie-player {
  width: 100%;
  height: 100%;
}

#rating {
  width: 274px;
  height: 335px;
  position: absolute;
  right: calc(50% - 390px - 35px);
  bottom: -30px;
  z-index: 12;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.16));
}

#rating lottie-player {
  width: 100%;
  height: 100%;
}

.hero_mockup_wrap {
  width: 100%;
  max-width: 960px;
  margin-top: 60px;
  position: relative;
}

.laptop_wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
}

.laptop_screen {
  width: 720px;
  height: 440px;
  background: #FFFFFF;
  border-radius: 16px 16px 4px 4px;
  border: 12px solid #222222;
  border-bottom: 16px solid #111111;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  position: relative;
}

.laptop_browser_bar {
  background: #EFEFEF;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #DDDDDD;
}

.laptop_browser_bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.browser_address {
  margin-left: 12px;
  background: #FFFFFF;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 12px;
  color: #777777;
  width: 280px;
  text-align: left;
}

.laptop_screen_content {
  padding: 24px;
  display: flex;
  gap: 20px;
  background: #FAFAFA;
  height: calc(100% - 40px);
}

.mock_header_line {
  font-size: 20px;
  font-weight: 700;
  color: #14A846;
}

.mock_body_lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mock_body_lines .line {
  height: 10px;
  background: #E2E8F0;
  border-radius: 4px;
  width: 100%;
}
.mock_body_lines .line.short { width: 60%; }
.mock_body_lines .line.banner {
  height: 80px;
  background: #EDF2F7;
  border-radius: 8px;
}

.mock_right_box {
  width: 160px;
  height: 120px;
  background: #CBD5E1;
  border-radius: 8px;
}

/* Floating Cards Positioning */
.floating_card {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  z-index: 30;
  transition: transform 0.3s ease;
}
.floating_card:hover {
  transform: translateY(-4px);
}

.top_metric_card {
  top: -30px;
  left: 20px;
  padding: 16px 28px;
  display: flex;
  gap: 32px;
  text-align: left;
}

.metric_col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric_label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.metric_val {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 800;
}

.metric_badge.positive {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-green-main);
}

.bottom_chart_card {
  bottom: 0px;
  left: -20px;
  padding: 20px;
  width: 320px;
}

.chart_header .chart_title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.chart_svg_wrap {
  margin-top: 10px;
}

.growth_chart_svg {
  width: 100%;
  height: 90px;
}

.chart_dates {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.bottom_rank_card {
  bottom: -20px;
  right: 10px;
  padding: 16px;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

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

.rank_item.search_query {
  background: #F1F5F9;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.g_icon {
  color: #4285F4;
  font-weight: 800;
}

.arrow_indicator {
  font-size: 16px;
  font-weight: 800;
}
.arrow_indicator.up { color: var(--color-green-main); }
.arrow_indicator.down { color: #E53E3E; }

.rank_details {
  flex: 1;
}
.rank_details strong {
  font-size: 13px;
  color: var(--color-green-main);
}
.rank_details span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.rank_bar {
  height: 6px;
  border-radius: 3px;
  margin-top: 4px;
}
.rank_bar.green { background: var(--color-green-main); width: 85%; }
.rank_bar.gray { background: #CBD5E1; width: 60%; }

/* ==========================================================================
   SECTION 2: BENEFITS CHECKLIST
   ========================================================================== */
#wir_sorgen {
  position: relative;
  padding-top: 140px;
  background-image: url("../../../../uploads/rang1_assets/unsere_kunde_bg-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

.checklist_items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist_items li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-green-main);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.check_text {
  font-size: 18px;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* ==========================================================================
   SECTION 3: TESTIMONIALS
   ========================================================================== */
.testimonial_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.testimonial_card {
  background: var(--color-bg-white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.t_meta .t_name {
  font-size: 24px;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 6px;
}

.t_meta .t_company {
  font-size: 16px;
  color: #14A846;
  font-weight: 600;
  margin-bottom: 24px;
}

.t_body {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: auto;
}

.t_stars {
  color: #FFB800;
  font-size: 22px;
  letter-spacing: 3px;
  margin-top: 24px;
}

/* ==========================================================================
   SECTION 4: VALUE PROP & WISTIA VIDEO
   ========================================================================== */
.value_points_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value_points_list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value_points_list p {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 1.5;
}

.wistia_responsive_wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  background: #000000;
}

/* ==========================================================================
   SECTION 5 & 6: MARKET CHALLENGE & GOOGLE ALGORITHM
   ========================================================================== */
.yellow_alert_card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFDF0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 28px;
  border: 1px solid #FFE699;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.yellow_alert_card .alert_icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.yellow_alert_card .alert_text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-dark);
}

.yellow_alert_card .alert_text strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.info_card {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.info_icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.info_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info_desc {
  font-size: 15px;
  color: var(--color-text-muted);
}

.info_callout {
  margin-top: 20px;
  padding: 18px 20px;
  background: #FFFDF0;
  border: 1px solid #FFE699;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-dark);
}

/* ==========================================================================
   SECTION 7: SEARCH MOCKUP
   ========================================================================== */
.phone_frame {
  width: 320px;
  height: 440px;
  background: #FFFFFF;
  border: 10px solid #1C2B27;
  border-radius: 36px;
  padding: 24px 16px;
  box-shadow: var(--shadow-floating);
  margin: 0 auto;
  position: relative;
}

.google_logo_text {
  font-size: 24px;
  font-weight: 800;
  color: #4285F4;
  text-align: center;
  margin-bottom: 20px;
}

.google_search_box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--color-text-muted);
}

.search_magnifier_zoom {
  margin-top: 36px;
  background: #FFFFFF;
  border: 2px solid var(--color-green-main);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20, 168, 70, 0.2);
}

.search_magnifier_zoom strong {
  display: block;
  font-size: 18px;
  color: var(--color-green-main);
}

.search_magnifier_zoom span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.green_highlight_box {
  background: #EAF7EE;
  border: 1px solid #C3E6CB;
  padding: 20px 24px;
  border-radius: var(--radius-card);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-dark);
}

.numbered_step_card {
  display: flex;
  gap: 16px;
  background: #EAF8EF;
  border: 1px solid #D3EFE0;
  border-radius: 16px;
  padding: 22px 26px;
}

.num_badge {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-green-main);
  line-height: 1;
}

.full_banner_card {
  background: #EAF8EF;
  border: 1px solid #D3EFE0;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  font-size: 16px;
  color: var(--color-text-dark);
}

#warum_kunden_verlieren {
  position: relative;
  background-image: url("../../../../uploads/rang1_assets/warum_jeden_tag_kunden_bg_all-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

#warum_google {
  position: relative;
  background-image: url("../../../../uploads/rang1_assets/warum_google_bg-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

#schritten {
  position: relative;
  background-image: url("../../../../uploads/rang1_assets/schritt_linie_bg-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

#erster_schritt {
  position: relative;
  background-image: url("../../../../uploads/rang1_assets/dein_erster_schritt_left_line_bg-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

/* ==========================================================================
   SECTION 8: RANG1 SERVICE SCOPE
   ========================================================================== */
.bullet_points_list.white li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 16px;
}
.bullet_points_list.white li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5CD08B;
  font-size: 20px;
}

.white_callout_box {
  background: #FFFFFF;
  color: var(--color-text-dark);
  padding: 20px 24px;
  border-radius: var(--radius-card);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.target_icon_img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.benefit_row_connected {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px 0;
  max-width: 1100px;
  margin: 32px auto 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.benefit_col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit_col:last-child {
  border-right: none;
}

.benefit_col .check_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0FA958;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.benefit_col p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   SECTION 9: 3-STEP TIMELINE
   ========================================================================== */
.three_steps_timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.timeline_step {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.step_badge {
  display: inline-block;
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step_circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.blue_circle { background: #E0F2FE; }
.yellow_circle { background: #FEF3C7; }
.green_circle { background: #DCFCE7; }

.step_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step_desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.time_investment_banner {
  background: rgba(20, 168, 70, 0.1);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  display: table;
}

/* ==========================================================================
   SECTION 10: BENEFITS BREAKDOWN
   ========================================================================== */
.benefit_item_row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-left: 8px;
}

.b_icon_check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-green-main);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.b_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.b_desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 11: CASE STUDIES ACCORDIONS
   ========================================================================== */
.case_study_card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.case_meta_table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.meta_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.meta_lbl {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.meta_row > span:last-child,
.meta_row > strong,
.meta_row > a {
  margin-left: auto;
  text-align: right;
}

.gold_link,
a.gold_link {
  color: #EEB525 !important;
  font-weight: 700;
  text-decoration: none;
}

.gold_link:hover,
a.gold_link:hover {
  text-decoration: underline;
}

.case_chart_box {
  background: #F8FAF8;
  border-radius: var(--radius-card);
  padding: 20px;
}

.chart_box_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.box_title { font-weight: 700; }
.box_stat { font-size: 20px; font-weight: 800; }

.case_graph_img {
  width: 100%;
  border-radius: 8px;
}

.accordion_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc_item {
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.acc_trigger {
  width: 100%;
  background: #FFFFFF;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  text-align: left;
}

.acc_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-main);
}

.acc_icon svg {
  transition: transform 0.25s ease;
  transform: rotate(0deg);
}

.acc_item.active .acc_icon svg,
.acc_trigger[aria-expanded="true"] .acc_icon svg {
  transform: rotate(180deg);
}

.acc_content {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.acc_item.active .acc_content {
  display: block;
}

.acc_item.active {
  background: #FAFAFA;
}

/* ==========================================================================
   SECTION 13: SWIPER TEAM CAROUSEL
   ========================================================================== */
.rang1_team_swiper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 20px 0 20px;
}

.rang1_team_swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

#ueber_uns {
  background-color: var(--color-green-main);
  background-image: 
    url('/rang1/wp-content/uploads/rang1_assets/ueber_uns_right_bg-scaled.webp'),
    var(--bg-noise), 
    linear-gradient(105deg, #0D8432 0%, #107A70 100%);
  background-position: right top, center center, center center;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.team_slide {
  width: 375px !important;
  height: 455px !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.team_slide:first-child .team_img {
  object-position: right center !important;
}

.team_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1025px) {
  .rang1_team_swiper .swiper-pagination {
    display: none !important;
  }
}

.swiper-pagination-bullet {
  background: #FFFFFF !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--color-gold-main) !important;
}

/* ==========================================================================
   SECTION 15: CEO YOUTUBE VIDEOS
   ========================================================================== */
.three_videos_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video_card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.video_thumbnail_wrap {
  width: 100%;
  overflow: hidden;
}

.video_thumb_img {
  width: 100%;
  height: auto;
  display: block;
}

.video_title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 24px 20px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

/* ==========================================================================
   SECTION 16: FAQ ACCORDION & SKYLINE
   ========================================================================== */
.faq_skyline_section {
  position: relative;
  padding-bottom: 220px;
  background-image: url("../../../../uploads/rang1_assets/faq_line_bg-scaled.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px auto;
}

.faq_accordion_wrapper {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.faq_acc_item {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq_trigger {
  width: 100%;
  background: #FFFFFF;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  text-align: left;
}

.faq_icon {
  font-size: 24px;
  line-height: 1;
  color: var(--color-green-main);
  font-weight: 800;
  flex-shrink: 0;
  width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq_acc_item.active .faq_icon,
.faq_trigger[aria-expanded="true"] .faq_icon {
  color: #E5A823 !important;
}

.faq_answer {
  display: none;
  padding: 0 28px 24px 70px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq_acc_item.active .faq_answer {
  display: block;
}

.skyline_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
}

.skyline_img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: bottom;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site_footer {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: hidden;
  line-height: 0;
  z-index: 20;
}

.skyline_relative_wrap {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.figma_skyline_img {
  width: 100%;
  height: auto;
  display: block;
}

.skyline_clickable_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hotspot_logo {
  position: absolute;
  left: 3.5%;
  bottom: 27%;
  width: 5%;
  height: 12%;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_fb {
  position: absolute;
  right: 9.2%;
  bottom: 30%;
  width: 2.5%;
  height: 6%;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_ig {
  position: absolute;
  right: 6%;
  bottom: 30%;
  width: 2.5%;
  height: 6%;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_datenschutz {
  position: absolute;
  right: 12.5%;
  bottom: 7.5%;
  width: 7%;
  height: 5%;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_impressum {
  position: absolute;
  right: 4.8%;
  bottom: 7.5%;
  width: 6.8%;
  height: 5%;
  pointer-events: auto;
  cursor: pointer;
}

.hotspot_agb {
  position: absolute;
  right: 1.5%;
  bottom: 7.5%;
  width: 3%;
  height: 5%;
  pointer-events: auto;
  cursor: pointer;
}

/* Steps trajectory and banner */
.steps_trajectory_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.steps_trajectory_img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.time_investment_banner_img {
  max-width: 1280px;
  margin: 24px auto 0 auto;
}

.zeitaufwand_img {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.search_phone_magnifier_img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

.video_thumbnail_wrap {
  width: 100%;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
}

.video_thumb_img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.video_thumb_img:hover {
  transform: scale(1.03);
}

.case_study_figma_card {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: block;
}

/* ==========================================================================
   FLUENT FORMS: 10-STEP MULTI-STEP LEAD FUNNEL
   ========================================================================== */
.kontakt_hero_wrap, .danke_hero_wrap, .legal_hero_wrap {
  background: var(--color-green-grad);
  padding: 140px 24px 80px;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}

.kontakt_title, .danke_title, .legal_page_title {
  font-size: 48px;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 16px;
}

.kontakt_subtitle, .danke_subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto;
}

.kontakt_form_container {
  max-width: 760px;
  margin-top: -40px;
  margin-bottom: 100px;
  position: relative;
  z-index: 30;
}

.form_card_wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-floating);
  border: var(--border-subtle);
}

/* Fluent Form Custom Override */
.ff-el-form-top .ff-el-input--label label {
  font-family: var(--font-heading) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--color-text-dark) !important;
  margin-bottom: 12px !important;
}

.ff-el-form-control, .ff_custom_input {
  width: 100% !important;
  height: 56px !important;
  font-size: 16px !important;
  font-family: var(--font-body) !important;
  border: 2px solid #E2E8F0 !important;
  border-radius: var(--radius-btn) !important;
  padding: 12px 20px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
}

.ff-el-form-control:focus, .ff_custom_input:focus {
  border-color: var(--color-green-main) !important;
  box-shadow: 0 0 0 4px rgba(20, 168, 70, 0.15) !important;
}

/* Choice Cards Styling for Radio Buttons */
.ff_choice_cards .ff-el-form-check {
  display: block;
  margin-bottom: 12px;
}

.ff_choice_cards .ff-el-form-check-label {
  display: block !important;
  padding: 16px 24px !important;
  background: #F8FAF8 !important;
  border: 2px solid #E2E8F0 !important;
  border-radius: var(--radius-btn) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--color-text-dark) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.ff_choice_cards .ff-el-form-check-input:checked + .ff-el-form-check-label,
.ff_choice_cards .ff-el-form-check-label:hover {
  border-color: var(--color-green-main) !important;
  background: rgba(20, 168, 70, 0.08) !important;
  color: var(--color-green-main) !important;
}

/* Navigation Buttons in Form */
.ff-step-nav {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 32px !important;
}

.ff-btn-next, .ff-btn-prev, .rang1_submit_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-btn) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.ff-btn-next, .rang1_submit_btn {
  background-image: var(--color-gold-grad) !important;
  color: #1C2B27 !important;
  border: none !important;
}

.ff-btn-prev {
  background: #F1F5F9 !important;
  color: var(--color-text-muted) !important;
  border: 1px solid #E2E8F0 !important;
}

.ff-step-progress-bar {
  background: #E2E8F0 !important;
  height: 8px !important;
  border-radius: 4px !important;
  margin-bottom: 32px !important;
}

.ff-step-progress-bar .ff-step-progress-bar-inner {
  background: var(--color-green-main) !important;
  border-radius: 4px !important;
}

.trust_features_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust_col {
  background: #F8FAF8;
  padding: 24px;
  border-radius: var(--radius-card);
  border: var(--border-subtle);
}

.trust_icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

/* ==========================================================================
   THANK YOU & LEGAL PAGES
   ========================================================================== */
.success_badge_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-green-main);
  font-size: 32px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.danke_content_container {
  max-width: 960px;
  margin-bottom: 100px;
}

.danke_info_card {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.danke_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.legal_content_container {
  max-width: 900px;
  margin-top: -30px;
  margin-bottom: 100px;
}

.legal_article_card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 48px;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.legal_article_card h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal_article_card h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal_article_card p {
  margin-bottom: 16px;
}

/* ==========================================================================
   RESPONSIVENESS (Matching Tablet.png and Mobile.png)
   ========================================================================== */
@media (max-width: 1200px) {
  .section_heading_h2 { font-size: 36px; }
  .hero_title { font-size: 52px; }
  .laptop_screen { width: 620px; height: 380px; }
}

@media (max-width: 1024px) {
  /* Tablet Breakpoint */
  .two_col_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .case_study_card {
    grid-template-columns: 1fr;
  }
  
  .three_steps_timeline, .three_cards_grid, .three_videos_grid, .testimonial_cards_grid, .benefit_row_connected {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit_col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 0 16px 0;
  }
  .benefit_col:last-child {
    border-bottom: none;
  }
  
  .top_metric_card {
    left: 0;
    gap: 16px;
  }
  
  .bottom_chart_card {
    left: 0;
  }
  
  .bottom_rank_card {
    right: 0;
  }
  
  .trust_features_row, .danke_cards_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Breakpoint */
  .desktop_nav { display: none; }
  .mobile_toggle { display: flex; }
  .mobile_drawer { display: flex; }
  
  .section_padded { padding-top: 60px; padding-bottom: 60px; }
  
  .hero_section {
    padding-top: 130px;
    padding-bottom: 80px;
    overflow-x: clip;
  }
  
  .hero_title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero_subtitle {
    font-size: 16px;
  }
  
  .hero_doodle {
    display: none;
  }
  
  .hero_mockup_stage {
    width: 780px;
    transform: scale(0.38);
    transform-origin: top center;
    margin: 20px auto -320px auto;
  }

  .laptop_screen {
    width: 100%;
    height: 280px;
  }
  
  .top_metric_card {
    position: static;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bottom_chart_card, .bottom_rank_card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  
  .hero_mockup_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer_brand, .footer_bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .form_card_wrapper {
    padding: 24px 16px;
  }
  
  .kontakt_title, .danke_title, .legal_page_title {
    font-size: 32px;
  }
}

/* --- Wizard Single-Question Styling --- */
.wizard_progress_header {
  margin-bottom: 32px;
}

.wizard_step_indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.wizard_step_indicator strong {
  color: var(--color-green-main);
  font-weight: 800;
}

.wizard_bar_track {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.wizard_bar_fill {
  height: 100%;
  background: var(--color-green-main);
  transition: width 0.3s ease-in-out;
  border-radius: 4px;
}

.wizard_nav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

.wizard_btn_prev {
  margin-right: auto;
}

.wizard_btn_next {
  margin-left: auto;
}

/* ==========================================================================
   LIVE KONTAKT PAGE 1:1 REPLICATION
   ========================================================================== */
.kontakt_clean_body {
  background-color: #FFFFFF !important;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.kontakt_minimal_header {
  padding: 32px 0 16px;
  position: relative;
  z-index: 20;
}

.kontakt_minimal_main {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 80px;
  overflow: hidden;
}

.kontakt_bg_orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background-color: #14A846;
  opacity: 0.22;
  filter: blur(240px);
  pointer-events: none;
  z-index: 0;
}

.orb_top_right {
  top: -300px;
  right: -300px;
}

.orb_bottom_left {
  bottom: -300px;
  left: -300px;
}

.kontakt_line_bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.line_top_right {
  top: -250px;
  right: -350px;
  width: 1400px;
}

.line_bottom_left {
  bottom: -350px;
  left: -350px;
  width: 1400px;
  transform: rotate(-15deg);
}

.kontakt_form_wrap_clean {
  position: relative;
  z-index: 10;
  max-width: 820px;
  width: 100%;
}

.kontakt_heading_green {
  font-size: 56px;
  font-weight: 800;
  color: #14A846;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}

.kontakt_desc_top {
  font-size: 16px;
  color: #1C2B27;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
}

.kontakt_desc_sub {
  font-size: 15px;
  color: #616161;
  line-height: 1.65;
  max-width: 800px;
  margin: 8px auto 0;
}

.form_interactive_zone {
  margin-top: 40px;
  position: relative;
}

/* Floating Clean Inputs */
.kontakt_clean_body .ff-el-form-top .ff-el-input--label label {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1C2B27 !important;
  margin-bottom: 12px !important;
}

.kontakt_clean_body .ff-el-form-control,
.kontakt_clean_body .ff_custom_input {
  background-color: rgba(20, 168, 70, 0.04) !important;
  border: 1px solid rgba(20, 168, 70, 0.22) !important;
  border-radius: 12px !important;
  height: 60px !important;
  padding: 0 24px !important;
  font-size: 17px !important;
  color: #1C2B27 !important;
  box-shadow: none !important;
}

.kontakt_clean_body .ff-el-form-control:focus,
.kontakt_clean_body .ff_custom_input:focus {
  border-color: #14A846 !important;
  background-color: rgba(20, 168, 70, 0.08) !important;
  box-shadow: 0 0 0 4px rgba(20, 168, 70, 0.15) !important;
}

/* Choice Cards Grid in Clean Mode */
.kontakt_clean_body .ff_choice_cards .ff-el-input--content {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

.kontakt_clean_body .ff_choice_cards .ff-el-form-check {
  margin: 0 !important;
  display: flex !important;
}

.kontakt_clean_body .ff_choice_cards .ff-el-form-check-input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.kontakt_clean_body .ff_choice_cards .ff-el-form-check-label {
  width: 100% !important;
  background-color: rgba(20, 168, 70, 0.04) !important;
  border: 1px solid rgba(20, 168, 70, 0.18) !important;
  border-radius: 12px !important;
  padding: 18px 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1C2B27 !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.kontakt_clean_body .ff_choice_cards .ff-el-form-check-label:hover {
  border-color: rgba(20, 168, 70, 0.6) !important;
  background-color: rgba(20, 168, 70, 0.12) !important;
}

.kontakt_clean_body .ff_choice_cards .ff-el-form-check-input:checked + .ff-el-form-check-label {
  background-color: #14A846 !important;
  border-color: #14A846 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.kontakt_clean_body .wizard_bar_track {
  display: none !important;
}
.kontakt_clean_body .wizard_step_indicator {
  display: none !important;
}

.kontakt_clean_body .wizard_nav_wrap {
  border-top: none !important;
  padding-top: 16px !important;
  margin-top: 24px !important;
}

.kontakt_clean_body .wizard_btn_next {
  padding: 12px 36px !important;
  font-size: 16px !important;
  border-radius: 8px !important;
}

.kontakt_clean_body .wizard_btn_prev {
  padding: 12px 28px !important;
  background: transparent !important;
  border: 1px solid rgba(28, 43, 39, 0.2) !important;
  border-radius: 8px !important;
  color: #1C2B27 !important;
}

@media (max-width: 768px) {
  .kontakt_heading_green { font-size: 36px; }
  .kontakt_clean_body .ff_choice_cards .ff-el-input--content {
    grid-template-columns: 1fr !important;
  }
}

/* --- Video Lightbox Modal --- */
.video_modal_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video_modal_content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.video_modal_close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
