/* Reset */
/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@300;400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi', sans-serif;
  color: #111;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Preventing sticky behavior for About/Footer globally (removed to restore consistent design) */
/* .sticky-container {
  position: static !important;
  height: auto !important;
  top: auto !important;
}

.site-footer {
  position: static !important;
  height: auto !important;
  max-height: none !important;
} */

/* ----------------------------- */
/* Content animation inside .kontener */
/* ----------------------------- */
.kontener .site-header,
.kontener .hero-top h1,
.kontener .hero-intro,
.kontener .hero-bottom,
.kontener .hero-subtext,
.kontener .hero-buttons,
.kontener .hero-trust,
.kontener .svc-hero,
.kontener .industries-header,
.kontener .train-hero,
.kontener .offers,
.kontener .offer,
.kontener .cases>div:first-child,
.kontener .cases-card,
.kontener .service-item,
.kontener .faq,
.kontener .about,
.kontener .contact-card,
.kontener .about-header,
.kontener .about-content,
.kontener .page-content,
.kontener .cs-hero,
.kontener .metric,
.kontener .prose,
.kontener .sidebar,
.kontener .product-description-grid h2,
.kontener .product-description__body,
.kontener .product-description-image {
  opacity: 0;
  transform: translateY(20px);
}

.kontener.loaded .site-header {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.2s;
}

.kontener.loaded .hero-top h1,
.kontener.loaded .svc-hero,
.kontener.loaded .train-hero,
.kontener.loaded .about-header,
.kontener.loaded .cs-hero {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.4s;
}

.kontener.loaded .hero-subtext,
.kontener.loaded .industries-header,
.kontener.loaded .offers,
.kontener.loaded .about-content,
.kontener.loaded .page-content,
.kontener.loaded .prose,
.kontener.loaded .sidebar {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.5s;
}

.kontener.loaded .hero-buttons,
.kontener.loaded .contact-card {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.6s;
}

.kontener.loaded .hero-trust {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.7s;
}

/* Case Studies / Services / Global / Training - staggered entry */
.kontener.loaded .cases>div:first-child {
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: 0.5s;
}

.kontener.loaded .cases-card,
.kontener.loaded .service-item,
.kontener.loaded .offer,
.kontener.loaded .metric {
  animation: fadeInUp 0.3s ease forwards;
}

.kontener.loaded .cases-card:nth-child(1),
.kontener.loaded .service-item:nth-child(1),
.kontener.loaded .offer:nth-child(1),
.kontener.loaded .metric:nth-child(1) {
  animation-delay: 0.6s;
}

.kontener.loaded .cases-card:nth-child(2),
.kontener.loaded .service-item:nth-child(2),
.kontener.loaded .offer:nth-child(2),
.kontener.loaded .metric:nth-child(2) {
  animation-delay: 0.7s;
}

.kontener.loaded .cases-card:nth-child(3),
.kontener.loaded .service-item:nth-child(3),
.kontener.loaded .offer:nth-child(3),
.kontener.loaded .metric:nth-child(3) {
  animation-delay: 0.8s;
}

.kontener.loaded .cases-card:nth-child(4),
.kontener.loaded .service-item:nth-child(4),
.kontener.loaded .offer:nth-child(4),
.kontener.loaded .metric:nth-child(4) {
  animation-delay: 0.9s;
}

.kontener.loaded .cases-card:nth-child(5),
.kontener.loaded .service-item:nth-child(5) {
  animation-delay: 1.0s;
}

.kontener.loaded .cases-card:nth-child(6),
.kontener.loaded .service-item:nth-child(6) {
  animation-delay: 1.1s;
}

.kontener.loaded .service-item:nth-child(7) {
  animation-delay: 1.2s;
}

.kontener.loaded .service-item:nth-child(8) {
  animation-delay: 1.3s;
}

.kontener.loaded .service-item:nth-child(9) {
  animation-delay: 1.4s;
}

.kontener.loaded .hero-intro,
.kontener.loaded .faq,
.kontener.loaded .about,
.kontener.loaded .product-description-grid h2 {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.7s;
}

