/**
* Template Name: Avilon - v4.6.0
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
  --nd-primary: #4884f7;
  --nd-primary-dark: #085588;
  --nd-gradient: linear-gradient(135deg, #4884f7, #085588);
  --nd-text: #333;
  --nd-text-light: #555;
  --nd-bg-subtle: #f8fafb;
  --nd-border: #eef2f7;
  --nd-radius-sm: 12px;
  --nd-radius-md: 20px;
  --nd-radius-lg: 24px;
  --nd-shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --nd-shadow-md: 0 8px 30px rgba(8,85,136,0.08);
  --nd-shadow-lg: 0 20px 60px rgba(8,85,136,0.12);
  --nd-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: var(--nd-text);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #4884f7;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #4884f7;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0;
  color: #111;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: linear-gradient(45deg, #4884f7, #085588);
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}
.back-to-top i {
  line-height: 0;
  font-size: 20px;
}
.back-to-top:focus {
  background: linear-gradient(45deg, #4884f7, #085588);
  color: #fff;
  outline: none;
}
.back-to-top:hover {
  background: #085588;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(45deg, #4884f7, #085588);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: linear-gradient(45deg, #4884f7, #085588);
  height: 70px;
  transition: all 0.5s;
}
#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #085588;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #085588;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #085588;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: linear-gradient(45deg, rgba(72, 132, 247, 0.8), rgba(8, 85, 136, 0.8)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}
@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-height: 640px) {
  #hero {
    height: 100vh;
  }
}
#hero .hero-text {
  position: absolute;
  left: 0;
  top: 90px;
  right: 0;
  bottom: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}
#hero h1,
#hero h2 {
  margin: 0 0 10px 0;
  padding: 0 15px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h1,
  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
#hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  padding: 0 15px;
  font-size: clamp(16px, 2.5vw, 22px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.hero-points li {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.8vw, 17px);
  position: relative;
  padding-left: 20px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  color: #fff;
  background: var(--nd-primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
#hero .btn-get-started:hover {
  color: #fff;
  background: #085588;
  border-color: #085588;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 40%;
}
#hero .product-screens img {
  box-shadow: none;
  border-radius: 8px 8px 0 0;
}
#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% - 500px);
  bottom: 0;
  top: 10px;
}
#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}
#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}
@media (max-width: 767px) {
  #hero .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #hero .product-screens .product-screen-2, #hero .product-screens .product-screen-3 {
    display: none;
  }
}

/* Hero animations */
#hero .hero-text h1,
#hero .hero-text h2 {
  animation: fadeInUp 0.8s ease-out;
}
#hero .hero-text p {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#hero .btn-get-started,
#hero .btn-secondary-hero {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.btn-secondary-hero {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-secondary-hero:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}
@media (min-width: 992px) {
  section {
    padding: 100px 0;
  }
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #111;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: var(--nd-text-light);
  font-style: normal;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-divider {
  display: none;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: linear-gradient(180deg, #f8fafb 0%, #f2f5f8 100%);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}
#about .about-img {
  height: 510px;
  overflow: hidden;
}
#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}
#about .content h2 {
  color: #111;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 12px;
}
#about .content p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
#about .content p:last-child {
  margin-bottom: 0;
}
/* removed - icons now handled by .about-usp-card__icon */

/* About USP Cards */
.about-usp-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(72, 132, 247, 0.1);
  border-radius: 16px;
  transition: all 0.4s var(--nd-ease);
  height: 100%;
}
.about-usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nd-shadow-md);
  border-color: rgba(72, 132, 247, 0.25);
}
.about-usp-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--nd-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-usp-card__icon i,
.about-usp-card__icon i:before {
  font-size: 1.2rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
.about-usp-card__text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  margin-bottom: 4px;
}
.about-usp-card__text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--nd-text-light);
}

