/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "DM Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "DM Sans",  sans-serif;
  --nav-font: "DM Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #f8f8f6;
  /* Background color for the entire website, including individual sections */
  --default-color: #202020;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #202020;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #db0626;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #dfeabd;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #005c36;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #202020;
  /* The default color of the main navmenu links */
  --nav-hover-color: #db0626;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #202020;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #db0626;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f8f8f6;
  --default-color: #202020;
  --heading-color: #202020;
  --accent-color: #db0626;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #dfeabd;
  --default-color: #212121;
  --heading-color: #212121;
  --accent-color: #db0626;
  --surface-color: #4a4643;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f3f3f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 38px;
  width: auto;
  display: block;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: #fff;
  background: var(--accent-color);
  font-size: 13px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color) 85%, black);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .logo img {
    height: 32px;
  }
  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 576px) {
  .header .cta-btn {
    display: none;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(32, 32, 32, 0.85);
  --default-color: #444444;
  --heading-color: #282828;
  --nav-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1199px) {
  .index-page.scrolled .header {
    background: rgba(32, 32, 32, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
.navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
.navmenu li:hover > a:before,
.navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
.navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 24px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
.navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
    color: var(--nav-dropdown-color);
  }
  .navmenu a i:hover,
.navmenu a:focus i:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
.navmenu .active:focus i {
    color: var(--nav-dropdown-hover-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all .5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #202020;
  color: #fff;
  padding: 55px 0 20px;
  /* LOGO */
  /* NAVIGATION */
  /* CONTACT */
  /* BOTTOM */
  /* MOBILE */
}

.footer .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer .footer-logo span {
  color: #DB0626;
}

.footer .footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
  align-content: start;
}

.footer .footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .2s ease;
}

.footer .footer-nav a:hover {
  color: #fff;
}

.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer .footer-contact .footer-heading {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FBD9CF;
}

.footer .footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer .footer-contact a:hover {
  color: #fff;
}

.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

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

.footer .footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer {
    padding-top: 45px;
  }
  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }
  .footer .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer .footer-legal {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 3px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }
  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
.section {
    scroll-margin-top: 57px;
  }
}

@media (max-width: 768px) {
  section,
.section {
    padding: 64px 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}

.section-title p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 720px;
  position: relative;
  padding: 0 !important;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 50, 35, 0.42) 0%, rgba(0, 35, 25, 0.28) 38%, rgba(0, 0, 0, 0.08) 72%, transparent 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  padding-bottom: 120px;
}

.hero .hero-t {
  position: absolute;
  right: 6%;
  top: 10%;
  width: 190px;
  height: auto;
  opacity: .18;
  z-index: 3;
}

.hero .hero-content {
  max-width: 650px;
}

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.hero .hero-content .hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #DB0626;
}

.hero .hero-content .hero-headline {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 650px;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-headline {
    font-size: 40px;
  }
}

.hero .hero-content .hero-subtext {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero .hero-content .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .hero-content .action-row .btn {
  height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
}

.hero .hero-content .action-row .btn.btn-solid {
  background: #DB0626;
  color: #fff;
  border: 1px solid #DB0626;
}

.hero .hero-content .action-row .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  border-color: color-mix(in srgb, var(--accent-color) 85%, black);
}

.hero .hero-content .action-row .btn.btn-solid:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.hero .hero-content .action-row .btn.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.hero .hero-content .action-row .btn.btn-outline i {
  color: #fff;
}

.hero .hero-content .action-row .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  border-color: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.hero .hero-content .action-row .btn.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

.hero .metrics-bar {
  position: relative;
  z-index: 5;
  margin-top: 55px;
  margin-bottom: -170px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .hero .metrics-bar {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar {
    grid-template-columns: 1fr;
  }
}

.hero .metrics-bar .metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.hero .metrics-bar .metric-item:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .hero .metrics-bar .metric-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar .metric-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    padding-bottom: 16px;
  }
  .hero .metrics-bar .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }
}