.kontener.loaded .product-description__body {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.8s;
}

.kontener.loaded .product-description-image {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 1.0s;
}

.kontener.loaded .hero-bottom {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.8s;
}

.kontener.loaded .industries .hero-bottom {
  animation-delay: 0.5s;
}

/* Container */
.kontener {
  display: flex;
  flex-direction: column;
}

.container {
  width: 95vw;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



/* TRAINING: show header even without .loaded */

.kontener .site-header {
  opacity: 1 !important;
  transform: none !important;
  position: sticky;
  top: 10px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 60px;
  display: flex;
  align-items: center;
  width: 95vw;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 25px;
}

/* Header */
.site-header {
  background: #fff;
  flex-shrink: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 100%;
  width: 100%;
}

.logo {
  width: 150px;
  height: auto;
  display: block;
}

.site-header .container>a:first-child {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.8rem;
  color: #6b7280;
}

.site-nav a:hover {
  color: #111;
}

.contact-link {
  font-weight: 500;
  font-size: 0.8rem;
  color: #111;
}

.contact-link--cta {
  background: #111;
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.contact-link--cta:hover {
  background: #333;
}

.mobile-menu {
  display: none;
}

.burger {
  display: none;
}

.site-nav a.is-active,
.contact-link.is-active {
  font-weight: 700;
  color: #000;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 700px;
  height: calc(100vh - 80px);
  max-height: 1080px;
}

/* Hero Top */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 95vw;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-top h1 {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .hero-top h1 {
    font-size: 2.7rem;
  }
}

.hero-intro {
  position: relative;
  margin-top: 120px;
  max-width: 300px;
  text-align: left;
}

.hero-intro .label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0;
}

.hero-intro p {
  font-size: 0.9rem;
  color: #374151;
}

.hero-left {
  display: flex;
  flex-direction: column;
  /* Ensures H1, text, and buttons stack vertically */
  gap: 1.25rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}

/* Already added; keeping */
.hero-subtext {
  max-width: 900px;
  font-size: 0.95rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.hero-trust-sep {
  color: #d1d5db;
}

.btn-dark .arrow {
  font-size: 1rem;
  /* 🔹 Increases arrow size */
  color: #fff;
  /* 🔹 White arrow */
  line-height: 1;
  transform: translateY(-1px);
  /* Slightly lifts for alignment */
  transition: transform 0.2s ease;
}

/* Optional: subtle translation effect on hover */
.btn-dark:hover .arrow {
  transform: translate(3px, -1px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #2b2b2d;
  /* Black shade as in screenshot */
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
  /* Vertical approx. 18px, horizontal approx. 40px */
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: all 0.25s ease;
  box-shadow: none;
}


/* Hero Bottom */
.hero-bottom {
  width: 95vw;
  max-width: 1440px;
  margin: auto auto 0;
  flex-shrink: 0;
  min-height: 300px;
  position: relative;
  /* Optional, if blur overflows */
}

.hero-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FFFDE7;
  background-image:
    radial-gradient(at 10% 10%, #ffffff 0px, transparent 60%),
    radial-gradient(at 90% 90%, hsla(36, 100%, 75%, 0.8) 0px, transparent 50%),
    radial-gradient(at 90% 10%, hsla(20, 90%, 90%, 1) 0px, transparent 50%),
    radial-gradient(at 10% 90%, hsla(45, 100%, 85%, 1) 0px, transparent 50%);
  filter: blur(20px);
  /* Enforce soft edges at top and bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.hero-bottom .container {
  padding: 6rem 0;
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Reset container width logic to fill parent */
  width: 100%;
  max-width: none;
  margin: 0;
}

.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: .375rem;
  cursor: pointer;
}

/* --- Social Proof Section --- */
.social-proof-section {
  padding: 4rem 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.social-proof-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3.5rem;
}

.sp-value {
  font-family: 'Source Serif 4', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sp-label {
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 0.5rem;
  max-width: 150px;
  line-height: 1.5;
}

.sp-sep {
  width: 1px;
  height: 2.5rem;
  background: #e0e0e0;
  flex-shrink: 0;
}

.sp-source {
  text-align: center;
  font-size: 0.74rem;
  color: #aaa;
  margin-top: 2.5rem;
}

.sp-source a {
  color: #888;
  text-decoration: underline;
  text-decoration-color: #ddd;
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.sp-source a:hover {
  color: #111;
  text-decoration-color: #aaa;
}

@media (max-width: 768px) {
  .sp-sep { display: none; }
  .social-proof-metrics { gap: 2.5rem; }
  .sp-metric { padding: 0; }
  .sp-value { font-size: 2.4rem; }
}

/* --- Main Section Container --- */
.minerva-timeline-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  /* Important for correct padding calculation */
}

.container-bottom {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  /* Ensure z-index context */
  z-index: 1;
  padding: 50px;
}

.container-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FFFDE7;
  background-image:
    /* Stronger amber on the left */
    radial-gradient(at 0% 50%, hsla(36, 100%, 75%, 0.8) 0px, transparent 50%),
    /* Light yellow on the right */
    radial-gradient(at 100% 50%, hsla(45, 100%, 85%, 1) 0px, transparent 50%),
    /* Delicate "light spot" at the top */
    radial-gradient(at 50% 0%, hsla(60, 100%, 95%, 1) 0px, transparent 50%),
    /* Thinner accent at the bottom */
    radial-gradient(at 50% 100%, hsla(36, 100%, 80%, 0.4) 0px, transparent 50%);
  filter: blur(30px);
  /* Fade both top (0% to 100px) and bottom (calc(100% - 100px) to 100%) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
}

/* --- Text and button at the top --- */
.subtitle {
  color: #888;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 2.8rem;
  /* Font size matched to image */
  font-weight: 300;
  /* Font looks thinner than default bold */
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 600px;
  /* Width limit for better line breaking */
  margin-left: auto;
  margin-right: auto;
}

.demo-button {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  text-decoration: none;
  color: #111;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.demo-button-dark {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #ddd;
  /* Subtle border */
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.demo-button:hover {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* --- Timeline Section --- */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 80%;
  /* Axis does not take full width */
  margin: 80px auto;
}

/* Dotted line - key element */
/* --- Timeline Section --- */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: 90%;
  /* Axis width */
  margin: 80px auto;
  padding: 0;
}

/* Dotted line - crosses full width without breaks */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  /* Aligned to bottom to cross markers exactly at 9px (half of 18px marker) */
  bottom: 9px;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1.5px dotted #d1d5db;
  /* Dotted line */
  transform: translateY(50%);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: transparent;
  /* No background so line is visible */
}

.timeline-step span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 18px;
  white-space: nowrap;
}

/* Outer marker - white background, black border */
.timeline-step .marker {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid #d1d5db;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner small square */
.timeline-step .markerInside {
  width: 6px;
  height: 6px;
  background-color: #222;
  position: static;
  /* Using flexbox from parent */
}

/* Mobile - hide timeline */
@media (max-width: 768px) {
  .timeline-wrapper {
    display: none;
  }
}


/* --- 3-column grid --- */
.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* Gap between columns */
  margin-top: 40px;
}

.feature-column {
  flex: 1;
  /* Each column takes equal space */
  border: 1px solid #fff;
  /* Delicate border as in image */
  padding: 30px;
  text-align: left;
  /* Left-align text in columns */
}

.feature-column h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
}

