:root {
  --default-font: "Montserrat", 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: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #05071e;
  --default-color: #e8e7f7;
  --heading-color: #ffffff;
  --accent-color: #524dd3;
  --surface-color: #131428;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #c8c6e3;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #03051f;
  --nav-dropdown-background-color: #1f2240;
  --nav-dropdown-color: #c8c6e3;
  --nav-dropdown-hover-color: #ffffff;
}

/* Color Presets */
.light-background {
  --background-color: #0c114a;
  --surface-color: #131b76;
}

.dark-background {
  --background-color: #01020e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/* General Styling */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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);
}


/* 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: var(--nav-color);
    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;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-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-hover-color);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: white;
    font-size: 28px;
    line-height: 0;
    margin-right: 5px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 100px 10px 10px 10px;
    padding: 20px 0;
    margin: 0;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--accent-color) !important;
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navmenu a:last-child {
    border-bottom: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(5, 54, 89, 0.1);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    background-color: rgba(5, 54, 89, 0.05);
  }

  .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(0, 0, 0, 0.5);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Global Header - tło w kolorze loga, białe napisy */
.header {
  position: sticky;
  top: 20px;
  background-color: transparent;
  padding: 30px 0;
  transition: all 0.3s ease;
  z-index: 997;
}

.header .header-container {
  background: var(--accent-color, #053659);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

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

.header .logo .logo-img {
  max-height: 40px;
  width: auto;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
  white-space: nowrap;
  padding: 10px 12px;
}

.navmenu li:last-child {
  padding-right: 0;
}

.navmenu a {
  color: white;
  font-size: 15px;
  padding: 0 2px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  opacity: 0.9;
}

.navmenu a:hover {
  opacity: 1;
  color: white;
}

.navmenu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: white;
  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: white;
  opacity: 1;
}

.lang-item {
  margin-left: 10px !important;
  padding: 5px 0 5px 10px !important;
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: transparent;
}

.lang-link:before {
  display: none !important;
}

.lang-link .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s ease;
}

.lang-link:hover .flag-icon {
  border-color: white;
}