.hero .metrics-bar .metric-item .metric-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 20px;
}

.hero .metrics-bar .metric-item .metric-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero .metrics-bar .metric-item .metric-text .metric-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero .metrics-bar .metric-item .metric-text .metric-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

@media (max-width: 768px) {
  .hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 50, 35, 0.48) 0%, rgba(0, 45, 32, 0.38) 35%, rgba(0, 30, 22, 0.48) 70%, rgba(0, 25, 18, 0.58) 100%);
  }
}

/*--------------------------------------------------------------
# Projekt Section
--------------------------------------------------------------*/
.projekt {
  padding: 170px 0 120px;
}

.projekt .image-stack {
  position: relative;
  padding-right: 30px;
}

.projekt .image-stack .main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.projekt .image-stack .experience-badge {
  position: absolute;
  left: -18px;
  top: 35px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 175px;
  padding: 22px;
  border-radius: 3px;
  background: #DB0626;
  color: #fff;
}

.projekt .image-stack .experience-badge .number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.projekt .image-stack .experience-badge .text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.projekt .content {
  padding-left: 45px;
  max-width: 570px;
}

.projekt .content .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.projekt .content .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.projekt .content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #202020;
  margin: 0 0 22px;
}

.projekt .content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 30px;
}

.projekt .content .check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.projekt .content .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #303030;
}

.projekt .content .check-list li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 14px;
  color: #DB0626;
  border: 1px solid rgba(219, 6, 38, 0.25);
  border-radius: 50%;
}

.projekt .content .project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #202020;
  border-bottom: 1px solid #DB0626;
  transition: all .2s ease;
}

.projekt .content .project-link i {
  color: #DB0626;
  transition: transform .2s ease;
}

.projekt .content .project-link:hover {
  color: #DB0626;
}

.projekt .content .project-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .projekt .image-stack {
    padding-bottom: 25px;
  }
  .projekt .content {
    padding-left: 5px;
  }
}

/*--------------------------------------------------------------
# Byty Section
--------------------------------------------------------------*/
.byty {
  padding-top: 110px;
  background: #f8f7f4;
  padding-bottom: 120px;
  /* ========================================
     SECTION HEADING
     ======================================== */
  /* ========================================
     CARD
     ======================================== */
  /* ========================================
     IMAGE
     ======================================== */
  /* ========================================
     CARD BODY
     ======================================== */
  /* ========================================
     META
     ======================================== */
  /* ========================================
     DETAIL LINK
     ======================================== */
  /* ========================================
     RESPONSIVE
     ======================================== */
}

.byty .section-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.byty .section-heading .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.byty .section-heading .section-eyebrow::before,
.byty .section-heading .section-eyebrow::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #DB0626;
}

.byty .section-heading h2 {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #202020;
}

.byty .section-heading p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.byty .apartment-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.byty .apartment-card:hover {
  border-color: rgba(219, 6, 38, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.byty .apartment-image {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.byty .apartment-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 88%;
  object-fit: contain;
  transition: transform .4s ease;
}

.byty .apartment-image .status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
}

.byty .apartment-image .status-badge.available {
  background: #005C36;
}

.byty .apartment-image .status-badge.occupied {
  background: #6B6B6B;
}

.byty .apartment-image .status-badge.reserved {
  background: #DB0626;
}

.byty .apartment-card:hover .apartment-image img {
  transform: scale(1.025);
}

.byty .apartment-body {
  padding: 24px 25px 22px;
}

.byty .apartment-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.byty .apartment-header .apartment-label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #888;
}

.byty .apartment-header h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  color: #202020;
}

.byty .apartment-header .apartment-size {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
}

.byty .apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 17px 0 20px;
}

.byty .apartment-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #666;
}

.byty .apartment-meta span i {
  font-size: 15px;
  color: #005C36;
}

.byty .apartment-detail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #202020;
}