/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 80px 0 60px 0;
  overflow: hidden;
}
#features .features-img {
  text-align: center;
  padding-top: 20px;
}
@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}
#features .features-img img {
  max-width: 100%;
}
#features .box {
  padding: 24px;
  border-radius: var(--nd-radius-md);
  transition: all 0.4s var(--nd-ease);
  background: #fff;
  border: 1px solid var(--nd-border);
  box-shadow: var(--nd-shadow-sm);
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}
#features .box:hover {
  transform: translateY(-8px);
  box-shadow: var(--nd-shadow-lg);
  border-color: rgba(72, 132, 247, 0.2);
}
#features .icon {
  flex-shrink: 0;
}
#features .icon-container {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0f6ff, #e0ecfd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--nd-ease);
}
#features .box:hover .icon-container {
  background: var(--nd-gradient);
  transform: scale(1.05);
}
#features .icon-container i {
  font-size: 24px;
  transition: 0.5s;
  background: var(--nd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#features .box:hover .icon-container i {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
#features .box-content {
  flex: 1;
  min-width: 0;
}
#features .title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.3;
}
#features .description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nd-text-light);
  margin-bottom: 0;
}
#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
section#advanced-features {
  overflow: hidden;
  padding: 0;
}
#advanced-features .features-row {
  padding: 60px 0;
}
#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 14px;
}
#advanced-features h3 {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  font-style: normal;
  color: #555;
  margin-bottom: 18px;
}
#advanced-features p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}
/* badge icons are white - no gradient text-fill */
#advanced-features .advanced-feature-img {
  width: 100%;
  border-radius: var(--nd-radius-md);
  box-shadow: var(--nd-shadow-lg);
  transition: transform 0.5s var(--nd-ease);
}
#advanced-features .advanced-feature-img:hover {
  transform: scale(1.02);
}
.advanced-feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.advanced-feature-header h2 {
  margin-bottom: 0;
}
.advanced-feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--nd-gradient);
}
.advanced-feature-badge i,
.advanced-feature-badge i:before {
  font-size: 1.5rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  float: none;
  padding: 0;
  line-height: 1;
}
@media (max-width: 991px) {
  #advanced-features .advanced-feature-img {
    margin-bottom: 30px;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
    background: linear-gradient(rgba(72, 132, 247, 0.8), rgba(8, 85, 136, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}
#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#call-to-action .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#call-to-action .cta-btn:hover {
  background: #4884f7;
  border: 2px solid #4884f7;
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 80px 0;
  overflow: hidden;
}
#more-features .box {
  padding: 40px 32px;
  margin-bottom: 30px;
  box-shadow: var(--nd-shadow-sm);
  background: #fff;
  transition: all 0.4s var(--nd-ease);
  height: 100%;
  border-radius: var(--nd-radius-md);
  border: 1px solid var(--nd-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#more-features .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--nd-shadow-lg);
}
#more-features .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--nd-gradient);
  border-radius: var(--nd-radius-md) var(--nd-radius-md) 0 0;
  transform: scaleX(0);
  transition: transform 0.4s var(--nd-ease);
  transform-origin: left;
}
#more-features .box:hover::after {
  transform: scaleX(1);
}
.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(72, 132, 247, 0.07);
  line-height: 1;
  pointer-events: none;
}
#more-features .icon {
  margin-bottom: 20px;
}
#more-features .icon .icon-container {
  width: 80px;
  height: 80px;
  border-radius: var(--nd-radius-md);
  background: linear-gradient(135deg, #f0f6ff, #e0ecfd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--nd-ease);
}
#more-features .box:hover .icon-container {
  background: var(--nd-gradient);
}
#more-features .icon-container i {
  font-size: 36px;
  transition: 0.5s;
  line-height: 0;
  background: var(--nd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#more-features .box:hover .icon-container i {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
#more-features h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}
#more-features h4 a {
  color: #111;
}
#more-features p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--nd-text-light);
}
@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}
#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}
#clients img:hover {
  opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
}
#pricing .box {
  padding: 40px 32px;
  margin-bottom: 30px;
  box-shadow: var(--nd-shadow-sm);
  background: #fff;
  text-align: center;
  border-radius: var(--nd-radius-md);
  border: 1px solid var(--nd-border);
  transition: all 0.4s var(--nd-ease);
}
#pricing .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--nd-shadow-lg);
}
#pricing h3 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 24px;
}
#pricing h4 {
  font-size: 48px;
  font-weight: 700;
  background: var(--nd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 12px 0 20px;
}
#pricing h4 sup {
  font-size: 20px;
  top: -10px;
}
#pricing h4 span {
  font-size: 18px;
  -webkit-text-fill-color: #999;
}
#pricing ul {
  padding: 0;
  list-style: none;
  color: var(--nd-text);
  text-align: left;
  line-height: 1.6;
  font-size: 15px;
}
#pricing ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
#pricing ul li:last-child {
  border-bottom: none;
}
#pricing ul i {
  color: #085588;
  font-size: 18px;
  padding-right: 4px;
}
#pricing .get-started-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  color: var(--nd-primary-dark);
  border: 2px solid var(--nd-primary-dark);
  background: transparent;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
#pricing .get-started-btn:hover {
  background: var(--nd-primary-dark);
  color: #fff;
  border-color: var(--nd-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 132, 247, 0.35);
}
#pricing .featured .get-started-btn {
  background: var(--nd-primary-dark);
  color: #fff;
  border-color: var(--nd-primary-dark);
}
#pricing .featured .get-started-btn:hover {
  background: var(--nd-primary);
  border-color: var(--nd-primary);
  box-shadow: 0 8px 30px rgba(72, 132, 247, 0.4);
  transform: translateY(-2px);
}
#pricing .featured {
  border: 2px solid var(--nd-primary);
  border-radius: var(--nd-radius-md);
  transform: scale(1.05);
  box-shadow: var(--nd-shadow-md);
}
/* featured pseudo-elements removed - using simple border */
.pricing-badge {
  background: var(--nd-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  padding: 60px 0;
  overflow: hidden;
}
#faq .faq-list {
  padding: 0;
  list-style: none;
}
#faq .faq-list li {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #4884f7;
  transition: 0.3s;
}
#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
#faq .faq-list .icon-show {
  display: none;
}
#faq .faq-list .collapsed {
  color: black;
}
#faq .faq-list .collapsed:hover {
  color: #4884f7;
}
#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/* Our Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  overflow: hidden;
}
#team .member {
  text-align: center;
  margin-bottom: 20px;
  border-radius: var(--nd-radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--nd-border);
  transition: all 0.4s var(--nd-ease);
  padding-bottom: 24px;
}
#team .member:hover {
  transform: translateY(-6px);
  box-shadow: var(--nd-shadow-lg);
}
#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--nd-radius-md) var(--nd-radius-md) 0 0;
}
#team .member .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--nd-ease);
}
#team .member:hover .pic img {
  transform: scale(1.05);
}
#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
#team .member .social {
  margin-top: 15px;
}
#team .member .social a {
  color: #b3b3b3;
}
#team .member .social a:hover {
  color: #4884f7;
}
#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Color card CTA */
.color-card__btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--nd-primary);
  border: 1.5px solid var(--nd-primary);
  transition: all 0.3s ease;
}
.color-card__btn:hover {
  background: var(--nd-gradient);
  color: #fff;
  border-color: transparent;
}

/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}
#gallery .container-fluid {
  padding: 0px;
}
#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}
#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}
#gallery .gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 2.5rem;
  color: #fff;
  opacity: 0;
  transition: all 0.4s var(--nd-ease);
  z-index: 2;
}
#gallery .gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#gallery .gallery-item img {
  transition: all 0.5s var(--nd-ease);
  width: 100%;
}
#gallery .gallery-item:hover img {
  transform: scale(1.08);
}
#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(8, 85, 136, 0.5);
}

