ij to:root{
  --cream: #f7f2e8;
  --brand-900: #004731;
  --brand-500: #2f7c5e;
  --text-900: #1f2a24;
  --text-700: #5b6b62;
}


.contact-section{
  background: var(--cream);
  padding: 86px 0 82px !important;
  position: relative;
  overflow: hidden;
}

/* Dekoracyjne kształty w tle */
.contact-section::before{
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(158,194,166,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* HEADER */
.contact-header{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.contact-head-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.contact-chapter{
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 6px;
  border: 1px solid rgba(0, 71, 49, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-900);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.contact-eyebrow{
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #6f8f86;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.team-header{
  max-width: 760px;
  margin: 0 auto 60px;
}

.team-header .contact-head-row{
  margin-bottom: 16px;
}

.team-header .contact-chapter{
  background: rgba(255, 255, 255, 0.72);
}

.team-header .contact-eyebrow{
  color: rgba(80, 49, 32, 0.76);
}

.team-header .contact-eyebrow::after{
  background: linear-gradient(90deg, rgba(80, 49, 32, 0.32), rgba(158, 194, 166, 0.62));
}

.contact-header h1{
  font-size: 52px;
  color: var(--brand-900);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-header p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-700);
}

/* WRAPPER - 2 COLUMNS */
.contact-wrapper{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* ===== INFO CARD (LEFT) ===== */
.contact-info-card{
  background: linear-gradient(135deg, var(--brand-900) 0%, #003d27 100%);
  color: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,71,49,0.12);
  position: sticky;
  top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,71,49,0.18);
}

.info-box-title h3{
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

.info-box-title p{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(158,194,166,0.25);
}

/* INFO ITEMS */
.info-items{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.info-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.info-item:hover{
  background: rgba(158,194,166,0.15);
  border-color: rgba(158,194,166,0.35);
  transform: translateX(4px);
}

.info-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(158,194,166,0.25);
  border-radius: 10px;
  color: #9EC2A6;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon{
  background: rgba(158,194,166,0.4);
  transform: scale(1.05);
}

.info-icon svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.info-text{
  flex: 1;
  min-width: 0;
}

.info-label{
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-weight: 600;
}

.info-text p{
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.info-arrow{
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  font-size: 18px;
  align-self: center;
}

.info-item:hover .info-arrow{
  opacity: 1;
  transform: translateX(0);
}

/* SOCIAL */
.info-social{
  padding-top: 35px;
  border-top: 1px solid rgba(158,194,166,0.25);
}

.social-label{
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-weight: 600;
}

.social-icons{
  display: flex;
  gap: 12px;
}

.social-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(158,194,166,0.3);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
}

.social-icon:hover{
  background: rgba(158,194,166,0.3);
  border-color: #9EC2A6;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(158,194,166,0.2);
}

/* ===== FORM (RIGHT) ===== */
.contact-form-wrapper{
  width: 100%;
}

#probki{
  scroll-margin-top: 100px;
}

.contact-form{
  width: 100%;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group{
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width{
  grid-column: 1 / -1;
}

.form-group label{
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-900);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.form-required-note{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 1.25rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-700);
}

.contact-form .form-label{
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

.contact-form .form-label__star{
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  color: #b85c5c;
  opacity: 0.9;
  transform: translateY(-1px);
}

.contact-form .form-label__name{
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-900);
}

.contact-form .form-label__req{
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #8a6f6f;
}

.form-group input,
.form-group textarea,
.form-group select{
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-900);
  background: #fff;
  transition: all 0.3s ease;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: #999;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline: none;
  border-color: var(--brand-500);
  background: #fafbfa;
  box-shadow: 0 0 0 4px rgba(158,194,166,0.12);
}

.form-group textarea{
  resize: vertical;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.form-group select{
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004731' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

/* ERROR MESSAGE */
.form-error{
  display: none;
  font-size: 12px;
  color: #a84848;
  margin-top: 8px;
  font-weight: 500;
}

.contact-form.form--submit-invalid .form-group--invalid input,
.contact-form.form--submit-invalid .form-group--invalid textarea{
  border-color: rgba(168, 72, 72, 0.55);
  background: linear-gradient(180deg, #fffdfd 0%, #fff6f6 100%);
  box-shadow:
    0 0 0 1px rgba(168, 72, 72, 0.28),
    0 0 0 4px rgba(168, 72, 72, 0.07),
    inset 0 1px 2px rgba(168, 72, 72, 0.04);
}

.contact-form.form--submit-invalid .form-group--invalid .form-error,
.contact-form.form--submit-invalid .checkbox-wrapper--invalid .form-error{
  display: block;
}

.contact-form.form--submit-invalid .checkbox-wrapper--invalid .checkbox{
  border-color: rgba(168, 72, 72, 0.42);
  background: linear-gradient(180deg, #fffdfd 0%, #fff6f6 100%);
  box-shadow:
    0 0 0 1px rgba(168, 72, 72, 0.22),
    0 0 0 4px rgba(168, 72, 72, 0.07);
}

/* CHECKBOX */
.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(158,194,166,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
}

.checkbox:hover{
  background: rgba(158,194,166,0.12);
  border-color: rgba(158,194,166,0.3);
}

.checkbox input{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-500);
  flex-shrink: 0;
}

.checkbox span{
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-700);
}

/* SUBMIT BUTTON */
.btn-contact{
  width: 100%;
  padding: 16px 32px;
  background: var(--brand-900);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(0,71,49,0.12);
  position: relative;
  overflow: hidden;
}

.btn-contact::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-contact:hover{
  background: #003d27;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-contact:hover::before{
  opacity: 1;
}

.btn-contact:active{
  transform: translateY(0);
}

.btn-text{
  position: relative;
  z-index: 1;
}

.btn-icon{
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  font-size: 18px;
}

.btn-contact:hover .btn-icon{
  transform: translateX(3px);
}

/* DISCLAIMER */
.contact-disclaimer{
  font-size: 12px;
  color: var(--text-700);
  text-align: center;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .contact-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card{
    position: relative;
    top: 0;
    padding: 40px;
  }

  .contact-header h1{
    font-size: 42px;
  }
}

@media (max-width: 768px){
  .contact-section{
    padding-top: calc(var(--mobile-header-height, 60px) + 1.25rem) !important;
    padding-bottom: 56px !important;
  }

  .contact-section::before{
    top: -150px;
    right: -150px;
    width: 250px;
    height: 250px;
  }

  .contact-header{
    margin-bottom: 50px;
  }

  .contact-head-row{
    gap: 10px;
    margin-bottom: 14px;
  }

  .contact-chapter{
    padding: 7px 10px;
    font-size: 10px;
  }

  .contact-eyebrow{
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .contact-header h1{
    font-size: 32px;
  }

  .contact-header p{
    font-size: 15px;
  }

  .contact-wrapper{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card{
    order: 2;
    padding: 30px;
  }

  .contact-form-wrapper{
    order: 1;
  }

  .form-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-box-title h3{
    font-size: 22px;
  }

  .info-item{
    padding: 14px;
    gap: 12px;
  }

  .btn-contact{
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .contact-header h1{
    font-size: 26px;
  }

  .contact-header p{
    font-size: 14px;
  }

  .contact-info-card{
    padding: 24px;
  }

  .info-box-title h3{
    font-size: 20px;
  }

  .form-group label{
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select{
    padding: 12px 14px;
    font-size: 13px;
  }

  .checkbox{
    padding: 12px;
    gap: 10px;
  }

  .checkbox span{
    font-size: 12px;
  }
}
/* ===== CHECKBOX FIX ===== */
.checkbox-wrapper{
  margin-bottom: 8px !important;
}

.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
  padding: 14px;
  border-radius: 10px;
  background: rgba(158,194,166,0.06);
  border: 1px solid rgba(158,194,166,0.15);
  transition: all 0.3s ease;
}

.checkbox:hover{
  background: rgba(158,194,166,0.12);
  border-color: rgba(158,194,166,0.3);
}

.checkbox:has(input:checked){
  background: rgba(158,194,166,0.18);
  border-color: var(--brand-500);
}

.checkbox input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-500);
  flex-shrink: 0;
  appearance: auto;
}

.checkbox input[type="checkbox"]:focus-visible{
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.checkbox span{
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-700);
}

/* ===== HIDE WOOD SELECT ===== */
.contact-form .form-group:has(#contact-wood),
.contact-form .form-group:has(select){
  display: none !important;
}
/* ===== FORM MESSAGES ===== */
.form-message{
    display: none;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.form-message-success{
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error{
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-bottom{
	position: relative;
	padding: 96px 0 120px;
	background:
		radial-gradient(1200px 560px at 8% -12%, #fffdf7 0%, transparent 58%),
		radial-gradient(1000px 520px at 100% 0%, #efe1ca 0%, transparent 60%),
		linear-gradient(180deg, #f9f2e7 0%, #f2e6d3 100%);
	overflow: hidden;
}

.contact-bottom__head{
	text-align: center;
	max-width: 760px;
	margin: 0 auto 38px;
}

.contact-bottom__head .contact-head-row{
	justify-content: center;
	margin-bottom: 16px;
}

.contact-bottom__head .contact-chapter{
	background: rgba(255, 255, 255, 0.68);
}

.contact-bottom__head .contact-eyebrow{
	color: rgba(11, 99, 71, 0.82);
}

.contact-bottom__eyebrow{
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #0b6347;
	margin-bottom: 10px;
}

.contact-bottom__head h2{
	margin: 0 0 10px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.15;
	color: #004731;
}

.contact-bottom__head p{
	margin: 0;
	color: #5e6f65;
	line-height: 1.6;
}

.contact-bottom__grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-bottom-card{
	background: #fff;
	border: 1px solid #e1e7e3;
	border-radius: 14px;
	padding: 26px;
	box-shadow: 0 10px 26px rgba(0, 71, 49, 0.08);
}

.contact-bottom-card h3{
	margin: 0 0 14px;
	font-size: 24px;
	color: #004731;
}

.contact-steps,
.contact-points{
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	color: #3e4f46;
	line-height: 1.55;
}

.contact-steps li,
.contact-points li{
	padding: 10px 12px;
	border-radius: 10px;
	background: #f5faf7;
	border: 1px solid #e4ece7;
}

@media (max-width: 900px){
	.contact-bottom__grid{
		grid-template-columns: 1fr;
	}
}
.contact-bottom__head p{
	margin: 0 auto;
	max-width: 62ch;
	color: #4f5f6d;
	line-height: 1.7;
}

.contact-bottom__grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.contact-bottom-card{
	background: #fffaf1;
	border: 1px solid #e5d7c3;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 12px 28px rgba(67, 45, 21, 0.08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-bottom-card:hover{
	transform: translateY(-2px);
	border-color: #d9c8ae;
	box-shadow: 0 16px 34px rgba(67, 45, 21, 0.12);
}

.contact-bottom-card h3{
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.2;
	color: #004731;
}

/* KROKI */
.contact-steps{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.contact-steps li{
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #e7ddd0;
	background: #ffffff;
	line-height: 1.55;
	color: #33495d;
}

.contact-steps li strong{
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border-radius: 999px;
	background: #0f6f51;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}
/*opinie*/
.contact-points{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.contact-points li{
	position: relative;
	padding: 12px 12px 12px 42px;
	border-radius: 12px;
	border: 1px solid #e7ddd0;
	background: #ffffff;
	line-height: 1.55;
	color: #33495d;
}

.contact-points li::before{
	content: "✓";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(15,111,81,0.12);
	color: #0f6f51;
	font-size: 13px;
	font-weight: 800;
}

@media (max-width: 900px){
	.contact-bottom__grid{
		grid-template-columns: 1fr;
	}
	.contact-bottom-card{
		padding: 22px;
	}
}
/* ===== TEAM SECTION ===== */
.team-section {
	padding: 56px 0 80px;
	background: linear-gradient(180deg, #f9f2e7 0%, #f2e6d3 100%);
	position: relative;
}

.team-header {
	text-align: center;
	margin-bottom: 60px;
}

.team-header h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	color: #004731;
	line-height: 1.2;
}

.team-department {
	margin-bottom: 70px;
}

.team-department:last-child {
	margin-bottom: 0;
}

.department-title {
	margin: 0 0 32px;
	font-size: 24px;
	font-weight: 600;
	color: #8B6F47;
	text-align: center;
	position: relative;
	padding-bottom: 16px;
}

.department-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: #8B6F47;
	opacity: 0.3;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.team-card {
	background: #fff;
	border: 1px solid #e8e0d6;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-2px);
	border-color: #d4c4b0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-name {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 600;
	color: #004731;
}

.team-position {
	margin: 0 0 20px;
	font-size: 13px;
	color: #8B6F47;
	line-height: 1.5;
	font-weight: 500;
}

.team-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid #e8e0d6;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #004731;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
	padding: 8px;
	border-radius: 6px;
	margin: -8px;
}

.contact-link:hover {
	color: #8B6F47;
}

.contact-link svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	stroke: currentColor;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
	.team-grid {
		grid-template-columns: 1fr 1fr;
	}
}

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

	.team-header h2 {
		font-size: 32px;
	}

	.team-department {
		margin-bottom: 50px;
	}

	.department-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.team-card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
  .contact-head-row{
    gap: 8px;
  }

  .contact-eyebrow{
    font-size: 10px;
    letter-spacing: 0.14em;
  }

	.team-section {
		padding: 28px 0 40px;
	}

	.team-header h2 {
		font-size: 24px;
	}

	.department-title {
		font-size: 18px;
	}

	.team-name {
		font-size: 16px;
	}

	.team-card {
		padding: 16px;
	}
}
/* CONFIGURATOR BUTTON */
/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0,71,49,0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: #003d27;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* BUTTONS DIVIDER */
.buttons-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 20px 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-700);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.buttons-divider::before,
.buttons-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, #d0d0d0, transparent);
}

/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: linear-gradient(135deg, #2f7c5e 0%, #1e5a45 100%);
	color: #fff;
	border: 1px solid rgba(158, 194, 166, 0.3);
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(47, 124, 94, 0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: linear-gradient(135deg, #1e5a45 0%, #0f3d2f 100%);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(47, 124, 94, 0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.buttons-divider {
		margin: 16px 0;
		font-size: 12px;
		gap: 12px;
	}

	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* CONFIGURATOR BUTTON */
.btn-configurator {
	width: 100%;
	padding: 16px 32px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0,71,49,0.12);
	position: relative;
	overflow: hidden;
}

.btn-configurator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-configurator:hover {
	background: #003d27;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0,71,49,0.18);
}

.btn-configurator:hover::before {
	opacity: 1;
}

.btn-configurator:active {
	transform: translateY(0);
}

.btn-configurator .btn-text {
	position: relative;
	z-index: 1;
}

.btn-configurator .btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.btn-configurator:hover .btn-icon {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.btn-configurator {
		padding: 14px 24px;
		font-size: 14px;
	}
}
/* ===== MODAL ===== */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: fadeIn 0.3s ease;
}

.modal.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 71, 49, 0.2);
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 32px;
	color: var(--text-700);
	cursor: pointer;
	transition: color 0.3s ease;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	color: var(--brand-900);
}

.modal-content h3 {
	margin: 0 0 24px;
	font-size: 28px;
	color: var(--brand-900);
	font-weight: 700;
}

.modal-body {
	margin-bottom: 24px;
}

.modal-body h4 {
	margin: 20px 0 10px;
	font-size: 15px;
	color: var(--brand-900);
	font-weight: 600;
}

.modal-body h4:first-child {
	margin-top: 0;
}

.modal-body p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
}

.modal-body ul {
	margin: 12px 0;
	padding-left: 20px;
}

.modal-body li {
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-700);
	margin-bottom: 6px;
}

.modal-body a {
	color: var(--brand-500);
	text-decoration: none;
	font-weight: 600;
}

.modal-body a:hover {
	text-decoration: underline;
}

.modal-footer {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

.btn-modal-close {
	padding: 12px 28px;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-modal-close:hover {
	background: #003d27;
	transform: translateY(-2px);
}

/* PRIVACY LINK BUTTON */
.privacy-link-btn {
	background: none;
	border: none;
	color: var(--brand-500);
	font-weight: 600;
	border-bottom: 1px solid rgba(47, 124, 94, 0.3);
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	transition: all 0.3s ease;
	display: inline;
}

.privacy-link-btn:hover {
	border-bottom-color: var(--brand-500);
	color: var(--brand-900);
}

@media (max-width: 768px) {
	.modal-content {
		padding: 24px;
		max-height: 90vh;
	}

	.modal-content h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.modal-body h4 {
		font-size: 14px;
	}

	.modal-body p,
	.modal-body li {
		font-size: 12px;
	}
}