.byty .apartment-detail i {
  color: #DB0626;
  transition: transform .2s ease;
}

.byty .apartment-detail:hover {
  color: #DB0626;
}

.byty .apartment-detail:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .byty {
    padding: 90px 0 100px;
  }
  .byty .section-heading {
    margin-bottom: 45px;
  }
  .byty .section-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .byty {
    padding: 70px 0 80px;
  }
  .byty .section-heading {
    margin-bottom: 35px;
  }
  .byty .section-heading h2 {
    font-size: 30px;
  }
  .byty .section-heading p {
    font-size: 15px;
  }
  .byty .apartment-body {
    padding: 21px;
  }
}

/*--------------------------------------------------------------
# Lokalita Section
--------------------------------------------------------------*/
.lokalita {
  padding: 110px 0;
  background: #DFEABD;
  /* CONTENT */
}

.lokalita .map-showcase {
  position: relative;
  padding: 25px 30px 25px 0;
  /* MAP POINTS */
}

.lokalita .map-showcase .location-map {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lokalita .map-showcase .map-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #202020;
  white-space: nowrap;
}

.lokalita .map-showcase .point-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #DB0626;
}

.lokalita .map-showcase .project-point {
  right: 35%;
  bottom: 53%;
}

.lokalita .map-showcase .project-point .point-dot {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(219, 6, 38, 0.15);
}

.lokalita .map-showcase .school-point {
  right: 27%;
  top: 18%;
}

.lokalita .map-showcase .center-point {
  left: 18%;
  bottom: 18%;
}

.lokalita .content-section {
  padding-left: 35px;
}

.lokalita .content-section .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.lokalita .content-section .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.lokalita .content-section h2 {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #202020;
}

.lokalita .content-section > p {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}

.lokalita .content-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lokalita .content-section .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  transition: background .2s ease;
}

.lokalita .content-section .features-grid .feature-item:hover {
  background: rgba(255, 255, 255, 0.75);
}

.lokalita .content-section .features-grid .feature-item .feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #005C36;
  border-radius: 3px;
}

.lokalita .content-section .features-grid .feature-item .feature-icon i {
  font-size: 17px;
}

.lokalita .content-section .features-grid .feature-item h4 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: #202020;
}

.lokalita .content-section .features-grid .feature-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .lokalita .content-section {
    padding-left: 5px;
  }
}

/*--------------------------------------------------------------
# Mesto Section
--------------------------------------------------------------*/
.mesto {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mesto .mesto-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mesto .mesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mesto .mesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 50, 35, 0.65) 0%, rgba(0, 35, 25, 0.52) 30%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0) 85%);
}

.mesto .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.mesto .mesto-content {
  max-width: 570px;
  padding: 70px 0;
}

.mesto .mesto-content .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #FBD9CF;
}

.mesto .mesto-content .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.mesto .mesto-content h2 {
  margin: 0 0 20px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
}

.mesto .mesto-content p {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.mesto .mesto-content .mesto-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #DB0626;
}

.mesto .mesto-content .mesto-link i {
  color: #DB0626;
  transition: transform .2s ease;
}

.mesto .mesto-content .mesto-link:hover {
  color: #fff;
}

.mesto .mesto-content .mesto-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .mesto {
    min-height: 480px;
  }
  .mesto .mesto-overlay {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(20, 20, 20, 0.4));
  }
  .mesto .mesto-content {
    padding: 60px 0;
  }
  .mesto .mesto-content h2 {
    font-size: 34px;
  }
  .mesto .mesto-content p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Podminky Section
--------------------------------------------------------------*/
.podminky {
  background: #FBD9CF;
  padding: 110px 0;
}

.podminky .section-heading {
  max-width: 720px;
  margin: 0 auto 65px;
}

.podminky .section-heading .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.podminky .section-heading .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.podminky .section-heading h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #202020;
}

.podminky .section-heading p {
  margin: 0 auto;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.podminky .conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  row-gap: 0;
}