/* Contact Section
--------------------------------*/
section#contact {
  background: linear-gradient(180deg, #fff 0%, var(--nd-bg-subtle) 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Contact info cards */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--nd-border);
  border-radius: var(--nd-radius-sm);
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: rgba(72, 132, 247, 0.25);
  box-shadow: var(--nd-shadow-sm);
}
.contact-info-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--nd-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-card__icon i,
.contact-info-card__icon i:before {
  font-size: 18px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
.contact-info-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.contact-info-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--nd-text-light);
}
.contact-info-card a {
  color: var(--nd-primary-dark);
  font-weight: 600;
}
.contact-info-card a:hover {
  color: var(--nd-primary);
}
.contact-info-card small {
  color: #999;
  font-size: 0.8rem;
}
.contact-social-icons {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.contact-social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--nd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nd-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}
.contact-social-icons a:hover {
  background: var(--nd-gradient);
  color: #fff;
  border-color: transparent;
}
#contact .form {
  background: #fff;
  padding: 32px;
  border-radius: var(--nd-radius-md);
  box-shadow: var(--nd-shadow-md);
  border: 1px solid var(--nd-border);
}
#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #085588;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #085588;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contact .php-email-form input, #contact .php-email-form textarea, #contact .php-email-form select {
  border-radius: 12px;
  box-shadow: none;
  font-size: 15px;
  padding: 14px 18px;
  border: 1.5px solid #e0e6ed;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contact .php-email-form input:focus, #contact .php-email-form textarea:focus, #contact .php-email-form select:focus {
  border-color: var(--nd-primary);
  box-shadow: 0 0 0 3px rgba(72, 132, 247, 0.1);
  outline: none;
}
#contact .php-email-form button[type=submit] {
  background: var(--nd-primary-dark);
  border: 0;
  border-radius: var(--nd-radius-sm);
  padding: 16px 40px;
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#contact .php-email-form button[type=submit]:hover {
  background: var(--nd-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(72, 132, 247, 0.35);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}
#footer .credits {
  font-size: 13px;
  color: #888;
}
#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}
#footer .footer-links a:first-child {
  padding-left: 0;
}
#footer .footer-links a:hover {
  color: #4884f7;
}

/*--------------------------------------------------------------
# Modern Additions - NauticDeck 2026
--------------------------------------------------------------*/

/* Trust Bar
--------------------------------*/
#trust-bar {
  background: linear-gradient(135deg, #085588 0%, #4884f7 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
#trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.trust-bar__item {
  padding: 10px 15px;
}
.trust-bar__number {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.trust-bar__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .trust-bar__number {
    font-size: 1.3rem;
  }
  .trust-bar__item {
    padding: 8px 10px;
  }
}