/* TOP BAR V2 - usunięta dolna linia */
.top-bar-v2 {
  background-color: var(--accent-color, #053659);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 998;
}

.top-bar-v2.hidden {
  transform: translateY(-100%);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-left i {
  color: white;
  font-size: 18px;
}

.top-bar-left span {
  color: white;
  font-weight: 400;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right i {
  color: white;
  font-size: 18px;
}

.top-bar-right span {
  color: white;
  font-weight: 600;
}

/* Responsywność */
@media (max-width: 1200px) {
  .header {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 15px;
  }

  .logo {
    order: 1;
  }

  .navmenu {
    order: 3;
  }
  
  .lang-item {
    margin-left: 0 !important;
  }
}

@media (max-width: 992px) {
  .top-bar-left span {
    font-size: 12px;
  }
  
  .top-bar-right span {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .top-bar-v2 .container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .top-bar-left, .top-bar-right {
    width: 100%;
    justify-content: center;
  }
  
  .navmenu li {
    padding: 0;
  }
  
  .navmenu a {
    color: var(--accent-color) !important;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navmenu a:last-child {
    border-bottom: none;
  }
  
  .lang-item {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .lang-link {
    justify-content: flex-start;
    padding: 12px 20px !important;
  }
  
  .lang-link .flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

@media (max-width: 576px) {
  .top-bar-v2 {
    padding: 5px 0;
  }
  
  .top-bar-left span,
  .top-bar-right span {
    font-size: 11px;
  }
  
  .header .logo .logo-img {
    max-height: 32px;
  }
  
  .header .header-container {
    padding: 5px 12px;
  }
}
/* Formularz w footerze - ZMNIEJSZONY */
.footer-form-v2 {
  background-color: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.footer-title-v2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
}

.footer-line-v2 {
  width: 180px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 22px;
  border-radius: 2px;
}

.form-group-v2 {
  margin-bottom: 16px;
}

.form-control-v2 {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 8px 0;
  background-color: transparent;
  font-size: 14px;
  color: #1e293b;
  transition: border-color 0.3s ease;
}

.form-control-v2:focus {
  outline: none;
  border-bottom-color: var(--accent-color, #053659);
}

.form-control-v2::placeholder {
  color: #999;
  font-weight: 300;
  font-size: 13px;
}

.form-check-v2 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0;
}

.form-check-v2 .form-check-input {
  width: 15px;
  height: 15px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  top: 2px;
}

.form-check-v2 .form-check-input:checked {
  background-color: var(--accent-color, #053659);
  border-color: var(--accent-color, #053659);
}

.form-check-v2 .form-check-label {
  color: #4a5568;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  flex: 1;
}

.btn-footer-v2 {
  width: 100%;
  background-color: var(--accent-color, #053659);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-footer-v2:hover {
  background-color: #0a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 54, 89, 0.3);
}

/* Footer główny - ZMNIEJSZONY */
.footer-v2 {
  background-color: var(--accent-color, #053659);
  color: white;
  padding: 45px 0 25px;
}

/* Kontakt - ZMNIEJSZONY */
.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-v2 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon-v2 {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon-v2 i {
  font-size: 28px;
  color: white;
}

.contact-text-v2 {
  flex: 1;
  color: white;
  line-height: 1.5;
  font-size: 20px;
}

.contact-text-v2 a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.contact-text-v2 a:hover {
  text-decoration: underline;
}

.contact-text-v2 strong {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.contact-text-v2 br {
  display: block;
  content: "";
  margin: 2px 0;
}

/* Footer bottom - ZMNIEJSZONY */
.footer-bottom-v2 {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-v2 img {
  max-height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.social-icons-v2 {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon-v2 {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-v2 i {
  font-size: 18px;
}

.social-icon-v2:hover {
  background-color: white;
  color: var(--accent-color, #053659);
  transform: translateY(-3px);
}

.footer-links-v2 {
  margin-bottom: 8px;
}

.footer-links-v2 a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links-v2 a:hover {
  text-decoration: underline;
}

.footer-copyright-v2 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Responsywność */
@media (max-width: 992px) {
  .footer-form-v2 {
    margin-top: 25px;
    padding: 20px;
  }
  
  .footer-bottom-v2 .col-lg-6:last-child {
    text-align: left !important;
    margin-top: 25px;
  }
  
  .contact-text-v2 {
    font-size: 18px;
  }
  
  .contact-text-v2 a {
    font-size: 18px;
  }
  
  .contact-text-v2 strong {
    font-size: 22px;
  }
  
  .contact-icon-v2 i {
    font-size: 24px;
  }
  
  .contact-icon-v2 {
    width: 32px;
    height: 32px;
  }
  
  .footer-title-v2 {
    font-size: 18px;
  }
  
  .footer-line-v2 {
    width: 160px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-v2 {
    padding: 35px 0 20px;
  }
  
  .footer-title-v2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-contact-v2 {
    gap: 15px;
  }
  
  .contact-text-v2 {
    font-size: 16px;
  }
  
  .contact-text-v2 a {
    font-size: 16px;
  }
  
  .contact-text-v2 strong {
    font-size: 18px;
  }
  
  .contact-icon-v2 i {
    font-size: 22px;
  }
  
  .contact-icon-v2 {
    width: 28px;
    height: 28px;
  }
  
  .footer-form-v2 {
    padding: 18px 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .footer-form-v2 form {
    width: 100%;
    max-width: 100%;
  }
  
  .form-group-v2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }
  
  .form-control-v2 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 7px 0;
    font-size: 13px;
  }
  
  .form-check-v2 {
    width: 100%;
    max-width: 100%;
    padding-right: 5px;
    box-sizing: border-box;
    margin: 15px 0;
  }
  
  .form-check-label {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 11px;
  }
  
  .btn-footer-v2 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .footer-v2 .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .footer-v2 .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .footer-v2 [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .social-icons-v2 {
    gap: 10px;
    margin-top: 12px;
  }
  
  .social-icon-v2 {
    width: 32px;
    height: 32px;
  }
  
  .social-icon-v2 i {
    font-size: 16px;
  }
  
  .footer-links-v2 a {
    font-size: 13px;
  }
  
  .footer-copyright-v2 {
    font-size: 12px;
  }
  
  .footer-bottom-v2 {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* Zabezpieczenia */
.footer-form-v2 {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-v2 {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* Global Sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

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

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

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

.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .section-title {
    padding-bottom: 35px;
  }
  .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 30px;
  }
  .section-title h2 {
    font-size: 28px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  padding: 120px 0;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero .hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-buttons {
    justify-content: center;
  }
}

.form-wrapper {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 40px;
  width: 400px;
  height: auto;
  bottom: 0;
  background-color: var(--accent-color);
  border-radius: 30px;
  z-index: -1;
  opacity: 1;
}

.form-card-custom {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -8px rgba(5, 54, 89, 0.3);
}

.form-card-custom:hover {
  box-shadow: 0 30px 60px -8px rgba(5, 54, 89, 0.4);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 1200px) {
  .form-card-custom {
    max-width: 380px;
  }
  
  .form-wrapper::before {
    width: 380px;
    right: 30px;
  }
}

@media (max-width: 992px) {
  .form-wrapper {
    justify-content: center;
  }
  
  .form-wrapper::before {
    display: none;
  }
  
  .form-card-custom {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .form-card-custom {
    max-width: 100%;
    padding: 20px !important;
  }
}

.form-group.underline-style {
  position: relative;
  margin-bottom: 1rem;
}

.form-group.underline-style .form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 0.5rem 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.form-group.underline-style .form-control:focus {
  border-bottom-color: var(--accent-color);
  outline: none;
}

.form-group.underline-style .form-control::placeholder {
  color: #999;
  font-weight: 300;
}

.form-check {
  margin: 15px 0;
}

.form-check .form-check-input {
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
}

.form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check .form-check-label {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.form-card-custom .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.form-card-custom .btn-primary:hover {
  background-color: #0a4b7a;
  border-color: #0a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 54, 89, 0.3);
}

.title-overline {
  width: 350px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .title-overline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* O Era Leasing Section */
#o-era-leasing {
  position: relative;
  background: white;
  padding: 100px 0;
  overflow-x: clip;
}

.blue-box {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(5, 54, 89, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blue-box p {
  color: white;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
}

.right-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.title-wrapper.desktop {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.outlined-title {
  background-color: white;
  padding: 15px 50px;
  border-radius: 100px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 10px 25px rgba(5, 54, 89, 0.1);
  display: inline-block;
  max-width: 100%;
}

.outlined-title h2 {
  color: var(--accent-color);
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.outlined-title h2 span {
  color: var(--accent-color);
  font-weight: 800;
}

.semi-circle-title.mobile {
  background-color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 100px;
  box-shadow: 0 15px 30px rgba(5, 54, 89, 0.25);
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.semi-circle-title.mobile h2 {
  color: white;
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  white-space: normal;
}

.semi-circle-title.mobile h2 span {
  color: white;
  font-weight: 800;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}

.images-grid .image-main,
.images-grid .image-secondary {
  height: 100%;
  min-height: 250px;
}

.images-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.images-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .blue-box {
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .title-wrapper.desktop {
    display: none;
  }
  
  .images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .images-grid .image-main,
  .images-grid .image-secondary {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .blue-box {
    padding: 25px;
  }
  
  .semi-circle-title.mobile h2 {
    font-size: 24px;
  }
  
  .images-grid .image-main,
  .images-grid .image-secondary {
    height: 200px;
  }
}

.btn-dowiedz-sie {
  display: inline-block;
  background-color: #053659;
  color: white;
  font-weight: 600;
  font-size: 26px;
  padding: 5px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-dowiedz-sie:hover {
  background-color: #0a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 54, 89, 0.3);
  color: white;
}

/* Financing Section - zmniejszona luka nad tytułem */
.financing-section {
  padding: 20px 0 100px 0;
  background-color: white;
}

.financing-section .section-title {
  text-align: center;
  margin-top: -70px;
  margin-bottom: 10px;
  padding-bottom: 30px;
}

.financing-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.financing-section .section-title .accent-text {
  color: #053659;
}

.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.financing-item {
  background-color: white;
  border: 2px solid #e9ecef;
  border-radius: 24px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.23);
  display: flex;
  flex-direction: column;
}

.financing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(5, 54, 89, 0.1);
  border-color: #053659;
}

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

.item-icon {
  width: 48px;
  height: 48px;
  background-color: #053659;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-icon i {
  font-size: 24px;
  color: white;
}

.item-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #053659;
  margin: 0;
  line-height: 1.3;
}

.item-text {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5568;
  margin: 0 0 20px 0;
}

.item-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: auto;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item-image:hover img {
  transform: scale(1.05);
}

.car-wide-card {
  width: 100%;
  background-color: white;
  border: 1px solid #053659;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(5, 54, 89, 0.1);
  transition: all 0.3s ease;
}

.car-wide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(5, 54, 89, 0.15);
}

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

.car-icon {
  width: 60px;
  height: 60px;
  background-color: #053659;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.car-icon i {
  font-size: 30px;
  color: white;
}

.car-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #053659;
  margin: 0;
}

.car-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  padding-right: 20px;
}

.car-images {
  display: flex;
  gap: 20px;
  height: 100%;
  min-height: 220px;
}

.car-image-item {
  flex: 1;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.car-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-image-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .financing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .car-wide-card {
    padding: 30px;
  }
  
  .car-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .car-text {
    text-align: center;
    padding-right: 0;
    margin-bottom: 25px;
  }
  
  .car-images {
    min-height: 180px;
  }
  
  .car-image-item {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .financing-section {
    padding: 20px 0 60px 0;
  }
  
  .financing-section .section-title h2 {
    font-size: 28px;
  }
  
  .financing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .item-header {
    gap: 12px;
  }
  
  .item-icon {
    width: 42px;
    height: 42px;
  }
  
  .item-icon i {
    font-size: 20px;
  }
  
  .item-header h3 {
    font-size: 18px;
  }
  
  .item-text {
    font-size: 13px;
  }
  
  .item-image {
    height: 160px;
  }
  
  .car-wide-card {
    padding: 25px;
  }
  
  .car-header h3 {
    font-size: 24px;
  }
  
  .car-text {
    font-size: 15px;
  }
  
  .car-images {
    flex-direction: column;
    gap: 15px;
  }
  
  .car-image-item {
    height: 200px;
  }
}

/* STANDARDS SECTION */
.standards-section {
  padding: 100px 0;
  background-color: white;
}

.standards-title {
  font-size: 49px;
  font-weight: 700;
  color: var(--accent-color, #053659);
  margin-bottom: 25px;
  line-height: 1.2;
}

.standards-text {
  font-size: 23px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.standards-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.standards-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CERTIFICATES SECTION */
.certificates-section {
  padding: 100px 0;
}

.certificates-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.certificate-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.certificate-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.certificate-icon i {
  font-size: 28px;
  color: var(--accent-color, #053659);
  line-height: 1;
}

.certificate-content {
  flex: 1;
}

.certificate-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color, #053659);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.certificate-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.certificates-image {
  width: 70%;
  border-radius: 24px;
  overflow: hidden;
  margin: auto;
}

.certificates-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .standards-title {
    font-size: 32px;
  }
  
  .standards-text {
    font-size: 16px;
  }
  
  .standards-image {
    margin-top: 30px;
  }
  
  .certificate-content h3 {
    font-size: 20px;
  }
  
  .certificate-content p {
    font-size: 15px;
  }
  
  .certificates-image {
    margin-top: 40px;
  }
}

/* PROCESS SECTION V2 */
.process-section-v2 {
  padding: 100px 0;
  background-color: white;
}

.process-big-box-v2 {
  background-color: var(--accent-color, #053659);
  border-radius: 40px;
  padding: 60px 40px;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 50px rgba(5, 54, 89, 0.25);
}

.process-big-title-v2 {
  font-size: 58px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1px;
}

.process-steps-v2 {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.process-step-v2 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number-wrapper-v2 {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number-v2 {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 1px solid var(--accent-color, #053659);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color, #053659);
}

.step-content-v2 {
  flex: 1;
}

.step-content-v2 h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color, #053659);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.step-line-v2 {
  width: 60px;
  height: 2px;
  background-color: var(--accent-color, #053659);
  margin-bottom: 15px;
  border-radius: 2px;
}

.step-content-v2 p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 992px) {
  .process-big-box-v2 {
    min-height: 400px;
    padding: 50px 30px;
    margin-bottom: 40px;
  }
  
  .process-big-title-v2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .process-section-v2 {
    padding: 60px 0;
  }
  
  .process-big-box-v2 {
    min-height: 300px;
    padding: 40px 20px;
  }
  
  .process-big-title-v2 {
    font-size: 42px;
  }
}

/* Why Us New Section - zmniejszona luka nad tytułem */
.why-us-new {
  padding: -20px 0 -100px 0;
  background-color: white;
}

.why-us-new .section-title {
  text-align: center;
  margin-top: -100px;
  margin-bottom: 10px;
}

.why-us-new .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.why-us-new .section-title span {
  color: #053659;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.why-card {
  background-color: #053659;
  border-radius: 24px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(5, 54, 89, 0.3);
}

.why-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.why-header .why-icon {
  flex-shrink: 0;
}

.why-header .why-icon i {
  font-size: 28px;
  color: white;
}

.why-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.why-card .why-line {
  width: 100%;
  height: 1px;
  background-color: white;
  margin-bottom: 15px;
  border-radius: 2px;
}

.why-card .why-text {
  font-size: 14px;
  line-height: 1.5;
  color: white;
  opacity: 0.9;
  margin: 0;
}

.why-card .small-print {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-style: italic;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
  .why-grid {
    gap: 15px;
  }
  
  .why-card {
    padding: 20px;
  }
  
  .why-header h4 {
    font-size: 16px;
  }
  
  .why-header .why-icon i {
    font-size: 24px;
  }
  
  .why-card .why-text {
    font-size: 13px;
  }
  
  .why-image {
    min-height: 350px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .why-us-new {
    padding: 20px 0 60px 0;
  }
  
  .why-us-new .section-title h2 {
    font-size: 28px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-card {
    padding: 25px;
  }
  
  .why-header h4 {
    font-size: 18px;
  }
  
  .why-header .why-icon i {
    font-size: 28px;
  }
  
  .why-image {
    min-height: 300px;
    margin-top: 25px;
  }
}

/* ========== HERO SECTION V3 ========== */
.hero-v3 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  padding: 60px 0 100px 0;
}

.hero-v3 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-v3 .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-v3 .hero-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-v3 .hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-v3 .hero-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero-v3 .hero-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero-v3 .hero-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.hero-v3 .hero-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-v3 .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-v3 .hero-buttons {
    justify-content: center;
  }
}

/* Formularz Hero V3 */
.form-wrapper-v3 {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.form-wrapper-v3::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 40px;
  width: 67%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 30px;
  z-index: -1;
  opacity: 1;
}

.form-card-custom-v3 {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -8px rgba(5, 54, 89, 0.3);
}

.form-card-custom-v3:hover {
  box-shadow: 0 30px 60px -8px rgba(5, 54, 89, 0.4);
  transition: box-shadow 0.3s ease;
}

.form-group-underline-v3 {
  position: relative;
  margin-bottom: 1rem;
}

.form-group-underline-v3 .form-control-v3 {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 0.5rem 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-group-underline-v3 .form-control-v3:focus {
  border-bottom-color: var(--accent-color);
  outline: none;
}

.form-group-underline-v3 .form-control-v3::placeholder {
  color: #999;
  font-weight: 300;
}

.form-check-v3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
}

.form-check-v3 .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  top: 2px;
}

.form-check-v3 .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-check-v3 .form-check-label {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}

.btn-primary-v3 {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.btn-primary-v3:hover {
  background-color: #0a4b7a;
  border-color: #0a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 54, 89, 0.3);
}

@media (max-width: 1200px) {
  .form-card-custom-v3 {
    max-width: 380px;
  }
  
  .form-wrapper-v3::before {
    width: 380px;
    right: 30px;
  }
}

@media (max-width: 992px) {
  .form-wrapper-v3 {
    justify-content: center;
  }
  
  .form-wrapper-v3::before {
    display: none;
  }
  
  .form-card-custom-v3 {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .form-card-custom-v3 {
    max-width: 100%;
  }
}

.title-overline {
  width: 350px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .title-overline {
    margin-left: auto;
    margin-right: auto;
  }
}