.podminky .conditions-grid .condition-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(32, 32, 32, 0.15);
}

.podminky .conditions-grid .condition-item:nth-child(-n+2) {
  border-top: none;
}

.podminky .conditions-grid .condition-item .condition-number {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #DB0626;
  line-height: 1.4;
}

.podminky .conditions-grid .condition-item .condition-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #202020;
}

.podminky .conditions-grid .condition-item .condition-content p {
  margin: 0;
  max-width: 430px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.podminky .conditions-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 55px;
}

.podminky .conditions-cta p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.podminky .conditions-cta .btn {
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  background: #DB0626;
  border: 1px solid #DB0626;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.podminky .conditions-cta .btn i {
  transition: transform .2s ease;
}

.podminky .conditions-cta .btn:hover {
  background: #9D0E17;
  border-color: #9D0E17;
}

.podminky .conditions-cta .btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .podminky {
    padding: 80px 0;
  }
  .podminky .section-heading {
    margin-bottom: 45px;
  }
  .podminky .section-heading h2 {
    font-size: 34px;
  }
  .podminky .conditions-grid {
    grid-template-columns: 1fr;
  }
  .podminky .conditions-grid .condition-item {
    padding: 25px 0;
  }
  .podminky .conditions-grid .condition-item:nth-child(2) {
    border-top: 1px solid rgba(32, 32, 32, 0.15);
  }
  .podminky .conditions-cta {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  .podminky .conditions-cta .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Overeni Section
--------------------------------------------------------------*/
.overeni {
  background: #f8f7f4;
  padding: 110px 0;
  /* INTRO */
  /* CHECKER */
  /* PROGRESS */
  /* STEPS */
  /* ANSWERS */
  /* NOTE */
  /* HOUSEHOLD */
  /* INCOME */
  /* NEXT */
  /* BACK */
  /* RESULT */
}

.overeni .overeni-intro {
  max-width: 700px;
  margin: 0 auto 55px;
}

.overeni .overeni-intro .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.overeni .overeni-intro .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.overeni .overeni-intro h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #202020;
}

.overeni .overeni-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.overeni .eligibility-checker {
  max-width: 820px;
  margin: 0 auto;
  padding: 45px 55px;
  background: #fff;
  border: 1px solid rgba(32, 32, 32, 0.08);
  border-radius: 4px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.overeni .checker-progress {
  margin-bottom: 50px;
}

.overeni .checker-progress .progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: #777;
}

.overeni .checker-progress .progress-top strong {
  color: #202020;
}

.overeni .checker-progress .progress-line {
  width: 100%;
  height: 3px;
  background: #eee;
  overflow: hidden;
}

.overeni .checker-progress .progress-line span {
  display: block;
  width: 20%;
  height: 100%;
  background: #DB0626;
  transition: width .3s ease;
}

.overeni .checker-step {
  display: none;
}

.overeni .checker-step.active {
  display: block;
}

.overeni .checker-step .step-number {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #DB0626;
  letter-spacing: .05em;
}

.overeni .checker-step h3 {
  max-width: 650px;
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #202020;
}

.overeni .checker-step .step-description {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.overeni .answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.overeni .answer-button {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 18px;
  text-align: left;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s ease;
}

.overeni .answer-button .answer-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBD9CF;
  color: #DB0626;
  border-radius: 3px;
}

.overeni .answer-button .answer-icon i {
  font-size: 18px;
}

.overeni .answer-button strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  color: #202020;
}

.overeni .answer-button small {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
}

.overeni .answer-button:hover {
  border-color: #DB0626;
  transform: translateY(-2px);
}

.overeni .step-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
  padding: 14px 16px;
  background: #f8f7f4;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

.overeni .step-note i {
  color: #DB0626;
}

.overeni .household-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}

.overeni .household-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all .2s ease;
}

.overeni .household-option input {
  position: absolute;
  opacity: 0;
}