/* Comparison Cards
--------------------------------*/
section#comparison {
  padding: 30px 0 60px;
  background: #fff;
}
.comparison-card {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 0;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(8, 85, 136, 0.12);
}
.comparison-card--featured {
  border: 2px solid #4884f7;
  box-shadow: 0 8px 30px rgba(72, 132, 247, 0.15);
}
.comparison-card--featured:hover {
  box-shadow: 0 16px 50px rgba(72, 132, 247, 0.22);
}
.comparison-card__badge {
  background: linear-gradient(135deg, #4884f7, #085588);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  text-align: center;
  z-index: 2;
}
.comparison-card__header {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid #e8eef3;
}
.comparison-card--featured .comparison-card__header {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border-bottom: 2px solid #4884f7;
}
.comparison-card__header h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.comparison-card--featured .comparison-card__header h4 {
  color: #085588;
}
.comparison-card__header p {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0;
}
.comparison-card__list {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
}
.comparison-card__list li {
  padding: 11px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  border-bottom: 1px solid #f5f5f5;
  color: #444;
}
.comparison-card__list li:last-child {
  border-bottom: none;
}
.comparison-card__list li i {
  font-size: 0.9rem;
  margin-right: 8px;
}
.comparison-card__list li.is-positive i {
  color: #28a745;
}
.comparison-card__list li.is-positive {
  color: #333;
}
.comparison-card__list li.is-negative i {
  color: #dc3545;
}
.comparison-card__list li.is-negative {
  color: #888;
}
.comparison-card__list li.is-neutral i {
  color: #ffc107;
}
.comparison-card__list li.is-neutral {
  color: #888;
}
.comparison-card__btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  margin: 0 24px 24px;
  background: linear-gradient(135deg, #4884f7, #085588);
  color: #fff;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.comparison-card__btn:hover {
  background: linear-gradient(135deg, #085588, #063d62);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 85, 136, 0.3);
}

/* Comparison Warning Box */
.comparison-warning {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fffbf0, #fff8e6);
  border: 1px solid #ffe0a0;
  border-radius: 12px;
  padding: 28px;
  align-items: flex-start;
}
.comparison-warning__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-warning__icon i,
.comparison-warning__icon i:before {
  font-size: 1.4rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
.comparison-warning__content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.comparison-warning__content p {
  margin-bottom: 0;
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .comparison-warning {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

/* Testimonial Cards
--------------------------------*/
#testimonials {
  padding: 60px 0;
  background: #fff;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #e8eef3;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(8, 85, 136, 0.1);
}
.testimonial-card__stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}
.testimonial-card__quote {
  font-style: italic;
  color: #444;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 0.95rem;
}
.testimonial-card__role {
  font-size: 0.82rem;
  color: #999;
  margin-top: 2px;
}

/* Modern FAQ */
#faq .faq-list li {
  border-bottom: 1px solid #eef2f7;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 16px 20px;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
#faq .faq-list li:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
#faq .faq-list .question {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

/* CTA section modernization */
#call-to-action {
  background: linear-gradient(135deg, rgba(8, 85, 136, 0.92), rgba(72, 132, 247, 0.88)), url(../img/call-to-action-bg.jpg) fixed center center;
}
#call-to-action .cta-btn {
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
#call-to-action .cta-btn:hover {
  background: #fff;
  color: #085588;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent orphans and widows (single words on last line) */
p, li, h2, h3, h4, .description, .section-description,
.testimonial-card__quote, .comparison-warning__content p,
.about-quality-notice div, .cta-text {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* Selection color */
::selection {
  background: #4884f7;
  color: #fff;
}

/* Pricing highlight */
.pricing-highlight {
  color: #28a745;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9em;
  background: #f0fff4;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
}

/* About quality notice */
.about-quality-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border: 1px solid #c5d9f7;
  border-radius: 12px;
}
.about-quality-notice__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #4884f7, #085588);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-quality-notice__icon i,
.about-quality-notice__icon i:before {
  font-size: 1.3rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
.about-quality-notice div {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.about-quality-notice strong {
  color: #085588;
}
@media (max-width: 767px) {
  .about-quality-notice {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
}

/* Text highlight */
.text-highlight {
  color: #085588;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.text-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(72, 132, 247, 0.2);
  border-radius: 2px;
  z-index: -1;
}

/* FAQ contact links */
.faq-contact-link {
  color: #4884f7;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-contact-link:hover {
  color: #085588;
}
/* Etykieta nad polem wyboru biura — formularz wersji anglojezycznej */
#contact .php-email-form .form-label-office {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}
/* Naglowek biura wewnatrz karty kontaktowej */
.contact-info-card__office {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-primary-dark);
  margin-bottom: 4px;
}


/* ===== Przelacznik wersji jezykowych =====================================
   Flagi widoczne wprost w nawigacji, nie w rozwijanym menu — odwiedzajacy
   ma od razu widziec, w jakich jezykach dostepna jest strona. */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 22px;
}
.navbar .nav-lang > a,
.navbar .nav-lang > a:focus {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.navbar .nav-lang > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.navbar .nav-lang > a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}
/* Podkreslenie spod pozostalych pozycji menu nie dotyczy flag. */
.navbar .nav-lang > a:before {
  display: none;
}
.nav-lang__flag {
  display: block;
  width: 22px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  /* Obrys, zeby biale pole flagi nie znikalo na jasnym tle. */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
  opacity: 0.8;
  transition: opacity 0.25s ease;
}
.nav-lang > a.is-active .nav-lang__flag,
.nav-lang > a:hover .nav-lang__flag {
  opacity: 1;
}

/* Menu mobilne ma biale tlo — kolory trzeba odwrocic. */
.navbar-mobile .nav-lang {
  padding: 12px 20px;
  gap: 8px;
  border-top: 1px solid #eef1f5;
  margin-top: 6px;
}
.navbar-mobile .nav-lang > a,
.navbar-mobile .nav-lang > a:focus {
  padding: 8px 12px;
  color: #333333;
  background: #f4f6f9;
}
.navbar-mobile .nav-lang > a.is-active {
  color: #fff;
  background: var(--nd-primary-dark);
}
.navbar-mobile .nav-lang > a:hover {
  color: #085588;
  background: #e9edf3;
}


/* ===== Podstrona: naglowek nie lezy juz na hero =========================== */
body.page-sub #header.header-transparent {
  background: linear-gradient(45deg, #4884f7, #085588);
}
body.page-sub #main {
  padding-top: 110px;
}

/* ===== Strona Partnerzy =================================================== */
.partners-page {
  padding: 30px 0 80px;
}
.partners-page .section-title {
  font-size: 32px;
}

/* --- Mapa Polski --- */
.pl-map {
  position: relative;
  width: 100%;
  max-width: 672px;
  margin: 10px auto 0;
  /* proporcje kadru z tools/mapa.mjs */
  aspect-ratio: 700 / 664;
}
.pl-map__shape {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* Wojewodztwa rysowane pod spodem cienka kreska, granica panstwa mocniej —
   dzieki temu mapa czyta sie jako mapa, a nie sylwetka kraju. */
.pl-map__woj {
  fill: #eef3fb;
  stroke: #cfdcf0;
  stroke-width: 0.7;
  stroke-linejoin: round;
}
.pl-map__outline {
  fill: none;
  stroke: #9dbbe8;
  stroke-width: 1.8;
  stroke-linejoin: round;
}
.pl-map__pin {
  position: absolute;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-map__dot {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--nd-primary-dark);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
/* Delikatne tetnienie, zeby punkty bylo widac bez najezdzania. */
.pl-map__dot:before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--nd-primary);
  animation: pl-map-pulse 2.6s ease-out infinite;
}
@keyframes pl-map-pulse {
  0%   { transform: scale(0.6); opacity: 0.75; }
  100% { transform: scale(1.7); opacity: 0; }
}
.pl-map__pin:hover .pl-map__dot,
.pl-map__pin:focus-visible .pl-map__dot,
.pl-map__pin.is-active .pl-map__dot {
  transform: scale(1.45);
  background: #e8590c;
}
.pl-map__tip {
  position: absolute;
  bottom: 145%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #16181d;
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 5;
}
.pl-map__tip strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
.pl-map__tip small {
  font-size: 11px;
  opacity: 0.75;
}
.pl-map__tip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #16181d;
}
.pl-map__pin:hover .pl-map__tip,
.pl-map__pin:focus-visible .pl-map__tip,
.pl-map__pin.is-active .pl-map__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pl-map__hint {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: var(--nd-text-light);
}

/* --- Karty partnerow --- */
.partner-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--nd-border);
  border-radius: var(--nd-radius-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  scroll-margin-top: 110px;
}
.partner-card:hover,
.partner-card.is-active,
.partner-card:target {
  border-color: var(--nd-primary);
  box-shadow: 0 10px 28px rgba(72, 132, 247, 0.16);
  transform: translateY(-3px);
}
.partner-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.partner-card__city {
  font-size: 14px;
  color: var(--nd-primary-dark);
  font-weight: 600;
}
.partner-card__area {
  margin: 12px 0 14px;
  font-size: 14px;
  color: var(--nd-text-light);
}
.partner-card__services {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.partner-card__services li {
  font-size: 14px;
  padding: 3px 0;
  color: #444;
}
.partner-card__services i {
  color: var(--nd-primary);
  margin-right: 6px;
}
.partner-card__note {
  font-size: 13px;
  color: var(--nd-text-light);
  margin: 0 0 14px;
}
.partner-card__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partner-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--nd-radius-sm);
  background: #f4f7fc;
  color: var(--nd-primary-dark);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.partner-card__btn:hover {
  background: var(--nd-primary-dark);
  color: #fff;
}
.partner-card__btn--primary {
  background: var(--nd-primary-dark);
  color: #fff;
}