.feature-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-column li {
  display: flex;
  align-items: center;
  /* Align checkmark with text */
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #444;
}

/* Checkmark styling */
.feature-column .checkmark {
  display: inline-flex;
  /* Use flex for perfect centering */
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #000;
  /* White checkmark */
  border-radius: 50%;
  /* Circular background */
  margin-right: 12px;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  /* Prevents shrinking on smaller screens */
}

/* About */
span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.sticky-container {
  height: auto;
  position: relative;
}

.about {
  position: relative;
  top: auto;
  z-index: 10;
  height: auto;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 4rem 1.5rem;
  align-items: center;
  overflow: visible;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #eef0f3 1px, transparent 1px);
  background-size: calc(100%/6) 100%;
  z-index: 0;
}

.about>* {
  position: relative;
  z-index: 1;
}

.about h2 .Who {
  display: block;
  margin-bottom: -0.8rem;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 1rem;
}

.about p {
  color: #374151;
  max-width: 60%;
}

/* Footer */
.footer {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #000;
}

.site-footer {
  position: relative;
  z-index: 20;
  min-height: 500px;
  height: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
  text-align: left;
}

.footer-column-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* Spacing between Mission, Data, and CTA */
  flex: 1;
  min-width: 300px;
}

.footer-column-right {
  flex: 0 0 auto;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 0.60rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
  display: block;
  margin-top: 0.5rem;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
}