.overeni .household-option:has(input:checked) {
  border-color: #DB0626;
  background: #FBD9CF;
  color: #202020;
}

.overeni .income-input {
  position: relative;
  max-width: 420px;
  margin: 35px 0 15px;
}

.overeni .income-input input {
  width: 100%;
  height: 58px;
  padding: 0 125px 0 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  outline: none;
}

.overeni .income-input input:focus {
  border-color: #DB0626;
  box-shadow: 0 0 0 3px rgba(219, 6, 38, 0.08);
}

.overeni .income-input span {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #777;
}

.overeni .income-limit {
  min-height: 24px;
  font-size: 14px;
  color: #555;
}

.overeni .income-limit strong {
  color: #202020;
}

.overeni .checker-next {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding: 13px 22px;
  border: 1px solid #DB0626;
  border-radius: 3px;
  background: #DB0626;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.overeni .checker-next:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.overeni .checker-next:not(:disabled):hover {
  background: #9D0E17;
  border-color: #9D0E17;
}

.overeni .checker-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.overeni .checker-back:hover {
  color: #DB0626;
}

.overeni .checker-result {
  display: none;
  padding: 45px 20px 15px;
  text-align: center;
}

.overeni .checker-result.show {
  display: block;
}

.overeni .checker-result .result-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #DFEABD;
  color: #005C36;
  font-size: 28px;
}

.overeni .checker-result .result-eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #005C36;
}

.overeni .checker-result h3 {
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 700;
  color: #202020;
}

.overeni .checker-result > p {
  max-width: 570px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.overeni .checker-result .result-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.overeni .checker-result .btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #DB0626;
  border: 1px solid #DB0626;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.overeni .checker-result .btn-solid:hover {
  background: #9D0E17;
  color: #fff;
}

.overeni .checker-result .restart-button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.overeni .checker-result .restart-button:hover {
  color: #DB0626;
}

.overeni .checker-result .result-note {
  max-width: 620px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 12px;
  line-height: 1.6;
  color: #888;
}

.overeni .checker-result.not-eligible .result-icon {
  background: #f1f1f1;
  color: #666;
}

.overeni .checker-result.not-eligible .result-eyebrow {
  color: #666;
}

@media (max-width: 768px) {
  .overeni {
    padding: 80px 0;
  }
  .overeni .overeni-intro {
    margin-bottom: 40px;
  }
  .overeni .overeni-intro h2 {
    font-size: 34px;
  }
  .overeni .eligibility-checker {
    padding: 30px 20px;
  }
  .overeni .answer-grid,
.overeni .household-options {
    grid-template-columns: 1fr;
  }
  .overeni .checker-step h3 {
    font-size: 24px;
  }
  .overeni .result-actions {
    flex-direction: column;
  }
  .overeni .result-actions .btn-solid {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  background: #FBD9CF;
  position: relative;
  padding: 110px 0;
  /* INTRO */
  /* GRID */
  /* CONNECTING LINE */
  /* CARD */
  /* MOBILE */
}

.steps .steps-intro {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.steps .steps-intro .steps-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.steps .steps-intro .steps-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.steps .steps-intro h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #202020;
}

.steps .steps-intro p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.steps .steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps .steps-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: rgba(219, 6, 38, 0.25);
  z-index: 0;
}

.steps .process-card {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(32, 32, 32, 0.07);
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  /* NUMBER */
  /* ICON */
  /* LINK */
}

.steps .process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(32, 32, 32, 0.08);
}

.steps .process-card .card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  color: rgba(219, 6, 38, 0.08);
  pointer-events: none;
}

.steps .process-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBD9CF;
  color: #DB0626;
  border-radius: 3px;
}

.steps .process-card .card-icon i {
  font-size: 22px;
}

.steps .process-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #202020;
}

.steps .process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.steps .process-card .step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #202020;
  text-decoration: none;
}

.steps .process-card .step-link i {
  color: #DB0626;
  transition: transform .2s ease;
}