/* --- Bloki pod kartami --- */
.partners-cta,
.partners-join {
  padding: 28px;
  border-radius: var(--nd-radius-md);
  background: #f4f7fc;
  border: 1px solid var(--nd-border);
}
.partners-cta {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.partners-cta__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nd-primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.partners-cta h3,
.partners-join h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}
.partners-cta p,
.partners-join p {
  margin: 0;
  color: var(--nd-text-light);
  font-size: 15px;
}
.partners-cta__btn {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 26px;
  border-radius: var(--nd-radius-sm);
  background: var(--nd-primary-dark);
  color: #fff;
  font-weight: 600;
}
.partners-cta__btn:hover {
  background: var(--nd-primary);
  color: #fff;
}

@media (max-width: 575px) {
  .partners-cta {
    flex-direction: column;
  }
  .pl-map__tip {
    display: none;
  }
}

/* Szanujemy ustawienie systemowe: bez animacji, jesli uzytkownik ich nie chce. */
@media (prefers-reduced-motion: reduce) {
  .pl-map__dot:before {
    animation: none;
  }
  .partner-card,
  .pl-map__dot,
  .pl-map__tip {
    transition: none;
  }
}

/* Osoba kontaktowa pod nazwa firmy partnera */
.partner-card__person {
  font-size: 14px;
  color: var(--nd-text-light);
  margin-bottom: 4px;
}

/* Wyjasnienie zasad pomiaru na stronie Partnerzy */
.partners-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: var(--nd-radius-md);
  background: #fff8ed;
  border: 1px solid #f2d9b0;
}
.partners-note__icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #b3701a;
  line-height: 1.4;
}
.partners-note strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}
.partners-note p {
  margin: 0;
  font-size: 14px;
  color: var(--nd-text-light);
}


/* ===== Mapa Europy (wersje EN i HR) ====================================== */
.eu-map {
  position: relative;
  width: 100%;
  max-width: 672px;
  margin: 10px auto 0;
  /* proporcje kadru z tools/mapa-europa.mjs (768 x 805) */
  aspect-ratio: 768 / 805;
}
.eu-map__shape {
  display: block;
  width: 100%;
  height: 100%;
  /* obrysy siegaja poza kadr i sa przycinane clipPath — bez overflow:visible */
}
.eu-map__sea {
  fill: #f2f7fc;
}
/* Reszta kontynentu: tlo, nie tresc. */
/* Kazdy kraj to osobna sciezka, wiec obrys rysuje granice panstwowe.
   Cienka kreska: przy tej szczegolowosci grubsza zlewalaby male kraje.
   fill-rule evenodd, zeby enklawy (np. Watykan) zostaly dziurami. */
.eu-map__land {
  fill: #eef2f7;
  stroke: #dbe3ee;
  stroke-width: 0.8;
  stroke-linejoin: round;
  fill-rule: evenodd;
}
/* Polska: obecna, ale stonowana. */
.eu-map__poland {
  fill: #d3e1f5;
  stroke: #9fbce4;
  stroke-width: 1.1;
  stroke-linejoin: round;
  fill-rule: evenodd;
}
/* Chorwacja: glowny bohater tej mapy. */
.eu-map__croatia {
  fill: #e8590c;
  stroke: #a33d06;
  stroke-width: 1.1;
  stroke-linejoin: round;
  fill-rule: evenodd;
  filter: drop-shadow(0 3px 10px rgba(232, 89, 12, 0.4));
}
/* Znacznik jest punktem o zerowych wymiarach — inaczej translate(-50%)
   centrowaloby caly blok razem z etykieta i kropka ladowalaby obok miejsca,
   ktore ma wskazywac. Etykieta wisi pod kropka i nie przesuwa kotwicy. */
.eu-map__mark {
  position: absolute;
  width: 0;
  height: 0;
}
.eu-map__label {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
}
.eu-map__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.eu-map__mark--muted .eu-map__dot {
  width: 11px;
  height: 11px;
  background: #7d97bd;
}
.eu-map__mark--accent .eu-map__dot {
  width: 16px;
  height: 16px;
  background: #e8590c;
}
.eu-map__mark--accent .eu-map__dot:before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #e8590c;
  animation: eu-map-pulse 2.4s ease-out infinite;
}
@keyframes eu-map-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}
.eu-map__label strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #16181d;
  line-height: 1.2;
}
.eu-map__label small {
  font-size: 11.5px;
  color: var(--nd-text-light);
}
.eu-map__mark--accent .eu-map__label strong {
  font-size: 16px;
  color: #b8460a;
}