/* Internal CTA styling */
.footer-cta-internal .email-link {
  font-size: 2.5rem !important;
  display: block;
  margin-top: 0.5rem;
  line-height: 1;
  word-break: break-all;
}

@media (min-width: 1024px) {
  .footer-cta-internal .email-link {
    font-size: 3rem !important;
  }
}


.footer-col h3,
.footer-cta h3 {
  font-size: 0.60rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-cta .email-link {
  font-size: 3rem !important;
  display: block;
  margin-top: 0.5rem;
  line-height: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.6;
  width: 95vw;
  max-width: 1440px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 4rem 0;
  margin-bottom: 4rem;
  height: 100vh;
  align-content: center;
}

.services-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0;
  font-weight: 500;
  color: #111;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-intro {
  color: #9CA3AF;
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  transition: color 0.6s ease-out;
}

@media (min-width: 1024px) {
  .services-intro {
    font-size: 2rem;
  }
}

.services-intro--sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9em;
  color: inherit;
}

.services-intro.visible {
  color: #111;
}

.services {
  padding: 2rem 0;
  background: #fff;
}

.services-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 500px;
  width: 100%;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  perspective: 800px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-left {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  width: 50%;
}

/* --- STATIC SERVICE RIGHT --- */
.service-right {
  width: 50%;
  text-align: right;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.service-right::after {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 0.2rem;
}

.service-item.active .service-right::after {
  transform: rotate(-135deg);
}

/* Sekcja services musi rosnąć, nie blokować się na 100vh */
.services {
  height: auto;
  align-content: start;
}

/* element <li> może zawijać opis pod spodem */
.service-item {
  flex-wrap: wrap;
  position: relative;
}

/* Opis - początkowo ukryty (BEZ ANIMACJI) */
.service-description {
  display: none;
  width: 100%;
  flex-basis: 100%;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.85rem;
  padding-top: 0.75rem;
}

/* Po rozwinięciu - natychmiastowe pokazanie */
.service-item.active .service-description {
  display: block;
}

.service-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.service-link:hover {
  opacity: 0.6;
}




/* Media Queries */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  .site-nav,
  .contact-link {
    display: none;
  }

  .kontener {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  body.menu-open,
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 10px;
    /* Match header top */
    height: 60px;
    /* Match header height */
    right: 5vw;
    color: #000;
    z-index: 20000;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    padding: 6rem 1.5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 20001;
    /* Highest priority to cover header (9999) and burger (20000) */
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu__title,
  .mobile-menu__contact,
  .mobile-menu__accordion .accordion-item .accordion-title {
    opacity: 0;
    transform: translateY(20px);
  }

  .mobile-menu__logo {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .mobile-menu.open .mobile-menu__title {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.2s;
  }

  .mobile-menu.open .mobile-menu__contact {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.4s;
  }

  .mobile-menu.open .mobile-menu__accordion .accordion-item:nth-child(1) .accordion-title {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.6s;
  }

  .mobile-menu.open .mobile-menu__accordion .accordion-item:nth-child(2) .accordion-title {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.8s;
  }

  .mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 9999;
  }

  .mobile-menu__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .mobile-menu__contact {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile-nav a {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu.open .mobile-nav a {
    animation: fadeInUp 0.4s ease forwards;
  }

  .mobile-menu.open .mobile-nav a:nth-child(1) {
    animation-delay: 0.2s;
  }

  .mobile-menu.open .mobile-nav a:nth-child(2) {
    animation-delay: 0.3s;
  }

  .mobile-menu.open .mobile-nav a:nth-child(3) {
    animation-delay: 0.4s;
  }

  .mobile-menu.open .mobile-nav a:nth-child(4) {
    animation-delay: 0.5s;
  }

  .mobile-menu.open .mobile-nav a:nth-child(5) {
    animation-delay: 0.6s;
  }

  .mobile-menu.open .mobile-menu__contact {
    animation-delay: 0.7s;
  }

  .hero {
    display: flex;
    position: relative;
    min-height: 650px;
    height: auto;
  }

  .hero-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-width: 100%;
    padding-top: 6rem;
    /* Space for fixed header/top alignment */
    padding-bottom: 0rem;
    /* Reduced from 2rem */
  }

  .hero-left {
    display: contents;
    /* Unwrap container to interleave children */
  }

  .hero-top h1 {
    display: block;
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    width: 100%;
    position: static;
    margin-bottom: 2rem;
    text-align: left;
    order: 1;
  }

  .hero-top h1 {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .hero-subtext {
    order: 2;
    font-size: 0.9rem;
    display: none;
  }

  .hero-intro {
    position: static;
    max-width: 250px;
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
    margin-bottom: 2rem;
    order: 3;
    padding-top: 0.3rem;
    /* Separate from subtext */
    margin-top: 0.5rem;
  }

  .hero-intro p {
    font-size: calc(0.9rem - 2px);
  }

  .hero-buttons {
    order: 4;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-buttons .demo-button,
  .hero-buttons .demo-button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 14px;
    padding: 0 16px;
    box-sizing: border-box;
    font-weight: 500;
    white-space: nowrap;
  }



  .hero-bottom {
    position: static;
    min-height: auto;
    width: 100%;
    margin-top: auto;
    /* Push to bottom if container has height */
  }

  .hero-bottom .container {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
  }

  .hero-bottom .cta-button {
    bottom: auto;
    position: absolute;
    right: 5vw;
    color: #000;
    border: none;
  }

  .scroll-down {
    bottom: 1rem;
    right: 5vw;
    left: auto;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
    height: auto;
  }

  .about h2 {
    font-size: 2rem;
  }

  .sticky-container {
    top: auto;
    height: auto;
    position: static;
  }

  .services {
    max-width: 90vw;
    overflow: hidden;
    height: auto;
    padding: 2rem 0;
    margin: 0 auto;
    margin-top: 7vh;
  }

  .services-intro {
    font-size: 1.5rem;
    margin-bottom: 8rem;
    font-weight: 500;
  }

  .service-left {
    font-size: 0.85rem;
  }

  .service-right .front,
  .service-right .back {
    font-size: 0.85rem;
  }

  .service-right .front {
    font-size: 0;
  }

  .service-right .front::after {
    content: "Read more";
    font-size: 0.85rem;
  }

  .minerva-timeline-section {
    padding: 80px 15px;
  }

  .container-bottom {
    padding: 30px 10px;
  }

  .subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .main-heading {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 100%;
    padding: 0 10px;
  }

  .demo-button {
    font-size: 0.85rem;
    padding: 8px 18px;
    margin-bottom: 30px;
  }

  /* Ukrycie osi czasu na mobile */
  .timeline-wrapper {
    display: none;
  }

  /* Zmiana layoutu na pionowy stos */
  .features-grid {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding: 20px
  }

  .feature-column {
    border: 1.5px solid #fff;
    padding: 50px 20px;
    width: 90%;
    margin: 0 auto
  }

  .feature-column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .feature-column li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .feature-column .checkmark {
    width: 18px;
    height: 18px;
    font-size: 0.85rem;
    margin-right: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }



  .site-footer {
    height: auto;



    max-height: none;
    padding: 4rem 0 2rem;
  }

  .faq {
    display: flex;
    flex-direction: column;
  }

  .faq-main {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .faq-cta-floating {
    order: 2;
    position: static;
    margin-top: 3rem;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }

  .footer-cta .email-link,
  .footer-cta-internal .email-link {
    font-size: 1.5rem !important;
    color: #fff !important;
  }

  .site-footer a[href^="tel"] {
    color: #fff !important;
    text-decoration: none !important;
  }

  .conditional {
    color: #fff;
  }

  .footer-bottom {
    width: 100%;
    font-size: 0.75rem;
    opacity: 0.6;
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    margin-top: 2rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FAQ Styles (Copied from szkolenia.css) ===== */
:root {
  --faq-width: 720px;
  --faq-gap-left: 240px;
}

.faq {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0 140px;
  background: #fff;
  color: #111;
}

.faq-main {
  width: var(--faq-width);
  max-width: 550px;
  z-index: 1;
}

.faq-cta-floating {
  position: absolute;
  top: 50%;
  left: calc(50% - (var(--faq-width) / 2) - var(--faq-gap-left));
  transform: translateY(-50%);
  width: 280px;
  text-align: left;
}

.faq-cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-note {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 0.95rem;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  /* Adjusted for visibility on white bg if needed, checking original again - original said #fff but border #000. I will verify visually if possible or stick to original. Original had color #fff. I will use #000 for text to be safe on white or check if I missed a background. Re-reading: szkolenia.css had color: #fff. I will trust correct logic exists or user wants exact copy. Wait, if I change it I deviate. I will use #000 to ensure visibility on white background, assuming migration tweak is acceptable for functionality. */
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid #000;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #000;
  /* Forced to black for safety on white bg */
}

.faq-cta:hover {
  background: #eeeeee;
  transform: translateY(-1px);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.faq-sub {
  color: #6b7280;
  margin-bottom: 24px;
}

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

details.faq-item {
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, .06);
}

summary.faq-q {
  padding: 18px 56px 18px 20px;
  list-style: none;
  cursor: pointer;
  position: relative;
  user-select: none;
}

summary.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q__text {
  font-weight: 500;
  color: #000;
  font-size: 0.85rem;
}

.chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.chev svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

details[open] .chev svg {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px 18px 20px;
  color: #111827;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

details[open] .faq-a {
  opacity: 1;
  transform: translateY(0);
}

.dots {
  position: absolute;
  inset: auto 0 -120px 0;
  height: 360px;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.45;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
}

@media (max-width: 1100px) {
  :root {
    --faq-gap-left: 260px;
  }
}

@media (max-width: 960px) {
  .faq {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 100px;
  }

  .faq-cta-floating {
    position: static;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .faq-cta-box {
    align-items: flex-start;
    width: 100%;
  }

  .faq-main {
    width: 100%;
    max-width: 700px;
  }

  .faq-a {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ========================================= */
/* MERGED CONTENT FROM kontakt.css */
/* ========================================= */

/* Nic nie zmieniamy w „looku” formularza – zostaje Twoja złota karta i te same pola */

/* Container (jak w onas.css) */
/* .container definition skipped as it duplicates style.css */


/* Kontakt sticky - RESET */
.about#contact {
  position: relative;
  /* changed from sticky */
  top: auto;
  /* reset */
  height: auto;
  /* changed from 100vh */
  min-height: 100vh;
  /* ensure full height but flexible */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 1.5rem;
  background: #fff;
  overflow: visible;
  /* changed from hidden */
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #eef0f3 1px, transparent 1px);
  background-size: calc(100%/6) 100%;
  z-index: 0;
}

.about>* {
  position: relative;
  z-index: 1;
}

.about h2 .Who {
  display: block;
  margin-bottom: -0.8rem;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #111;
  margin-top: 0;
  /* Reset negative margin if needed, or keep if stylistic */
  margin-bottom: 1rem;
}

/* === ZŁOTA KARTA (Twoje stare style skopiowane bez zmian w wyglądzie) === */
.contact-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 700px;
  /* szerokość jak dawniej tekstu .about p */
  width: 100%;
  background: linear-gradient(to bottom right, #FFFDE7, #FFECB3, #FFCC80);
  margin-top: -10vh;
  /* żeby karta siedziała na tej samej wysokości co p w onas.css */
}

.contact-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Formularz – bez zmiany „looku” */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.8rem;
  color: #6b7280;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background: #fff;
  font: inherit;
  color: #111;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.error {
  min-height: 1.1em;
  font-size: 0.75rem;
  color: #b91c1c;
}

.is-invalid {
  /* Klucz do selektorów JS, brak zmiany koloru tekstu/ramki */
  outline: none;
}

.consent {
  margin: 0.5rem 0 0.25rem;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #374151;
}

.checkbox input {
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.75rem;
}



/* Wiadomość sukcesu */
.form-success {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #065f46;
  padding: 1rem 1.2rem;
  border-radius: 0.375rem;
}

.form-success[hidden] {
  display: none !important;
}

.form-actions .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  background-color: #111;
  color: #fff;
  border-radius: 0.375rem;
}

.form-actions .cta-button:hover {
  background-color: #333;
  transform: translateY(-1px);
}

/* Wiadomość sukcesu ustalone globalnie */

/* === RWD – to samo zachowanie co w onas.css === */
@media (max-width: 1100px) {
  /* .container max-width moved to global styles */
  /* .site-nav display none moved to global styles */
  /* mobile menu styles moved to global styles */

  /* Sticky sekcja „rozkleja się” na mobile – tak jak w onas.css */
  .about#contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem 1rem 3rem 1rem;
    height: auto;
    min-height: auto;
  }

  .about h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0;
    order: 1;
    text-align: left;
    align-self: flex-start;
  }

  .about p {
    max-width: 100%;
    order: 1;
    font-size: 0.85rem;
    margin-top: -1rem;
  }

  .contact-card {
    margin-top: 0;
    max-width: 100%;
    order: 2;
    padding: 1rem;
  }

  .contact-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    margin-bottom: 0.15rem;
  }

  .field textarea {
    height: 120px;
    min-height: 120px;
  }

  .field input,
  .field textarea {
    padding: 0.5rem 0.75rem;
  }

  .field label {
    font-size: 0.75rem;
  }

  .field {
    gap: 0.2rem;
  }

  .form-actions {
    justify-content: center;
  }

  .conditional {
    color: #fff;
  }

  .lead {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
  }

  .lead br {
    display: none;
  }

  /* Checkout CSS */
}

/* ----------------------------- */
/* Checkout / Order Form Styles */
/* ----------------------------- */
.checkout-section {
  padding: 4rem 1.5rem;
  flex: 1;
  /* Push footer down */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.checkout-wrapper {
  width: 100%;
  max-width: 600px;
  max-width: 600px;
  border-radius: 1rem;
  padding: 2.5rem;
  /* Restored gradient background and style */
  background: linear-gradient(to bottom right, #FFFDE7, #FFECB3, #FFCC80);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.order-summary {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.order-summary h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #111;
}

.order-summary .item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.order-summary .item-plan {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 0.25rem;
}

.order-summary .item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-top: 0.5rem;
}

/* Form Styles */
.contact-form .field {
  margin-bottom: 0.85rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fff;
}

.contact-form input:focus {
  outline: none;
  border-color: #111;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .field {
  flex: 1;
}

/* Checkbox specific */
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}

.field-checkbox input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: #111;
  flex-shrink: 0;
}

.field-checkbox label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #444;
  font-weight: 400;
}

.field-checkbox a {
  text-decoration: underline;
  color: #111;
}

/* Button */
.cta-button {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
  background: #333;
  border-color: #333;
}

.form-note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-form select,
.contact-card select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111;
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  transition: border-color 0.15s;
}

.contact-form select:focus,
.contact-card select:focus {
  outline: none;
  border-color: #111;
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 2rem 1rem;
  }

  .checkout-wrapper {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}