.steps .process-card .step-link:hover {
  color: #202020;
}

.steps .process-card .step-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .steps .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps .steps-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .steps {
    padding: 80px 0;
  }
  .steps .steps-intro {
    margin-bottom: 40px;
  }
  .steps .steps-intro h2 {
    font-size: 34px;
  }
  .steps .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .steps .process-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

/*--------------------------------------------------------------
# Dokumenty Section
--------------------------------------------------------------*/
.dokumenty {
  background: #fff;
  padding: 110px 0;
  /* INTRO */
  /* DOCUMENT LIST */
  /* LEFT SIDE */
  /* PDF ICON */
  /* TEXT */
  /* DOWNLOAD */
  /* MOBILE */
}

.dokumenty .documents-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}

.dokumenty .documents-intro .documents-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.dokumenty .documents-intro .documents-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.dokumenty .documents-intro h2 {
  margin: 0 0 15px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #202020;
}

.dokumenty .documents-intro p {
  max-width: 650px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.dokumenty .documents-list {
  border-top: 1px solid #e5e5e5;
}

.dokumenty .document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 10px;
  border-bottom: 1px solid #e5e5e5;
  transition: background .2s ease;
}

.dokumenty .document-item:hover {
  background: #f8f7f4;
  padding-left: 18px;
  padding-right: 18px;
}

.dokumenty .document-main {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.dokumenty .document-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBD9CF;
  color: #DB0626;
  border-radius: 3px;
}

.dokumenty .document-icon i {
  font-size: 24px;
}

.dokumenty .document-info h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #202020;
}

.dokumenty .document-info p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.dokumenty .document-info .document-meta {
  font-size: 12px;
  color: #999;
}

.dokumenty .document-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #202020;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.dokumenty .document-download i {
  color: #DB0626;
  font-size: 16px;
}

.dokumenty .document-download:hover {
  border-color: #DB0626;
  color: #DB0626;
}

@media (max-width: 768px) {
  .dokumenty {
    padding: 80px 0;
  }
  .dokumenty .documents-intro {
    margin-bottom: 35px;
  }
  .dokumenty .documents-intro h2 {
    font-size: 34px;
  }
  .dokumenty .document-item {
    align-items: flex-start;
    padding: 20px 5px;
    gap: 15px;
  }
  .dokumenty .document-main {
    gap: 14px;
  }
  .dokumenty .document-icon {
    width: 44px;
    height: 44px;
  }
  .dokumenty .document-icon i {
    font-size: 20px;
  }
  .dokumenty .document-info h3 {
    font-size: 15px;
  }
  .dokumenty .document-info p {
    font-size: 13px;
  }
  .dokumenty .document-download {
    padding: 9px;
  }
  .dokumenty .document-download span {
    display: none;
  }
  .dokumenty .document-item:hover {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: #fff;
  padding: 110px 0;
  /* LEFT */
  /* QUESTIONS */
  /* QUESTION */
  /* ANSWER */
  /* MOBILE */
}

.faq .faq-intro {
  padding-right: 45px;
  position: sticky;
  top: 120px;
}

.faq .faq-intro .faq-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #DB0626;
}

.faq .faq-intro .faq-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DB0626;
}

.faq .faq-intro h2 {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #202020;
}

.faq .faq-intro p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.faq .faq-intro .faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #202020;
  text-decoration: none;
}

.faq .faq-intro .faq-link i {
  color: #DB0626;
  transition: transform .2s ease;
}

.faq .faq-intro .faq-link:hover {
  color: #202020;
}

.faq .faq-intro .faq-link:hover i {
  transform: translateX(4px);
}

.faq .faq-list {
  border-top: 1px solid #ddd;
}

.faq .faq-item {
  border-bottom: 1px solid #ddd;
}

.faq .faq-item.active .faq-question {
  color: #DB0626;
}

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

.faq .faq-item.active .faq-answer {
  display: block;
}

.faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 5px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #202020;
  cursor: pointer;
  transition: color .2s ease;
}

.faq .faq-question i {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: #DB0626;
  transition: transform .25s ease;
}

.faq .faq-question:hover {
  color: #DB0626;
}

.faq .faq-answer {
  display: none;
  max-width: 680px;
  padding: 0 45px 25px 5px;
}

.faq .faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.faq .faq-answer .faq-answer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #DB0626;
  text-decoration: none;
}

.faq .faq-answer .faq-answer-link i {
  transition: transform .2s ease;
}

.faq .faq-answer .faq-answer-link:hover {
  color: #9D0E17;
}

.faq .faq-answer .faq-answer-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .faq .faq-intro {
    position: static;
    padding-right: 0;
    margin-bottom: 50px;
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  .faq .faq-intro h2 {
    font-size: 34px;
  }
  .faq .faq-question {
    padding: 20px 0;
    font-size: 16px;
  }
  .faq .faq-answer {
    padding-left: 0;
    padding-right: 25px;
  }
}

/*--------------------------------------------------------------
# Kontakt Section
--------------------------------------------------------------*/
.kontakt {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: #DB0626;
  color: #fff;
  /* LARGE T */
  /* MAIN CTA */
  /* BUTTONS */
  /* CONTACT BOX */
  /* MOBILE */
}

.kontakt .kontakt-t {
  position: absolute;
  right: -30px;
  bottom: -100px;
  width: 430px;
  opacity: .16;
  pointer-events: none;
}

.kontakt .kontakt-t img {
  display: block;
  width: 100%;
  height: auto;
}

.kontakt .container {
  position: relative;
  z-index: 2;
}

.kontakt .kontakt-content {
  max-width: 700px;
  padding-bottom: 70px;
}

.kontakt .kontakt-content .kontakt-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #FBD9CF;
}

.kontakt .kontakt-content h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: #fff;
}

.kontakt .kontakt-content p {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.kontakt .kontakt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kontakt .kontakt-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.kontakt .kontakt-actions .btn-light {
  background: #fff;
  border: 1px solid #fff;
  color: #DB0626;
}

.kontakt .kontakt-actions .btn-light:hover {
  background: #FBD9CF;
  border-color: #FBD9CF;
  color: #9D0E17;
}

.kontakt .kontakt-actions .btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.kontakt .kontakt-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.kontakt .kontakt-box {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

.kontakt .kontakt-box .kontakt-box-title {
  display: block;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.kontakt .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.kontakt .contact-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.kontakt .contact-item .contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBD9CF;
  color: #DB0626;
  border-radius: 3px;
}

.kontakt .contact-item .contact-icon i {
  font-size: 18px;
}

.kontakt .contact-item .contact-label-small {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.65);
}

.kontakt .contact-item a,
.kontakt .contact-item > div > span:last-child {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
}

.kontakt .contact-item a:hover {
  color: #FBD9CF;
}

@media (max-width: 991px) {
  .kontakt {
    padding-top: 80px;
  }
  .kontakt .kontakt-content {
    padding-bottom: 50px;
  }
  .kontakt .kontakt-content h2 {
    font-size: 40px;
  }
  .kontakt .kontakt-box {
    max-width: 600px;
  }
  .kontakt .kontakt-t {
    width: 320px;
    right: -70px;
    bottom: -60px;
  }
}

@media (max-width: 576px) {
  .kontakt {
    padding: 70px 0 55px;
  }
  .kontakt .kontakt-content h2 {
    font-size: 34px;
  }
  .kontakt .kontakt-content p {
    font-size: 15px;
  }
  .kontakt .kontakt-actions {
    flex-direction: column;
  }
  .kontakt .kontakt-actions .btn {
    width: 100%;
  }
  .kontakt .kontakt-box {
    padding: 24px;
  }
  .kontakt .kontakt-t {
    width: 240px;
    right: -70px;
    bottom: -30px;
    opacity: .12;
  }
}