/* ===== Glowny blok partnera ============================================== */
.partner-hero {
  display: flex;
  gap: 26px;
  padding: 30px;
  border-radius: var(--nd-radius-md);
  background: linear-gradient(135deg, #fff7f1, #fffdfb);
  border: 1px solid #f4d3bd;
}
.partner-hero__flag {
  flex-shrink: 0;
  width: 66px;
}
.partner-hero__flag svg {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.partner-hero__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e8590c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.partner-hero h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111;
}
.partner-hero p {
  color: var(--nd-text-light);
  margin-bottom: 16px;
}
.partner-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.partner-hero__list li {
  padding: 3px 0;
  font-size: 15px;
}
.partner-hero__list i {
  color: #e8590c;
  margin-right: 8px;
}
.partner-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  margin-right: 10px;
  border-radius: var(--nd-radius-sm);
  background: #e8590c;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.25s ease;
}
.partner-hero__btn:hover {
  background: #c74a08;
  color: #fff;
}
.partner-hero__btn--ghost {
  background: transparent;
  color: #b8460a;
  border: 1.5px solid #e8b48c;
}
.partner-hero__btn--ghost:hover {
  background: #e8590c;
  color: #fff;
}

/* ===== Siec w Polsce: celowo drugoplanowa ================================ */
.partners-secondary__title {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.partners-secondary__lead {
  color: var(--nd-text-light);
  font-size: 15px;
  margin-bottom: 18px;
}
.partners-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partners-secondary__item {
  padding: 10px 16px;
  border-radius: var(--nd-radius-sm);
  background: #f6f8fb;
  border: 1px solid var(--nd-border);
  font-size: 14px;
}
.partners-secondary__item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #333;
}
.partners-secondary__item span {
  color: var(--nd-text-light);
  font-size: 13px;
}

@media (max-width: 767px) {
  .partner-hero {
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }
  .eu-map__label small {
    display: none;
  }
  .eu-map__label strong {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .eu-map__mark--accent .eu-map__dot:before {
    animation: none;
  }
}

/* ===== Mapa Europy: etykiety, linie prowadzace, animacje ================= */
/* Etykieta stoi po lewej, tuz za granica kraju; kotwiczy sie prawa krawedzia
   (dlatego pozycjonowana przez right), a linia prowadzaca laczy ja z kropka. */
.eu-map__box {
  position: absolute;
  transform: translateY(-50%);
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--nd-border);
  box-shadow: 0 6px 18px rgba(16, 40, 80, 0.12);
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}
.eu-map__box strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #16181d;
}
.eu-map__box small {
  display: block;
  font-size: 11.5px;
  color: var(--nd-text-light);
}
.eu-map__box em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--nd-primary-dark);
}
.eu-map__box--accent {
  border-color: #f0b58c;
  box-shadow: 0 8px 22px rgba(232, 89, 12, 0.22);
}
.eu-map__box--accent strong {
  color: #b8460a;
  font-size: 17px;
}
.eu-map__box:hover,
.eu-map__box.is-hot {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 26px rgba(16, 40, 80, 0.2);
}

/* Linia prowadzaca — swieci i rysuje sie przy wejsciu mapy w kadr. */
.eu-map__leader {
  stroke: #9db4d4;
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(125, 151, 189, 0.9));
  transition: stroke-dashoffset 1.1s ease 0.35s, stroke 0.3s ease;
}
.eu-map__leader--accent {
  stroke: #e8590c;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 7px rgba(232, 89, 12, 0.95));
  transition-delay: 0.55s;
}
.eu-map.is-in .eu-map__leader {
  stroke-dashoffset: 0 !important;
}

/* Kraje i znaczniki wjezdzaja miekko po wejsciu mapy w kadr. */
.eu-map__poland,
.eu-map__croatia {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.36, 0.64, 1), filter 0.3s ease, fill 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0.94);
}
.eu-map.is-in .eu-map__poland,
.eu-map.is-in .eu-map__croatia {
  opacity: 1;
  transform: scale(1);
}
.eu-map.is-in .eu-map__croatia {
  transition-delay: 0.15s;
}
.eu-map__poland.is-hot {
  fill: #c2d6f2;
}
.eu-map__croatia.is-hot {
  filter: drop-shadow(0 4px 16px rgba(232, 89, 12, 0.65));
}
.eu-map__mark,
.eu-map__box {
  opacity: 0;
}
.eu-map.is-in .eu-map__mark,
.eu-map.is-in .eu-map__box {
  opacity: 1;
  transition-delay: 0.9s;
}
.eu-map.is-in .eu-map__dot {
  animation: eu-dot-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s backwards;
}
@keyframes eu-dot-in {
  0%   { transform: translate(-50%, -50%) scale(0); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
.eu-map__dot {
  transition: transform 0.25s ease;
}
.eu-map__mark:hover .eu-map__dot,
.eu-map__mark.is-hot .eu-map__dot {
  transform: translate(-50%, -50%) scale(1.35);
}

/* ===== Kafelki polskich partnerow ======================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.partner-chip {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: var(--nd-radius-md);
  background: #fff;
  border: 1px solid var(--nd-border);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.partner-chip:hover,
.partner-chip:focus-visible {
  border-color: var(--nd-primary);
  box-shadow: 0 10px 26px rgba(72, 132, 247, 0.18);
  transform: translateY(-3px);
}
.partner-chip__name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #16181d;
}
.partner-chip__city {
  display: block;
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--nd-text-light);
}
.partner-chip__more {
  display: inline-block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nd-primary-dark);
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.partner-chip:hover .partner-chip__more {
  opacity: 1;
  transform: translateX(3px);
}

/* Sekcja podswietla sie na moment po kliknieciu kropki na mapie. */
.is-flash .partners-secondary__title,
.is-flash .partner-hero {
  animation: nd-flash 1.6s ease;
}
@keyframes nd-flash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 89, 12, 0); }
  25%      { box-shadow: 0 0 0 6px rgba(232, 89, 12, 0.22); }
}

/* ===== Okno z danymi partnera =========================================== */
.nd-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.nd-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 34, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nd-modal.is-open .nd-modal__backdrop {
  opacity: 1;
}
.nd-modal__panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  padding: 28px;
  border-radius: var(--nd-radius-md);
  background: #fff;
  box-shadow: 0 24px 60px rgba(10, 25, 50, 0.35);
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.nd-modal.is-open .nd-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nd-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f5f9;
  color: #55617a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.nd-modal__close:hover {
  background: #e3e9f2;
}
.partner-modal__name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #111;
}
.partner-modal__person {
  display: block;
  font-size: 14px;
  color: var(--nd-text-light);
}
.partner-modal__city {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nd-primary-dark);
}
.partner-modal__area {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--nd-text-light);
}
.partner-modal__services {
  display: block;
  margin: 14px 0 18px;
}
.partner-modal__services span {
  display: block;
  padding: 3px 0;
  font-size: 14px;
}
.partner-modal__services i {
  color: var(--nd-primary);
  margin-right: 7px;
}
.partner-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--nd-radius-sm);
  background: var(--nd-primary-dark);
  color: #fff;
  font-weight: 600;
}
.partner-modal__btn:hover {
  background: var(--nd-primary);
  color: #fff;
}

@media (max-width: 767px) {
  .eu-map__box small,
  .eu-map__box em { display: none; }
  .eu-map__box { padding: 5px 9px; }
  .eu-map__box strong { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .eu-map__poland,
  .eu-map__croatia,
  .eu-map__mark,
  .eu-map__box { opacity: 1; transform: none; transition: none; }
  .eu-map.is-in .eu-map__dot { animation: none; }
  .nd-modal__panel,
  .nd-modal__backdrop { transition: none; }
}

/* Atrybuty width/height na <img> sluza wylacznie do zarezerwowania proporcji,
   zanim obraz sie zaladuje — dzieki temu uklad nie skacze (Core Web Vitals).
   O realnym rozmiarze decyduje CSS, wiec neutralizujemy narzucona wysokosc.
   Atrybuty HTML maja najnizszy priorytet, wiec bardziej szczegolowe reguly
   arkusza dalej wygrywaja. */
img {
  max-width: 100%;
  height: auto;
}

/* ===== Baner zgody na cookies =========================================== */
.nd-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 18px 22px;
  border-radius: var(--nd-radius-md);
  background: #fff;
  border: 1px solid var(--nd-border);
  box-shadow: 0 12px 40px rgba(12, 28, 52, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.3s ease;
}
.nd-consent.is-in {
  opacity: 1;
  transform: translateY(0);
}
.nd-consent__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--nd-text-light);
}
.nd-consent__text a {
  color: var(--nd-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nd-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
/* Oba przyciski tej samej wielkosci: odrzucenie musi byc rownie latwe
   jak zgoda, inaczej zgoda nie jest dobrowolna. */
.nd-consent__btn {
  padding: 10px 22px;
  border: 1.5px solid var(--nd-primary-dark);
  border-radius: var(--nd-radius-sm);
  background: var(--nd-primary-dark);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nd-consent__btn:hover {
  background: var(--nd-primary);
  border-color: var(--nd-primary);
}
.nd-consent__btn--ghost {
  background: transparent;
  color: var(--nd-primary-dark);
}
.nd-consent__btn--ghost:hover {
  background: #eef3fa;
  color: var(--nd-primary-dark);
}
.nd-consent__btn:focus-visible {
  outline: 2px solid var(--nd-primary);
  outline-offset: 2px;
}

@media (max-width: 575px) {
  .nd-consent { padding: 16px; }
  .nd-consent__actions { width: 100%; }
  .nd-consent__btn { flex: 1; padding: 11px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .nd-consent { transition: none; }
}

/* ===== Stopka: dane rejestrowe ========================================== */
.footer-legal {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
}

/* ===== Strona tekstowa (polityka prywatnosci, 404) ====================== */
.doc-page {
  padding: 40px 0 80px;
}
.doc-page__body {
  max-width: 760px;
}
.doc-page__body h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 10px;
  color: #111;
}
.doc-page__body h2:first-child {
  margin-top: 0;
}
.doc-page__body p,
.doc-page__body li {
  color: var(--nd-text-light);
  font-size: 15.5px;
  line-height: 1.7;
}
.doc-page__body p {
  margin: 0 0 12px;
}
.doc-page__body ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.doc-page__body li {
  margin-bottom: 6px;
}
.doc-page__body strong {
  color: #333;
}
.doc-page__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 18px;
  font-size: 14.5px;
}
.doc-page__body th,
.doc-page__body td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--nd-border);
  vertical-align: top;
  color: var(--nd-text-light);
}
.doc-page__body th {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #333;
}
.doc-page__meta {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--nd-border);
  font-size: 13.5px;
  color: var(--nd-text-light);
}

/* ===== Strona 404 ======================================================= */
.err-page {
  padding: 60px 0 90px;
  text-align: center;
}
.err-page__code {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(64px, 12vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--nd-primary);
  opacity: 0.28;
}
.err-page__lead {
  max-width: 520px;
  margin: 14px auto 26px;
  color: var(--nd-text-light);
}
.err-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.err-page__links a {
  padding: 11px 24px;
  border-radius: var(--nd-radius-sm);
  background: #f4f7fc;
  color: var(--nd-primary-dark);
  font-weight: 600;
  font-size: 15px;
}
.err-page__links a:first-child {
  background: var(--nd-primary-dark);
  color: #fff;
}
.err-page__links a:hover {
  background: var(--nd-primary);
  color: #fff;
}

/* ===== Zaslona mapy (laduje sie dopiero na zadanie) ===================== */
.nd-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 300px;
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--nd-border);
  border-radius: var(--nd-radius-md);
  background: #f6f8fb;
}
.nd-map.is-loaded {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
}
.nd-map__notice {
  margin: 0;
  max-width: 46ch;
  font-size: 14px;
  color: var(--nd-text-light);
}
.nd-map__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 0;
  border-radius: var(--nd-radius-sm);
  background: var(--nd-primary-dark);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.nd-map__btn:hover { background: var(--nd-primary); }
.nd-map__btn:focus-visible { outline: 2px solid var(--nd-primary); outline-offset: 2px; }

/* ===== Tabela porownawcza materialow ====================================
   Zwykla tabela z doc-page wyglada jak zalacznik do umowy. Ta ma sprzedawac:
   kolumna z naszym produktem jest wyrozniona kolorem i grubsza czcionka,
   ocena kazdej cechy dostaje ikone, a caly blok przewija sie w poziomie
   na waskich ekranach zamiast rozpychac strone. */
.nd-compare-wrap {
  overflow-x: auto;
  border-radius: var(--nd-radius-md);
  box-shadow: var(--nd-shadow-md);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.nd-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}
.nd-compare th,
.nd-compare td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--nd-border);
}
.nd-compare thead th {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nd-text);
  background: #f6f8fb;
  white-space: nowrap;
}
.nd-compare thead th:first-child {
  background: #fff;
}
/* Kolumna z naszym produktem: wyrozniona przez caly pion tabeli. */
.nd-compare thead th.is-us {
  background: var(--nd-gradient);
  color: #fff;
  font-size: 14px;
}
.nd-compare td.is-us {
  background: #f2f7ff;
  font-weight: 600;
  color: #16324d;
}
.nd-compare tbody tr:last-child td {
  border-bottom: 0;
}
.nd-compare tbody tr:hover td {
  background: #fafbfd;
}
.nd-compare tbody tr:hover td.is-us {
  background: #e9f1ff;
}
.nd-compare__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  white-space: nowrap;
}
.nd-compare i {
  margin-right: 7px;
  font-size: 15px;
  vertical-align: -1px;
}
.nd-compare i.is-yes { color: #17a673; }
.nd-compare i.is-no  { color: #d9534f; }
.nd-compare i.is-mid { color: #d99a2b; }
.nd-compare__price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.nd-compare__hint {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--nd-text-light);
  text-align: center;
}
@media (max-width: 767px) {
  .nd-compare th,
  .nd-compare td { padding: 12px 14px; font-size: 14px; }
}

/* ===== Wyrozniony Partner ==============================================
   Wyroznienie opisowe, nie stopniowe: plakietka mowi o zakresie uslug,
   a nie o miejscu w rankingu. Pozostale karty zostaja bez zmian, wiec
   nie wygladaja na gorsze — po prostu nie maja tej etykiety. */
.partner-card.is-featured {
  position: relative;
  border: 1.5px solid #e8590c;
  background: linear-gradient(135deg, #fff7f1, #ffffff 55%);
  box-shadow: 0 12px 32px rgba(232, 89, 12, 0.2);
}
/* Hover kart jest niebieski, wiec wyroznienie MUSI trzymac swoj kolor —
   inaczej wyglada jak zwykly stan najechania, a nie wyroznienie. */
.partner-card.is-featured:hover,
.partner-card.is-featured.is-active,
.partner-card.is-featured:target {
  border-color: #c74a08;
  box-shadow: 0 16px 38px rgba(232, 89, 12, 0.28);
}
.partner-card.is-featured .partner-card__city {
  color: #b8460a;
}
.partner-card.is-featured .partner-card__services i {
  color: #e8590c;
}
.partner-card.is-featured .partner-card__btn:hover {
  background: #c74a08;
}
.partner-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 13px;
  border-radius: 999px;
  background: #e8590c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.partner-chip.is-featured {
  border-color: #e8590c;
  background: linear-gradient(135deg, #fff7f1, #ffffff 55%);
  box-shadow: 0 8px 22px rgba(232, 89, 12, 0.18);
}
.partner-chip.is-featured:hover {
  border-color: #c74a08;
  box-shadow: 0 12px 28px rgba(232, 89, 12, 0.24);
}
.partner-chip.is-featured .partner-chip__name:after {
  content: "★";
  margin-left: 7px;
  font-size: 12px;
  color: #e8590c;
  vertical-align: 2px;
}

/* ===== Wyrozniona pinezka na mapie Polski ==============================
   Ten sam kolor akcentu co karta partnera, zeby powiazanie mapa-karta bylo
   czytelne od razu. Poswiata delikatna: znacznik ma sie wyroznic, a nie
   swiecic jak alarm. */
.pl-map__pin.is-featured .pl-map__dot {
  width: 15px;
  height: 15px;
  background: #e8590c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28),
              0 0 10px 2px rgba(232, 89, 12, 0.5);
}
.pl-map__pin.is-featured .pl-map__dot:before {
  border-color: #e8590c;
}
/* Hover pozostalych pinezek robi sie pomaranczowy, wiec wyrozniona musi
   isc ciemniej — inaczej najechanie na sasiada wyglada tak samo. */
.pl-map__pin.is-featured:hover .pl-map__dot,
.pl-map__pin.is-featured.is-active .pl-map__dot {
  background: #c74a08;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28),
              0 0 16px 4px rgba(232, 89, 12, 0.7);
}
