/* =========================
   ZÁKLADNÍ NASTAVENÍ WEBU
========================= */

:root {
  --color-primary: #0b1f3a;
  --color-accent: #ff7a00;
  --color-accent-dark: #d96500;
  --color-text: #172333;
  --color-background: #ffffff;
  --color-light: #f5f7fa;
  --color-border: #dfe5ec;

  --shadow-header: 0 8px 24px rgba(11, 31, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HLAVIČKA WEBU
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-header);
}

.header-content {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 130px;
  height: auto;
}
.header-tagline {
  display: none;
}

/* Hlavní navigace */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 12px 13px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:not(.nav-button)::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:not(.nav-button):hover,
.main-nav a.active {
  color: var(--color-accent);
}

.main-nav a:not(.nav-button):hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Tlačítko Nezávazná poptávka */

.main-nav .nav-button {
  margin-left: 8px;
  padding: 13px 18px;
  color: #ffffff;
  background-color: var(--color-accent);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.22);
}

.main-nav .nav-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* Zvýraznění ovládání klávesnicí */

.main-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

/* =========================
   TLAČÍTKO MOBILNÍHO MENU
========================= */

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-primary);
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
/* ==================================================
   STRÁNKA DOMÉNA A HOSTING
================================================== */

/* Úvodní část stránky */
.guide-hero {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 48, 0.97),
    rgba(17, 46, 76, 0.94)
  );
  color: white;
}

.guide-hero-content {
  max-width: 850px;
  text-align: center;
}

.guide-label {
  margin-bottom: 16px;
  color: #ff7a00;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.guide-introduction {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Zvýrazněná informace o vlastnictví služeb */
.guide-note {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border-left: 4px solid #ff7a00;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  text-align: left;
}

/* Tlačítko v úvodní části */
.guide-button {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #ff7a00;
  border-radius: 8px;
  background-color: #ff7a00;
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.guide-button:hover {
  background-color: transparent;
  color: #ff7a00;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.3);
}

/* Sekce se základními pojmy */
.guide-section {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.guide-section .section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.guide-section .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.guide-section .section-heading p {
  color: #536273;
  line-height: 1.8;
}

.section-label {
  margin-bottom: 12px;
  color: #ff7a00 !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Karty Doména a Webhosting */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.guide-card {
  padding: 34px;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 12px 35px rgba(13, 27, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.guide-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.13);
}

.guide-card h3 {
  margin-bottom: 16px;
  color: #0d1b2a;
  font-size: 1.5rem;
}

.guide-card p {
  color: #536273;
  line-height: 1.75;
}

.guide-example {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  background-color: #fff4e8;
  color: #b45100 !important;
  font-weight: 700;
}

/* Aby se nadpis po kliknutí neschoval pod hlavičku */
#zakladni-pojmy {
  scroll-margin-top: 100px;
}
/* ==================================================
   PŘÍPRAVA PŘED OBJEDNÁVKOU
================================================== */

.guide-preparation {
  padding: 90px 0;
  background-color: #ffffff;
}

.guide-preparation .section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.guide-preparation .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.guide-preparation .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

.preparation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.preparation-card {
  position: relative;
  padding: 34px;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: #f8fafc;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.preparation-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.1);
}

.preparation-number {
  display: flex;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff7a00;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
}

.preparation-card h3 {
  margin-bottom: 14px;
  color: #0d1b2a;
  font-size: 1.35rem;
}

.preparation-card p {
  color: #536273;
  line-height: 1.75;
}

.preparation-example {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #fff0e2;
  color: #b45100 !important;
  font-weight: 700;
}

.ownership-box {
  display: flex;
  max-width: 920px;
  margin: 46px auto 0;
  padding: 28px 32px;
  gap: 22px;
  align-items: flex-start;
  border-left: 5px solid #ff7a00;
  border-radius: 12px;
  background-color: #0f2942;
  box-shadow: 0 14px 35px rgba(13, 27, 42, 0.14);
}

.ownership-icon {
  display: flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff7a00;
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
}

.ownership-box h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.25rem;
}

.ownership-box p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

#priprava {
  scroll-margin-top: 100px;
}
/* ==================================================
   PRAKTICKÝ NÁVOD – JEDNOTLIVÉ KROKY
================================================== */

.registration-guide {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.registration-guide .section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.registration-guide .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.registration-guide .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

/* Bílá karta jednoho kroku */
.guide-step {
  max-width: 1050px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid #e1e7ee;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 16px 45px rgba(13, 27, 42, 0.1);
}

/* Mezery mezi dalšími kroky */
.guide-step + .guide-step {
  margin-top: 40px;
}

/* Horní část kroku s číslem a nadpisem */
.guide-step-heading {
  display: flex;
  margin-bottom: 22px;
  gap: 18px;
  align-items: center;
}

.guide-step-number {
  display: flex;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
}

.guide-step-label {
  margin-bottom: 4px;
  color: #ff7a00;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.guide-step-heading h3 {
  margin: 0;
  color: #0d1b2a;
  font-size: 1.55rem;
}

.guide-step-description {
  margin-bottom: 28px;
  color: #536273;
  font-size: 1.05rem;
  line-height: 1.8;
}

.guide-step-description strong {
  color: #0d1b2a;
}

/* Obrázek návodu */
.guide-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce3eb;
  border-radius: 14px;
  background-color: #ffffff;
}

.guide-image img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-image figcaption {
  padding: 14px 18px;
  border-top: 1px solid #e1e7ee;
  background-color: #f8fafc;
  color: #536273;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

/* Užší svislý obrázek v návodu */

.guide-image--narrow {
  width: 100%;
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
}

/* Přehled oprávnění ve WebAdminu */

.guide-permissions {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #dce3eb;
  border-radius: 14px;
  background-color: #f8fafc;
}

.guide-permissions h4 {
  margin: 0 0 14px;
  color: #263442;
  font-size: 1.15rem;
  line-height: 1.4;
}

.guide-permissions p {
  margin: 0;
  color: #536273;
  line-height: 1.7;
}

.guide-permissions ul {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-left: 22px;
}

.guide-permissions li {
  color: #536273;
  line-height: 1.65;
}

.guide-permissions li::marker {
  color: #263442;
}

.guide-permissions strong {
  color: #263442;
}

.guide-permissions p:last-child {
  padding-top: 18px;
  border-top: 1px solid #dce3eb;
}

/* Správná pozice po kliknutí na tlačítko */
#prakticky-navod,
#navod-webhosting {
  scroll-margin-top: 100px;
}
.guide-step-description-secondary {
  margin-top: 28px;
}

.guide-step-description {
  margin-top: 28px;
}
.guide-step-note {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 4px solid #ff7a00;
  border-radius: 8px;
  background-color: #fff4e8;
  color: #536273;
  line-height: 1.7;
}

.guide-step-note strong {
  color: #0d1b2a;
}
/* ==================================================
   ČASTÉ OTÁZKY A ODPOVĚDI
================================================== */

.faq-section {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.faq-section .section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.faq-section .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.faq-section .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

/* Seznam všech otázek */
.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 16px;
}

/* Samostatná karta otázky */
.faq-item {
  overflow: hidden;
  border: 1px solid #e1e7ee;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 8px 26px rgba(13, 27, 42, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin: 0;
}

/* Klikací otázka */
.faq-question {
  display: flex;
  width: 100%;
  padding: 22px 26px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background-color: transparent;
  color: #0d1b2a;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: #d96500;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: -3px;
}

/* Oranžový symbol plus */
.faq-icon {
  display: flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff1e3;
  color: #ff7a00;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.faq-question:hover .faq-icon {
  background-color: #ff7a00;
  color: #ffffff;
}

/* Otevřená otázka */
.faq-question[aria-expanded="true"] {
  color: #d96500;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background-color: #ff7a00;
  color: #ffffff;
  transform: rotate(45deg);
}

/* Odpověď */
.faq-answer {
  padding: 0 26px 24px;
  border-top: 1px solid #edf0f4;
}

.faq-answer p {
  margin: 0;
  padding-top: 20px;
  color: #536273;
  line-height: 1.8;
}

.faq-answer strong {
  color: #0d1b2a;
}

/* Skrytá odpověď před kliknutím */
.faq-answer[hidden] {
  display: none;
}

#faq {
  scroll-margin-top: 100px;
}

/* ==================================================
   STRÁNKA JAK PROBÍHÁ SPOLUPRÁCE
================================================== */

.cooperation-hero {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 48, 0.98),
    rgba(17, 46, 76, 0.95)
  );
  color: #ffffff;
}

.cooperation-hero-content {
  max-width: 850px;
  text-align: center;
}

.cooperation-hero .section-label {
  margin-bottom: 16px;
  color: #ff7a00;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cooperation-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.cooperation-hero-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.8;
}

.cooperation-process {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.cooperation-process .section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.cooperation-process .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.cooperation-process .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

.cooperation-steps {
  position: relative;
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 26px;
}

.cooperation-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background-color: #dce3eb;
}

.cooperation-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.cooperation-step-number {
  position: relative;
  z-index: 1;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 5px solid #f7f9fc;
  border-radius: 50%;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.25);
}

.cooperation-step-content {
  padding: 28px 32px;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.cooperation-step-content:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.11);
  transform: translateY(-4px);
}

.cooperation-step-label {
  margin-bottom: 8px;
  color: #ff7a00;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cooperation-step-content h3 {
  margin-bottom: 13px;
  color: #0d1b2a;
  font-size: 1.4rem;
}

.cooperation-step-content > p:last-child {
  color: #536273;
  line-height: 1.75;
}

.cooperation-info {
  padding: 75px 0;
  background-color: #0f2942;
}

.cooperation-info-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.cooperation-info-content > div {
  max-width: 720px;
}

.cooperation-info .section-label {
  margin-bottom: 12px;
  color: #ff7a00;
}

.cooperation-info h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.cooperation-info p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.cooperation-cta {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 14px 26px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff7a00;
  border-radius: 8px;
  background-color: #ff7a00;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.22);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cooperation-cta:hover {
  background-color: transparent;
  color: #ff7a00;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
}

#prubeh-spoluprace {
  scroll-margin-top: 100px;
}
/* ==================================================
   STRÁNKA SLUŽBY
================================================== */

/* Úvodní část stránky */

.services-hero {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 48, 0.98),
    rgba(17, 46, 76, 0.95)
  );
  color: #ffffff;
}

.services-hero-content {
  max-width: 850px;
  text-align: center;
}

.services-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.services-hero-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Hlavní nabídka služeb */

.services-offer {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.services-offer .section-heading,
.services-included .section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.services-offer .section-heading h2,
.services-included .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.services-offer .section-heading > p:last-child,
.services-included .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

.services-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-offer-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-offer-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.11);
  transform: translateY(-5px);
}

.service-offer-number {
  display: inline-block;
  margin-bottom: 22px;
  color: #ff7a00;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.service-offer-card h3 {
  margin-bottom: 15px;
  color: #0d1b2a;
  font-size: 1.35rem;
  line-height: 1.3;
}

.service-offer-card p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

#nabidka-sluzeb {
  scroll-margin-top: 100px;
}

/* Co je zahrnuto v projektu */

.services-included {
  padding: 90px 0;
  background-color: #ffffff;
}

.services-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: 18px;
}

.included-item {
  display: flex;
  padding: 22px 24px;
  gap: 16px;
  align-items: center;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  background-color: #f8fafc;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.included-item:hover {
  border-color: rgba(255, 122, 0, 0.5);
  background-color: #ffffff;
  transform: translateY(-3px);
}

.included-item span {
  display: flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(255, 122, 0, 0.22);
}

.included-item p {
  margin: 0;
  color: #172333;
  font-weight: 700;
  line-height: 1.5;
}

/* Doplňkové služby */

.additional-services {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.additional-services-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.additional-services-content > div:first-child {
  position: sticky;
  top: 130px;
}

.additional-services h2 {
  margin-bottom: 20px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.additional-services-content > div:first-child > p:last-child {
  color: #536273;
  line-height: 1.8;
}

.additional-services-list {
  display: grid;
  gap: 18px;
}

.additional-services-list article {
  padding: 28px 30px;
  border-left: 4px solid #ff7a00;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 9px 28px rgba(13, 27, 42, 0.07);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.additional-services-list article:hover {
  box-shadow: 0 14px 36px rgba(13, 27, 42, 0.11);
  transform: translateX(5px);
}

.additional-services-list h3 {
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 1.3rem;
}

.additional-services-list p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

.additional-services-list strong {
  color: #0d1b2a;
}

/* Závěrečná výzva k poptávce */

.services-cta-section {
  padding: 75px 0;
  background-color: #0f2942;
}

.services-cta-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.services-cta-content > div {
  max-width: 720px;
}

.services-cta-section h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.services-cta-section p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}
/* ==================================================
   STRÁNKA PORTFOLIO
================================================== */

/* Úvodní část stránky */

.portfolio-hero {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 48, 0.98),
    rgba(17, 46, 76, 0.95)
  );
  color: #ffffff;
}

.portfolio-hero-content {
  max-width: 850px;
  text-align: center;
}

.portfolio-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.portfolio-hero-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Přehled projektů */

.portfolio-projects {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.portfolio-projects > .container > .section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.portfolio-projects .section-heading h2,
.portfolio-benefits .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.portfolio-projects .section-heading > p:last-child,
.portfolio-benefits .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

#portfolio-projekty {
  scroll-margin-top: 100px;
}

.portfolio-project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  margin-bottom: 45px;
  overflow: hidden;
  border: 1px solid #e1e7ee;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 14px 42px rgba(13, 27, 42, 0.09);
}

.portfolio-project:last-child {
  margin-bottom: 0;
}

.portfolio-project-image {
  min-height: 500px;
  overflow: hidden;
  background-color: #e9eef4;
}

.portfolio-project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-project:hover .portfolio-project-image img {
  transform: scale(1.035);
}

.portfolio-project-content {
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.portfolio-project-reverse .portfolio-project-image {
  order: 2;
}

.portfolio-project-reverse .portfolio-project-content {
  order: 1;
}

.portfolio-project-type {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background-color: rgba(255, 122, 0, 0.12);
  color: #e86f00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-project-content h3 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.portfolio-project-content > p:not(.portfolio-project-type) {
  margin: 0 0 24px;
  color: #536273;
  line-height: 1.8;
}

.portfolio-project-tags {
  display: flex;
  margin-bottom: 26px;
  gap: 9px;
  flex-wrap: wrap;
}

.portfolio-project-tags span {
  padding: 7px 11px;
  border: 1px solid #dce3eb;
  border-radius: 8px;
  background-color: #f7f9fc;
  color: #344354;
  font-size: 0.86rem;
  font-weight: 700;
}

.portfolio-project-features {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.portfolio-project-features li {
  position: relative;
  padding-left: 29px;
  color: #253446;
  line-height: 1.55;
}

.portfolio-project-features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff7a00;
  font-weight: 900;
}

.portfolio-project-link {
  display: inline-flex;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background-color: #ff7a00;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.24);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.portfolio-project-link:hover {
  background-color: #e86f00;
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.32);
  transform: translateY(-2px);
}

/* Hlavní výhody projektů */

.portfolio-benefits {
  padding: 90px 0;
  background-color: #ffffff;
}

.portfolio-benefits .section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.portfolio-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.portfolio-benefit-card {
  padding: 34px;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: #f8fafc;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.portfolio-benefit-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 14px 35px rgba(13, 27, 42, 0.09);
  transform: translateY(-5px);
}

.portfolio-benefit-card > span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff7a00;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.portfolio-benefit-card h3 {
  margin-bottom: 14px;
  color: #0d1b2a;
  font-size: 1.35rem;
}

.portfolio-benefit-card p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

/* Závěrečná výzva k poptávce */

.portfolio-cta-section {
  padding: 75px 0;
  background-color: #0f2942;
}

.portfolio-cta-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.portfolio-cta-content > div {
  max-width: 720px;
}

.portfolio-cta-section h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.portfolio-cta-section p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}
/* ==================================================
   STRÁNKA KONTAKT A NEZÁVAZNÁ POPTÁVKA
================================================== */

/* Úvodní část stránky */

.contact-hero {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 48, 0.98),
    rgba(17, 46, 76, 0.95)
  );
  color: #ffffff;
}

.contact-hero-content {
  max-width: 850px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.contact-hero-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Kontaktní informace */

.contact-overview {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.contact-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 45px;
  align-items: start;
}

.contact-information h2,
.contact-preparation h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.contact-information h2 {
  color: #0d1b2a;
}

.contact-information-intro {
  max-width: 720px;
  margin: 0 0 35px;
  color: #536273;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 28px 30px;
  border: 1px solid #e1e7ee;
  border-left: 4px solid #ff7a00;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 9px 28px rgba(13, 27, 42, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 15px 36px rgba(13, 27, 42, 0.11);
  transform: translateX(5px);
}

.contact-card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #e86f00;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 1.25rem;
  line-height: 1.4;
}

.contact-card h3 a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.contact-card h3 a:hover {
  color: #ff7a00;
}

.contact-card p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

/* Informační karta vedle kontaktů */

.contact-preparation {
  position: sticky;
  top: 125px;
  padding: 38px;
  border-radius: 18px;
  background-color: #0f2942;
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 27, 42, 0.17);
}

.contact-preparation h2 {
  color: #ffffff;
}

.contact-preparation-list {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.contact-preparation-list li {
  position: relative;
  padding-left: 31px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.contact-preparation-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff8a1f;
  font-weight: 900;
}

.contact-preparation-note {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

/* Kontaktní formulář */

.inquiry-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.inquiry-section > .container > .section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.inquiry-section .section-heading h2,
.contact-next-steps .section-heading h2 {
  margin-bottom: 18px;
  color: #0d1b2a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.inquiry-section .section-heading > p:last-child {
  color: #536273;
  line-height: 1.8;
}

#kontaktni-formular {
  scroll-margin-top: 100px;
}

.inquiry-form {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid #e1e7ee;
  border-radius: 20px;
  background-color: #f8fafc;
  box-shadow: 0 16px 45px rgba(13, 27, 42, 0.09);
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field-full {
  margin-top: 24px;
}

.form-field label {
  color: #172333;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-field label span,
.form-consent label span {
  color: #e86f00;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ccd5df;
  border-radius: 10px;
  background-color: #ffffff;
  color: #172333;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 190px;
  padding: 15px;
  line-height: 1.7;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a96a3;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #aab6c3;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff7a00;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.13);
}

/* Skryté protispamové pole */

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Souhlas se zpracováním údajů */

.form-consent {
  display: flex;
  margin-top: 24px;
  gap: 12px;
  align-items: flex-start;
}

.form-consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: #ff7a00;
  cursor: pointer;
}

.form-consent label {
  color: #465568;
  font-size: 0.94rem;
  line-height: 1.65;
  cursor: pointer;
}

/* Spodní část formuláře */

.inquiry-form-footer {
  display: flex;
  margin-top: 32px;
  padding-top: 28px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dfe5ec;
}

.inquiry-form-footer p {
  max-width: 540px;
  margin: 0;
  color: #647284;
  font-size: 0.9rem;
  line-height: 1.65;
}

.inquiry-submit {
  flex: 0 0 auto;
  padding: 16px 24px;
  border: 0;
  border-radius: 9px;
  background-color: #ff7a00;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(255, 122, 0, 0.25);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.inquiry-submit:hover {
  background-color: #e86f00;
  box-shadow: 0 13px 30px rgba(255, 122, 0, 0.34);
  transform: translateY(-2px);
}

.inquiry-submit:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

/* Co bude následovat */

.contact-next-steps {
  padding: 90px 0;
  background-color: #f7f9fc;
}

.contact-next-steps .section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.contact-next-step {
  padding: 34px;
  border: 1px solid #e1e7ee;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-next-step:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.11);
  transform: translateY(-5px);
}

.contact-next-step > span {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff7a00;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.contact-next-step h3 {
  margin-bottom: 14px;
  color: #0d1b2a;
  font-size: 1.35rem;
  line-height: 1.35;
}

.contact-next-step p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}
/* ==================================================
   STAVOVÉ ZPRÁVY KONTAKTNÍHO FORMULÁŘE
================================================== */

.form-status {
  display: flex;
  max-width: 1080px;
  margin: 0 auto 24px;
  padding: 20px 22px;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.08);
}

.form-status[hidden] {
  display: none;
}

.form-status-icon {
  display: flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
}

.form-status-content h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.form-status-content p {
  margin: 0;
  line-height: 1.65;
}

/* Úspěšné odeslání */

.form-status-success {
  border-color: #9dd9ae;
  background-color: #edf9f1;
  color: #176536;
}

.form-status-success .form-status-icon {
  background-color: #23934c;
}

/* Chyba při odesílání */

.form-status-error {
  border-color: #efb1b1;
  background-color: #fff1f1;
  color: #971f1f;
}

.form-status-error .form-status-icon {
  background-color: #d83a3a;
}
/* ==================================================
   PŘÍLOHY KONTAKTNÍHO FORMULÁŘE
================================================== */

.form-field-optional {
  color: #728093;
  font-size: 0.87rem;
  font-weight: 600;
}

.form-attachments {
  padding: 25px;
  border: 1px dashed #bdc8d4;
  border-radius: 14px;
  background-color: #ffffff;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-attachments:hover {
  border-color: #ff7a00;
  background-color: #fffaf5;
}

.form-attachments:focus-within {
  border-color: #ff7a00;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.13);
}

.form-attachments input[type="file"] {
  width: 100%;
  min-height: auto;
  padding: 8px;
  border: 1px solid #d4dce5;
  border-radius: 10px;
  background-color: #f8fafc;
  color: #536273;
  font-size: 0.94rem;
  cursor: pointer;
}

.form-attachments input[type="file"]:hover {
  border-color: #aab6c3;
}

.form-attachments input[type="file"]:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: none;
}

.form-attachments input[type="file"]::file-selector-button {
  margin-right: 16px;
  padding: 12px 17px;
  border: 0;
  border-radius: 8px;
  background-color: #0f2942;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.form-attachments input[type="file"]::file-selector-button:hover {
  background-color: #ff7a00;
  transform: translateY(-1px);
}

.form-help {
  margin: 3px 0 0;
  color: #647284;
  font-size: 0.88rem;
  line-height: 1.7;
}

.form-security-note {
  position: relative;
  margin: 3px 0 0;
  padding: 14px 16px 14px 42px;
  border: 1px solid #f1d5b9;
  border-radius: 10px;
  background-color: #fff8f1;
  color: #795026;
  font-size: 0.86rem;
  line-height: 1.65;
}

.form-security-note::before {
  content: "!";
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}
/* ==================================================
   DOMOVSKÁ STRÁNKA – ÚVODNÍ ČÁST
================================================== */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 122, 0, 0.14),
      transparent 32%
    ),
    linear-gradient(135deg, #0b2136 0%, #153551 100%);
  color: #ffffff;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -230px;
  left: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 122, 0, 0.12);
  border-radius: 50%;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.home-hero-text {
  max-width: 680px;
}

.home-hero-label {
  margin: 0 0 20px;
  color: #ff7a00;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.home-hero-description {
  max-width: 640px;
  margin: 28px 0 0;
  color: #d6e0e9;
  font-size: 1.08rem;
  line-height: 1.85;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.home-primary-button,
.home-secondary-button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-primary-button {
  border: 1px solid #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 122, 0, 0.24);
}

.home-primary-button:hover {
  border-color: #ff8d24;
  background-color: #ff8d24;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.31);
}

.home-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.home-secondary-button:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #102a43;
  transform: translateY(-2px);
}

.home-primary-button:focus-visible,
.home-secondary-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.home-hero-note {
  position: relative;
  margin: 24px 0 0;
  padding-left: 25px;
  color: #aebdcc;
  font-size: 0.88rem;
  line-height: 1.7;
}

.home-hero-note::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff7a00;
  font-weight: 900;
}

.home-hero-overview {
  display: grid;
  gap: 17px;
}

.home-benefit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 19px;
  padding: 24px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.home-benefit:hover {
  border-color: rgba(255, 122, 0, 0.55);
  background-color: rgba(255, 255, 255, 0.105);
  transform: translateY(-3px);
}

.home-benefit-number {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 122, 0, 0.48);
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.12);
  color: #ff8a1c;
  font-size: 0.9rem;
  font-weight: 900;
}

.home-benefit h2 {
  margin: 1px 0 7px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.4;
}

.home-benefit p {
  margin: 0;
  color: #bdcad5;
  font-size: 0.91rem;
  line-height: 1.7;
}
/* ==================================================
   DOMOVSKÁ STRÁNKA – VYBRANÉ REALIZACE
================================================== */

.home-projects {
  padding: 105px 0;
  background-color: #f5f7fa;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 70px;
  margin-bottom: 48px;
  align-items: end;
}

.home-section-label {
  margin: 0 0 13px;
  color: #ff7a00;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-section-heading h2 {
  max-width: 650px;
  margin: 0;
  color: #102a43;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.home-section-description {
  max-width: 530px;
  margin: 0;
  color: #617184;
  font-size: 0.98rem;
  line-height: 1.8;
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-project-card {
  overflow: hidden;
  border: 1px solid #e2e8ef;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 41, 66, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home-project-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(15, 41, 66, 0.14);
}

.home-project-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid #e8edf2;
  background-color: #eef2f6;
}

.home-project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.home-project-card:hover .home-project-image img {
  transform: scale(1.025);
}

.home-project-content {
  padding: 31px 31px 34px;
}

.home-project-type {
  display: inline-flex;
  margin: 0 0 17px;
  padding: 7px 11px;
  border-radius: 999px;
  background-color: #fff0e2;
  color: #d85f00;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-project-content h3 {
  margin: 0 0 14px;
  color: #102a43;
  font-size: 1.55rem;
  line-height: 1.3;
}

.home-project-content > p:not(.home-project-type) {
  margin: 0;
  color: #5d6d7e;
  font-size: 0.94rem;
  line-height: 1.78;
}

.home-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.home-project-tags li {
  padding: 7px 10px;
  border: 1px solid #dde5ed;
  border-radius: 7px;
  background-color: #f7f9fb;
  color: #42566a;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

.home-projects-action {
  display: flex;
  margin-top: 43px;
  justify-content: center;
}

.home-projects-button {
  display: inline-flex;
  min-height: 53px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid #102a43;
  border-radius: 10px;
  background-color: #102a43;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 11px 25px rgba(15, 41, 66, 0.17);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-projects-button:hover {
  border-color: #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.25);
}

.home-projects-button:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.4);
  outline-offset: 4px;
}
/* ==================================================
   DOMOVSKÁ STRÁNKA – ODKAZ NA SPOLUPRÁCI
================================================== */

.home-cooperation-link {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(255, 122, 0, 0.17),
      transparent 30%
    ),
    linear-gradient(135deg, #0b2136 0%, #153551 100%);
  color: #ffffff;
}

.home-cooperation-link::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.home-cooperation-link-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 55px;
  align-items: center;
  justify-content: space-between;
}

.home-cooperation-link-text {
  max-width: 720px;
}

.home-cooperation-link-label {
  margin: 0 0 12px;
  color: #ff7a00;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-cooperation-link h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.home-cooperation-link-text > p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: #c2cfda;
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-cooperation-link-button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 55px;
  padding: 14px 22px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff7a00;
  border-radius: 10px;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 13px 28px rgba(255, 122, 0, 0.25);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-cooperation-link-button span {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.home-cooperation-link-button:hover {
  border-color: #ff8d24;
  background-color: #ff8d24;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(255, 122, 0, 0.32);
}

.home-cooperation-link-button:hover span {
  transform: translateX(4px);
}

.home-cooperation-link-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}
/* ==================================================
   DOMOVSKÁ STRÁNKA – KRÁTKÉ PŘEDSTAVENÍ O MNĚ
================================================== */

.home-about-preview {
  padding: 105px 0;
  background-color: #ffffff;
}

.home-about-preview-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: center;
}

.home-about-visual {
  position: relative;
  display: flex;
  min-height: 450px;
  padding: 42px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(255, 122, 0, 0.25),
      transparent 32%
    ),
    linear-gradient(145deg, #0b2136 0%, #183c5a 100%);
  box-shadow: 0 25px 55px rgba(15, 41, 66, 0.18);
  color: #ffffff;
}

.home-about-visual::before {
  content: "";
  position: absolute;
  top: -105px;
  right: -95px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.home-about-visual::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 65px;
  height: 4px;
  border-radius: 999px;
  background-color: #ff7a00;
}

.home-about-monogram {
  position: relative;
  z-index: 1;
  display: flex;
  width: 170px;
  height: 170px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 122, 0, 0.65);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.035),
    0 20px 40px rgba(0, 0, 0, 0.16);
}

.home-about-identity {
  position: relative;
  z-index: 1;
  padding-right: 90px;
}

.home-about-identity p {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.35;
}

.home-about-identity span {
  color: #ff9638;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-about-text {
  max-width: 720px;
}

.home-about-label {
  margin: 0 0 13px;
  color: #ff7a00;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-about-text h2 {
  margin: 0 0 25px;
  color: #102a43;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.home-about-text > p:not(.home-about-label) {
  margin: 0 0 17px;
  color: #5d6d7e;
  font-size: 0.98rem;
  line-height: 1.85;
}

.home-about-button {
  display: inline-flex;
  min-height: 53px;
  margin-top: 15px;
  padding: 14px 22px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #102a43;
  border-radius: 10px;
  background-color: #102a43;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 26px rgba(15, 41, 66, 0.17);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-about-button span {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.home-about-button:hover {
  border-color: #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.25);
}

.home-about-button:hover span {
  transform: translateX(4px);
}

.home-about-button:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.4);
  outline-offset: 4px;
}
/* ==================================================
   DOMOVSKÁ STRÁNKA – ZÁVĚREČNÁ VÝZVA K POPTÁVCE
================================================== */

.home-final-cta {
  padding: 0 0 105px;
  background-color: #ffffff;
}

.home-final-cta-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 70px;
  padding: 58px 62px;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 122, 0, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #0b2136 0%, #183c5a 100%);
  color: #ffffff;
  box-shadow: 0 25px 55px rgba(15, 41, 66, 0.18);
}

.home-final-cta-content::before {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -175px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.home-final-cta-text,
.home-final-cta-action {
  position: relative;
  z-index: 1;
}

.home-final-cta-label {
  margin: 0 0 12px;
  color: #ff8a1c;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.home-final-cta-text > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: #c6d2dd;
  font-size: 0.98rem;
  line-height: 1.8;
}

.home-final-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-final-cta-button {
  display: inline-flex;
  min-height: 56px;
  padding: 15px 23px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff7a00;
  border-radius: 10px;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-final-cta-button span {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.home-final-cta-button:hover {
  border-color: #ff922f;
  background-color: #ff922f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 122, 0, 0.35);
}

.home-final-cta-button:hover span {
  transform: translateX(4px);
}

.home-final-cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.home-final-cta-action > p {
  max-width: 390px;
  margin: 17px 0 0;
  color: #aebdcc;
  font-size: 0.82rem;
  line-height: 1.65;
}
/* ==================================================
   STRÁNKA O MNĚ – ÚVODNÍ ČÁST
================================================== */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 122, 0, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #0b2136 0%, #173a57 100%);
  color: #ffffff;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 122, 0, 0.12);
  border-radius: 50%;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.about-hero-text {
  max-width: 760px;
}

.about-page-label {
  margin: 0 0 19px;
  color: #ff7a00;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.about-hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d3dee8;
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.about-primary-button,
.about-secondary-button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 850;
  text-align: center;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-primary-button {
  border: 1px solid #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  box-shadow: 0 13px 29px rgba(255, 122, 0, 0.26);
}

.about-primary-button:hover {
  border-color: #ff902b;
  background-color: #ff902b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 17px 35px rgba(255, 122, 0, 0.33);
}

.about-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.about-secondary-button:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #102a43;
  transform: translateY(-2px);
}

.about-primary-button:focus-visible,
.about-secondary-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.about-hero-card {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: 39px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.about-hero-card::before {
  content: "";
  position: absolute;
  top: -85px;
  right: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 50%;
}

.about-hero-monogram {
  position: relative;
  z-index: 1;
  display: flex;
  width: 145px;
  height: 145px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 122, 0, 0.7);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 3.7rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.03),
    0 18px 38px rgba(0, 0, 0, 0.17);
}

.about-hero-identity {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 45px;
}

.about-hero-identity p {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 850;
  line-height: 1.35;
}

.about-hero-identity span {
  color: #ff9638;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero-card-text {
  position: relative;
  z-index: 1;
  margin: 21px 0 0;
  color: #c2cfda;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ==================================================
   STRÁNKA O MNĚ – MŮJ PŘÍBĚH
================================================== */

.about-story {
  padding: 105px 0;
  background-color: #ffffff;
}

.about-story-content {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.about-story-heading {
  position: sticky;
  top: 135px;
}

.about-section-label {
  margin: 0 0 13px;
  color: #ff7a00;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-story-heading h2,
.about-values-heading h2,
.about-expectations h2 {
  margin: 0;
  color: #102a43;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.about-story-text {
  padding-left: 38px;
  border-left: 3px solid #ff7a00;
}

.about-story-text p {
  margin: 0 0 23px;
  color: #5d6d7e;
  font-size: 1rem;
  line-height: 1.9;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

/* ==================================================
   STRÁNKA O MNĚ – HODNOTY A PŘÍSTUP
================================================== */

.about-values {
  padding: 105px 0;
  background-color: #f5f7fa;
}

.about-values-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-values-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: #617184;
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #e0e7ee;
  border-radius: 17px;
  background-color: #ffffff;
  box-shadow: 0 15px 38px rgba(15, 41, 66, 0.07);
  transition:
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.about-value-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 4px;
  border-radius: 0 0 0 999px;
  background-color: #ff7a00;
}

.about-value-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
  transform: translateY(-5px);
  box-shadow: 0 22px 47px rgba(15, 41, 66, 0.12);
}

.about-value-number {
  display: flex;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 50%;
  background-color: #fff4e9;
  color: #df6500;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-value-card h3 {
  margin: 0 0 12px;
  color: #102a43;
  font-size: 1.3rem;
  line-height: 1.35;
}

.about-value-card p {
  margin: 0;
  color: #607083;
  font-size: 0.94rem;
  line-height: 1.78;
}

/* ==================================================
   STRÁNKA O MNĚ – CO MŮŽETE OČEKÁVAT
================================================== */

.about-expectations {
  padding: 105px 0;
  background-color: #ffffff;
}

.about-expectations-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 78px;
  align-items: center;
}

.about-expectations-text {
  max-width: 720px;
}

.about-expectations-text > p:not(.about-section-label) {
  margin: 22px 0 0;
  color: #5d6d7e;
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-expectations-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 20px 31px;
  overflow: hidden;
  border-radius: 19px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(255, 122, 0, 0.18),
      transparent 35%
    ),
    linear-gradient(145deg, #0b2136 0%, #183c5a 100%);
  box-shadow: 0 22px 50px rgba(15, 41, 66, 0.18);
  list-style: none;
}

.about-expectations-list li {
  position: relative;
  padding: 21px 0 21px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #e2eaf1;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.about-expectations-list li:last-child {
  border-bottom: 0;
}

.about-expectations-list li::before {
  content: "✓";
  position: absolute;
  top: 21px;
  left: 0;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.16);
  color: #ff8b20;
  font-size: 0.82rem;
  font-weight: 900;
}

/* ==================================================
   STRÁNKA O MNĚ – ZÁVĚREČNÁ VÝZVA
================================================== */

.about-final-cta {
  padding: 0 0 105px;
  background-color: #ffffff;
}

.about-final-cta-content {
  position: relative;
  display: flex;
  gap: 60px;
  padding: 57px 61px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 91% 18%,
      rgba(255, 122, 0, 0.23),
      transparent 31%
    ),
    linear-gradient(135deg, #0b2136 0%, #173a57 100%);
  color: #ffffff;
  box-shadow: 0 25px 55px rgba(15, 41, 66, 0.18);
}

.about-final-cta-content::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.about-final-cta-content > div,
.about-final-cta-button {
  position: relative;
  z-index: 1;
}

.about-final-cta-content > div {
  max-width: 720px;
}

.about-final-cta-label {
  margin: 0 0 12px;
  color: #ff8b20;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.7vw, 2.85rem);
  line-height: 1.17;
  letter-spacing: -0.03em;
}

.about-final-cta-content > div > p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  color: #c2cfda;
  font-size: 0.96rem;
  line-height: 1.78;
}

.about-final-cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 15px 23px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff7a00;
  border-radius: 10px;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-final-cta-button span {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.about-final-cta-button:hover {
  border-color: #ff922f;
  background-color: #ff922f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 122, 0, 0.35);
}

.about-final-cta-button:hover span {
  transform: translateX(4px);
}

.about-final-cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}
/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – ÚVODNÍ ČÁST
================================================== */

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 88px;
  background:
    radial-gradient(
      circle at 87% 18%,
      rgba(255, 122, 0, 0.17),
      transparent 32%
    ),
    linear-gradient(135deg, #0b2136 0%, #173a57 100%);
  color: #ffffff;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: -175px;
  right: -130px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: -235px;
  left: -175px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 122, 0, 0.13);
  border-radius: 50%;
}

.privacy-hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.privacy-page-label {
  margin: 0 0 18px;
  color: #ff7a00;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.privacy-hero-description {
  max-width: 760px;
  margin: 27px 0 0;
  color: #d1dde7;
  font-size: 1.05rem;
  line-height: 1.85;
}

.privacy-update {
  display: inline-flex;
  margin: 29px 0 0;
  padding: 10px 15px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  color: #b9c7d3;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – HLAVNÍ ROZVRŽENÍ
================================================== */

.privacy-content {
  padding: 105px 0;
  background-color: #f5f7fa;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 46px;
  align-items: start;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – STRUČNÝ PŘEHLED
================================================== */

.privacy-summary {
  position: sticky;
  top: 125px;
  overflow: hidden;
  padding: 33px 30px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(255, 122, 0, 0.19),
      transparent 34%
    ),
    linear-gradient(145deg, #0b2136 0%, #183c5a 100%);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(15, 41, 66, 0.16);
}

.privacy-summary::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.privacy-summary-label {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #ff8b20;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-summary h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.privacy-summary-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-summary-list li {
  position: relative;
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e2ea;
  font-size: 0.9rem;
  line-height: 1.55;
}

.privacy-summary-list li:last-child {
  border-bottom: 0;
}

.privacy-summary-list li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 0;
  display: flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.16);
  color: #ff922f;
  font-size: 0.73rem;
  font-weight: 900;
}

.privacy-summary-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #aebdca;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – JEDNOTLIVÉ ČÁSTI
================================================== */

.privacy-article {
  display: grid;
  gap: 24px;
}

.privacy-section {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 25px;
  padding: 36px 38px;
  overflow: hidden;
  border: 1px solid #e0e7ee;
  border-radius: 19px;
  background-color: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 41, 66, 0.065);
}

.privacy-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 4px;
  border-radius: 0 0 0 999px;
  background-color: #ff7a00;
}

.privacy-section-number {
  display: flex;
  width: 51px;
  height: 51px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 122, 0, 0.34);
  border-radius: 50%;
  background-color: #fff4e9;
  color: #df6500;
  font-size: 0.82rem;
  font-weight: 900;
}

.privacy-section h2 {
  margin: 4px 0 20px;
  color: #102a43;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.privacy-section h3 {
  margin: 0 0 10px;
  color: #102a43;
  font-size: 1.12rem;
  line-height: 1.4;
}

.privacy-section p {
  margin: 0 0 17px;
  color: #5d6d7e;
  font-size: 0.95rem;
  line-height: 1.85;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: #d96500;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(217, 101, 0, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 0.22s ease,
    text-decoration-color 0.22s ease;
}

.privacy-section a:hover {
  color: #a84e00;
  text-decoration-color: currentColor;
}

.privacy-section a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 122, 0, 0.28);
  outline-offset: 4px;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – KONTAKTNÍ KARTA
================================================== */

.privacy-contact-card {
  margin: 21px 0;
  padding: 23px 25px;
  border-left: 4px solid #ff7a00;
  border-radius: 0 13px 13px 0;
  background-color: #f4f7fa;
  color: #4f6173;
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.75;
}

.privacy-contact-card strong {
  color: #102a43;
  font-size: 1.08rem;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – SEZNAMY
================================================== */

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 21px 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 29px;
  color: #5d6d7e;
  font-size: 0.94rem;
  line-height: 1.75;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff7a00;
  box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.1);
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – UPOZORNĚNÍ
================================================== */

.privacy-warning {
  margin-top: 27px;
  padding: 22px 24px;
  border: 1px solid #f1cba8;
  border-radius: 14px;
  background-color: #fff7ef;
}

.privacy-warning > strong {
  display: block;
  margin-bottom: 8px;
  color: #a94e00;
  font-size: 0.95rem;
}

.privacy-warning p {
  margin: 0;
  color: #71553c;
  font-size: 0.89rem;
  line-height: 1.72;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – ÚČELY ZPRACOVÁNÍ
================================================== */

.privacy-purpose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 24px;
}

.privacy-purpose {
  padding: 23px;
  border: 1px solid #e1e8ef;
  border-radius: 14px;
  background-color: #f8fafc;
}

.privacy-purpose p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.privacy-legal-basis {
  margin-top: 16px !important;
  padding-top: 15px;
  border-top: 1px solid #dfe7ee;
  color: #53667a !important;
  font-size: 0.84rem !important;
}

.privacy-legal-basis strong {
  color: #d96300;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – COOKIE KARTA
================================================== */

.privacy-cookie-card {
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 15px;
  background-color: #f8fafc;
}

.privacy-cookie-card dl {
  margin: 0;
}

.privacy-cookie-card dl > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-bottom: 1px solid #dfe7ee;
}

.privacy-cookie-card dl > div:last-child {
  border-bottom: 0;
}

.privacy-cookie-card dt,
.privacy-cookie-card dd {
  margin: 0;
  padding: 17px 19px;
  font-size: 0.89rem;
  line-height: 1.65;
}

.privacy-cookie-card dt {
  border-right: 1px solid #dfe7ee;
  background-color: #edf2f6;
  color: #102a43;
  font-weight: 850;
}

.privacy-cookie-card dd {
  color: #5d6d7e;
  overflow-wrap: anywhere;
}

/* ==================================================
   OCHRANA OSOBNÍCH ÚDAJŮ – ZVÝRAZNĚNÍ SEKCE
================================================== */

.privacy-section:target {
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow:
    0 0 0 4px rgba(255, 122, 0, 0.08),
    0 18px 42px rgba(15, 41, 66, 0.1);
}
.form-consent a {
  position: relative;
  z-index: 2;
  color: #d96500;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(217, 101, 0, 0.4);
  text-underline-offset: 3px;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.form-consent a:hover {
  color: #a84e00;
  text-decoration-color: currentColor;
}

.form-consent a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 122, 0, 0.3);
  outline-offset: 3px;
}
/* ==================================================
   SPOLEČNÁ PATIČKA WEBU
================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #091d30;
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.11), transparent 68%);
  pointer-events: none;
}

.site-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(330px, 1.35fr)
    minmax(190px, 0.65fr)
    minmax(280px, 0.9fr);
  gap: 70px;
  padding-top: 78px;
  padding-bottom: 70px;
}

/* Značka */

.site-footer-brand-column {
  max-width: 520px;
}

.site-footer-brand {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: #ffffff;
}

.site-footer-brand:hover {
  color: #ffffff;
}

.site-footer-monogram {
  display: flex;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 122, 0, 0.72);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.025),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.site-footer-brand-text {
  display: flex;
  flex-direction: column;
}

.site-footer-brand-text strong {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.site-footer-brand-text small {
  margin-top: 4px;
  color: #ff922f;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.45;
}

.site-footer-description {
  max-width: 500px;
  margin: 25px 0 0;
  color: #aebdca;
  font-size: 0.91rem;
  line-height: 1.8;
}

/* Sociální sítě */

.site-footer-socials {
  display: flex;
  gap: 11px;
  margin-top: 27px;
}

.site-footer-socials a {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background-color: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.site-footer-socials a:hover {
  border-color: #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 122, 0, 0.24);
}

.site-footer-socials a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.site-footer-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

/* Společné sloupce */

.site-footer-column h2 {
  position: relative;
  margin: 5px 0 25px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.site-footer-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background-color: #ff7a00;
}

/* Navigace */

.site-footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links a {
  position: relative;
  display: inline-block;
  padding-left: 17px;
  color: #b8c6d1;
  font-size: 0.9rem;
  line-height: 1.55;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.site-footer-links a::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff7a00;
  transform: translateY(-50%);
}

.site-footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.site-footer-links a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

/* Kontakt */

.site-footer-contact {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-contact li > span {
  display: block;
  margin-bottom: 5px;
  color: #ff922f;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-contact a,
.site-footer-contact p {
  margin: 0;
  color: #b8c6d1;
  font-size: 0.89rem;
  line-height: 1.65;
}

.site-footer-contact a {
  overflow-wrap: anywhere;
  transition: color 0.22s ease;
}

.site-footer-contact a:hover {
  color: #ffffff;
}

.site-footer-contact a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

.site-footer-contact-button {
  display: inline-flex;
  min-height: 51px;
  margin-top: 28px;
  padding: 13px 19px;
  gap: 11px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff7a00;
  border-radius: 10px;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 27px rgba(255, 122, 0, 0.22);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.site-footer-contact-button > span {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.site-footer-contact-button:hover {
  border-color: #ff922f;
  background-color: #ff922f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 33px rgba(255, 122, 0, 0.3);
}

.site-footer-contact-button:hover > span {
  transform: translateX(4px);
}

.site-footer-contact-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

/* Spodní část patičky */

.site-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.095);
  background-color: rgba(0, 0, 0, 0.13);
}

.site-footer-bottom-content {
  display: flex;
  min-height: 78px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.site-footer-bottom-content p {
  margin: 0;
  color: #899baa;
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-footer-legal a {
  color: #aebdca;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(174, 189, 202, 0.3);
  text-underline-offset: 4px;
  transition:
    color 0.22s ease,
    text-decoration-color 0.22s ease;
}

.site-footer-legal a:hover {
  color: #ffffff;
  text-decoration-color: #ff7a00;
}

.site-footer-legal a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

/* =========================
   MENŠÍ OBRAZOVKY
========================= */

@media (max-width: 1050px) {
  .header-content {
    position: relative;
    min-height: 82px;
    gap: 18px;
  }

  .brand-logo {
    width: 110px;
  }
  .header-tagline {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #263442;
    line-height: 1.15;
    text-align: center;
  }

  .header-tagline span {
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .header-tagline strong {
    color: #ff7a00;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 12px 20px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-header);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 12px;
    text-align: center;
    border-radius: 6px;
  }

  .main-nav a:not(.nav-button)::after {
    display: none;
  }

  .main-nav a:not(.nav-button):hover,
  .main-nav a.active {
    color: var(--color-accent);
    background-color: var(--color-light);
  }

  .main-nav .nav-button {
    margin: 8px 0 0;
    text-align: center;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .cooperation-info-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cooperation-cta {
    align-self: flex-start;
  }
  .services-hero {
    padding: 85px 0;
  }

  .services-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .additional-services-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .additional-services-content > div:first-child {
    position: static;
    max-width: 760px;
  }

  .services-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-cta-content .cooperation-cta {
    align-self: flex-start;
  }
  .portfolio-hero {
    padding: 85px 0;
  }

  .portfolio-project {
    grid-template-columns: 1fr;
  }

  .portfolio-project-image {
    min-height: 430px;
  }

  .portfolio-project-reverse .portfolio-project-image {
    order: 1;
  }

  .portfolio-project-reverse .portfolio-project-content {
    order: 2;
  }

  .portfolio-project-content {
    padding: 42px;
  }

  .portfolio-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-cta-content .cooperation-cta {
    align-self: flex-start;
  }
  .contact-hero {
    padding: 85px 0;
  }

  .contact-overview-grid {
    grid-template-columns: 1fr;
  }

  .contact-preparation {
    position: static;
  }

  .inquiry-form {
    padding: 42px;
  }

  .inquiry-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-next-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero {
    padding: 86px 0;
  }

  .home-hero-content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-hero-text {
    max-width: 790px;
  }

  .home-hero-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .home-benefit {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .home-benefit-number {
    width: 48px;
    height: 48px;
  }
  .home-projects {
    padding: 88px 0;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 40px;
  }

  .home-section-description {
    max-width: 700px;
  }

  .home-projects-grid {
    gap: 21px;
  }

  .home-project-content {
    padding: 27px 25px 30px;
  }
  .home-about-preview {
    padding: 88px 0;
  }

  .home-about-preview-content {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
  }

  .home-about-visual {
    min-height: 390px;
    padding: 34px;
  }

  .home-about-monogram {
    width: 140px;
    height: 140px;
    font-size: 3.5rem;
  }

  .home-about-visual::after {
    right: 34px;
    bottom: 34px;
  }
  .home-final-cta {
    padding-bottom: 88px;
  }

  .home-final-cta-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 46px;
  }

  .home-final-cta-action {
    align-items: flex-start;
  }
  .about-hero {
    padding: 86px 0;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-hero-text {
    max-width: 800px;
  }

  .about-hero-card {
    width: 100%;
    max-width: 620px;
    min-height: 390px;
  }

  .about-story,
  .about-values,
  .about-expectations {
    padding: 88px 0;
  }

  .about-story-content {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .about-story-heading {
    position: static;
    max-width: 760px;
  }

  .about-story-text {
    max-width: 850px;
  }

  .about-expectations-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-expectations-list {
    max-width: 760px;
  }

  .about-final-cta {
    padding-bottom: 88px;
  }

  .about-final-cta-content {
    flex-direction: column;
    gap: 33px;
    padding: 50px 46px;
    align-items: flex-start;
  }
  .privacy-hero {
    padding: 84px 0 79px;
  }

  .privacy-content {
    padding: 88px 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-summary {
    position: relative;
    top: auto;
  }

  .privacy-summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }

  .privacy-purpose-list {
    grid-template-columns: 1fr;
  }
  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 60px;
    padding-top: 68px;
    padding-bottom: 62px;
  }

  .site-footer-brand-column {
    grid-column: 1 / -1;
    max-width: 720px;
  }

  .site-footer-description {
    max-width: 650px;
  }
  .guide-image img {
    cursor: zoom-in;
  }

  .image-viewer[hidden] {
    display: none;
  }

  .image-viewer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: block;
    padding: 72px 16px 24px;
    background-color: rgba(7, 24, 39, 0.92);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .image-viewer-dialog {
    position: relative;
    width: min(180vw, 1400px);
    margin: 0;
  }

  .image-viewer-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    border-radius: 10px;
    background-color: #ffffff;
  }

  .image-viewer-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(7, 24, 39, 0.9);
    color: #ffffff;
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    place-items: center;
  }

  .image-viewer-close:focus-visible {
    outline: 3px solid #ff7a00;
    outline-offset: 3px;
  }

  body.image-viewer-open {
    overflow: hidden;
  }
}

/* =========================
   MOBILNÍ ZOBRAZENÍ
========================= */

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-content {
    min-height: 74px;
    gap: 8px;
  }

  .brand-logo {
    width: 95px;
  }
  .header-tagline {
    gap: 1px;
  }

  .header-tagline span {
    font-size: clamp(0.62rem, 3.1vw, 0.78rem);
  }

  .header-tagline strong {
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .guide-hero {
    padding: 75px 0;
  }

  .guide-hero-content {
    text-align: left;
  }

  .guide-introduction {
    margin-left: 0;
  }

  .guide-note {
    padding: 18px;
  }

  .guide-section {
    padding: 65px 0;
  }

  .guide-cards {
    grid-template-columns: 1fr;
  }

  .guide-card {
    padding: 26px;
  }

  .guide-preparation {
    padding: 65px 0;
  }

  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .preparation-card {
    padding: 26px;
  }

  .ownership-box {
    flex-direction: column;
    padding: 24px;
  }

  .registration-guide {
    padding: 65px 0;
  }

  .guide-step {
    padding: 24px;
  }

  .guide-step-heading {
    align-items: flex-start;
  }

  .guide-step-number {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .guide-step-heading h3 {
    font-size: 1.3rem;
  }

  .guide-step-description {
    font-size: 1rem;
  }

  .guide-image figcaption {
    padding: 12px;
    font-size: 0.85rem;
  }

  .faq-section {
    padding: 65px 0;
  }

  .faq-section .section-heading {
    margin-bottom: 36px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    padding: 18px;
    gap: 14px;
    font-size: 1rem;
  }

  .faq-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .faq-answer p {
    padding-top: 18px;
  }

  .cooperation-hero {
    padding: 75px 0;
  }

  .cooperation-hero-content {
    text-align: left;
  }

  .cooperation-hero-content > p:not(.section-label) {
    margin-left: 0;
  }

  .cooperation-process {
    padding: 65px 0;
  }

  .cooperation-process .section-heading {
    margin-bottom: 40px;
  }

  .cooperation-steps {
    gap: 20px;
  }

  .cooperation-steps::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
  }

  .cooperation-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .cooperation-step-number {
    width: 44px;
    height: 44px;
    border-width: 4px;
    font-size: 1rem;
  }

  .cooperation-step-content {
    padding: 22px 20px;
  }

  .cooperation-step-content h3 {
    font-size: 1.25rem;
  }

  .cooperation-info {
    padding: 60px 0;
  }

  .cooperation-info-content {
    gap: 30px;
  }

  .cooperation-cta {
    width: 100%;
    text-align: center;
  }
  .services-hero {
    padding: 70px 0;
  }

  .services-hero-content {
    text-align: left;
  }

  .services-hero-content > p:not(.section-label) {
    margin-right: 0;
    margin-left: 0;
    font-size: 1rem;
  }

  .services-hero .guide-button {
    width: 100%;
    text-align: center;
  }

  .services-offer,
  .services-included,
  .additional-services {
    padding: 70px 0;
  }

  .services-offer .section-heading,
  .services-included .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .services-offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-offer-card {
    padding: 28px 24px;
  }

  .service-offer-number {
    margin-bottom: 18px;
    font-size: 1.6rem;
  }

  .services-included-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-item {
    padding: 18px;
    align-items: flex-start;
  }

  .included-item span {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .additional-services-content {
    gap: 35px;
  }

  .additional-services-list article {
    padding: 24px 22px;
  }

  .additional-services-list article:hover {
    transform: translateY(-3px);
  }

  .services-cta-section {
    padding: 60px 0;
  }

  .services-cta-content {
    gap: 30px;
  }

  .services-cta-content .cooperation-cta {
    width: 100%;
    text-align: center;
  }
  .portfolio-hero {
    padding: 70px 0;
  }

  .portfolio-hero-content {
    text-align: left;
  }

  .portfolio-hero-content > p:not(.section-label) {
    margin-right: 0;
    margin-left: 0;
    font-size: 1rem;
  }

  .portfolio-hero .guide-button {
    width: 100%;
    text-align: center;
  }

  .portfolio-projects,
  .portfolio-benefits {
    padding: 70px 0;
  }

  .portfolio-projects > .container > .section-heading,
  .portfolio-benefits .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .portfolio-project {
    margin-bottom: 30px;
    border-radius: 15px;
  }

  .portfolio-project-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .portfolio-project-content {
    padding: 30px 24px;
  }

  .portfolio-project-content h3 {
    font-size: 1.8rem;
  }

  .portfolio-project-tags {
    margin-bottom: 23px;
  }

  .portfolio-project-features {
    margin-bottom: 27px;
  }

  .portfolio-project-link {
    width: 100%;
    text-align: center;
  }

  .portfolio-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-benefit-card {
    padding: 28px 24px;
  }

  .portfolio-cta-section {
    padding: 60px 0;
  }

  .portfolio-cta-content {
    gap: 30px;
  }

  .portfolio-cta-content .cooperation-cta {
    width: 100%;
    text-align: center;
  }
  .contact-hero {
    padding: 70px 0;
  }

  .contact-hero-content {
    text-align: left;
  }

  .contact-hero-content > p:not(.section-label) {
    margin-right: 0;
    margin-left: 0;
    font-size: 1rem;
  }

  .contact-hero .guide-button {
    width: 100%;
    text-align: center;
  }

  .contact-overview,
  .inquiry-section,
  .contact-next-steps {
    padding: 70px 0;
  }

  .contact-overview-grid {
    gap: 35px;
  }

  .contact-card {
    padding: 24px 22px;
  }

  .contact-card:hover {
    transform: translateY(-3px);
  }

  .contact-preparation {
    padding: 28px 24px;
    border-radius: 15px;
  }

  .contact-preparation-list {
    margin: 24px 0;
  }

  .inquiry-section > .container > .section-heading,
  .contact-next-steps .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .inquiry-form {
    padding: 28px 22px;
    border-radius: 15px;
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field-full {
    margin-top: 20px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .form-field textarea {
    min-height: 180px;
  }

  .form-consent {
    margin-top: 22px;
  }

  .inquiry-form-footer {
    margin-top: 27px;
    padding-top: 24px;
    gap: 22px;
    align-items: stretch;
  }

  .inquiry-submit {
    width: 100%;
    text-align: center;
  }

  .contact-next-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-next-step {
    padding: 28px 24px;
  }
  .form-attachments {
    padding: 22px 18px;
  }

  .form-attachments input[type="file"] {
    padding: 7px;
  }

  .form-attachments input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 11px 13px;
  }

  .form-help,
  .form-security-note {
    font-size: 0.84rem;
  }
  .home-hero {
    padding: 72px 0 68px;
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero-content {
    gap: 43px;
  }

  .home-hero-label {
    margin-bottom: 16px;
    font-size: 0.78rem;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1.09;
  }

  .home-hero-description {
    margin-top: 23px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .home-hero-actions {
    flex-direction: column;
    margin-top: 29px;
  }

  .home-primary-button,
  .home-secondary-button {
    width: 100%;
    min-height: 55px;
  }

  .home-hero-note {
    margin-top: 21px;
    font-size: 0.84rem;
  }

  .home-hero-overview {
    grid-template-columns: 1fr;
  }

  .home-benefit {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 21px 19px;
  }

  .home-benefit-number {
    width: 48px;
    height: 48px;
  }
  .home-projects {
    padding: 72px 0;
  }

  .home-section-heading {
    margin-bottom: 32px;
  }

  .home-section-label {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .home-section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .home-section-description {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .home-projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-project-image {
    aspect-ratio: 16 / 10.5;
  }

  .home-project-content {
    padding: 25px 21px 28px;
  }

  .home-project-content h3 {
    font-size: 1.38rem;
  }

  .home-project-content > p:not(.home-project-type) {
    font-size: 0.91rem;
  }

  .home-projects-action {
    margin-top: 34px;
  }

  .home-projects-button {
    width: 100%;
    min-height: 55px;
  }
  .home-cooperation-link {
    padding: 64px 0;
  }

  .home-cooperation-link::before {
    display: none;
  }

  .home-cooperation-link-content {
    flex-direction: column;
    gap: 29px;
    align-items: flex-start;
  }

  .home-cooperation-link h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .home-cooperation-link-text > p:last-child {
    font-size: 0.93rem;
  }

  .home-cooperation-link-button {
    width: 100%;
  }
  .home-about-preview {
    padding: 72px 0;
  }

  .home-about-preview-content {
    grid-template-columns: 1fr;
    gap: 41px;
  }

  .home-about-visual {
    min-height: 330px;
    padding: 29px 25px;
  }

  .home-about-visual::before {
    top: -90px;
    right: -100px;
    width: 240px;
    height: 240px;
  }

  .home-about-visual::after {
    right: 25px;
    bottom: 29px;
    width: 52px;
  }

  .home-about-monogram {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .home-about-identity {
    padding-right: 70px;
  }

  .home-about-identity p {
    font-size: 1.28rem;
  }

  .home-about-identity span {
    font-size: 0.78rem;
  }

  .home-about-label {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .home-about-text h2 {
    margin-bottom: 21px;
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .home-about-text > p:not(.home-about-label) {
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .home-about-button {
    width: 100%;
    min-height: 55px;
    margin-top: 11px;
  }
  .home-final-cta {
    padding-bottom: 72px;
  }

  .home-final-cta-content {
    gap: 28px;
    padding: 42px 24px;
    border-radius: 18px;
  }

  .home-final-cta-content::before {
    display: none;
  }

  .home-final-cta-label {
    font-size: 0.75rem;
  }

  .home-final-cta h2 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .home-final-cta-text > p:last-child {
    font-size: 0.93rem;
  }

  .home-final-cta-button {
    width: 100%;
  }

  .home-final-cta-action > p {
    font-size: 0.8rem;
  }
  .about-hero {
    padding: 72px 0 68px;
  }

  .about-hero::before,
  .about-hero::after {
    display: none;
  }

  .about-hero-content {
    gap: 42px;
  }

  .about-page-label {
    margin-bottom: 15px;
    font-size: 0.76rem;
  }

  .about-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1.09;
  }

  .about-hero-description {
    margin-top: 23px;
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .about-hero-actions {
    flex-direction: column;
    margin-top: 29px;
  }

  .about-primary-button,
  .about-secondary-button {
    width: 100%;
    min-height: 55px;
  }

  .about-hero-card {
    min-height: 350px;
    padding: 29px 25px;
    border-radius: 18px;
  }

  .about-hero-monogram {
    width: 118px;
    height: 118px;
    font-size: 3rem;
  }

  .about-hero-identity {
    padding-top: 38px;
  }

  .about-hero-identity p {
    font-size: 1.3rem;
  }

  .about-hero-card-text {
    font-size: 0.86rem;
  }

  .about-story,
  .about-values,
  .about-expectations {
    padding: 72px 0;
  }

  .about-story-content {
    gap: 30px;
  }

  .about-section-label {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }

  .about-story-heading h2,
  .about-values-heading h2,
  .about-expectations h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .about-story-text {
    padding-left: 21px;
    border-left-width: 2px;
  }

  .about-story-text p {
    margin-bottom: 19px;
    font-size: 0.93rem;
    line-height: 1.82;
  }

  .about-values-heading {
    margin-bottom: 33px;
    text-align: left;
  }

  .about-values-heading > p:last-child {
    margin-top: 17px;
    font-size: 0.92rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .about-value-card {
    padding: 27px 23px;
  }

  .about-value-number {
    width: 45px;
    height: 45px;
    margin-bottom: 18px;
  }

  .about-value-card h3 {
    font-size: 1.2rem;
  }

  .about-value-card p {
    font-size: 0.91rem;
  }

  .about-expectations-content {
    gap: 34px;
  }

  .about-expectations-text > p:not(.about-section-label) {
    margin-top: 18px;
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .about-expectations-list {
    padding: 13px 22px;
    border-radius: 17px;
  }

  .about-expectations-list li {
    padding: 19px 0 19px 35px;
    font-size: 0.9rem;
  }

  .about-expectations-list li::before {
    top: 19px;
    width: 22px;
    height: 22px;
  }

  .about-final-cta {
    padding-bottom: 72px;
  }

  .about-final-cta-content {
    gap: 28px;
    padding: 42px 24px;
    border-radius: 18px;
  }

  .about-final-cta-content::before {
    display: none;
  }

  .about-final-cta-label {
    font-size: 0.75rem;
  }

  .about-final-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .about-final-cta-content > div > p:last-child {
    font-size: 0.92rem;
  }

  .about-final-cta-button {
    width: 100%;
  }
  .privacy-hero {
    padding: 70px 0 66px;
  }

  .privacy-hero::before,
  .privacy-hero::after {
    display: none;
  }

  .privacy-page-label {
    margin-bottom: 14px;
    font-size: 0.75rem;
  }

  .privacy-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
    line-height: 1.1;
  }

  .privacy-hero-description {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .privacy-update {
    margin-top: 24px;
    font-size: 0.76rem;
  }

  .privacy-content {
    padding: 70px 0;
  }

  .privacy-layout {
    gap: 27px;
  }

  .privacy-summary {
    padding: 29px 24px;
    border-radius: 17px;
  }

  .privacy-summary h2 {
    font-size: 1.45rem;
  }

  .privacy-summary-list {
    grid-template-columns: 1fr;
    margin-top: 21px;
  }

  .privacy-summary-note {
    margin-top: 20px;
    padding-top: 20px;
  }

  .privacy-article {
    gap: 19px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 27px 22px;
    border-radius: 16px;
  }

  .privacy-section-number {
    width: 45px;
    height: 45px;
    font-size: 0.77rem;
  }

  .privacy-section h2 {
    margin-top: 0;
    margin-bottom: 17px;
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .privacy-section h3 {
    font-size: 1.05rem;
  }

  .privacy-section p {
    margin-bottom: 15px;
    font-size: 0.91rem;
    line-height: 1.8;
  }

  .privacy-contact-card {
    margin: 18px 0;
    padding: 20px 19px;
    font-size: 0.89rem;
  }

  .privacy-list {
    gap: 11px;
    margin: 18px 0;
  }

  .privacy-list li {
    padding-left: 26px;
    font-size: 0.9rem;
  }

  .privacy-warning {
    margin-top: 22px;
    padding: 19px;
  }

  .privacy-warning p {
    font-size: 0.87rem;
  }

  .privacy-purpose-list {
    gap: 14px;
    margin-top: 20px;
  }

  .privacy-purpose {
    padding: 20px 18px;
  }

  .privacy-purpose p {
    font-size: 0.88rem;
  }

  .privacy-cookie-card {
    margin: 20px 0;
  }

  .privacy-cookie-card dl > div {
    grid-template-columns: 1fr;
  }

  .privacy-cookie-card dt {
    padding-bottom: 8px;
    border-right: 0;
    background-color: #edf2f6;
  }

  .privacy-cookie-card dd {
    padding-top: 10px;
    background-color: #f8fafc;
  }
  .site-footer::before,
  .site-footer::after {
    display: none;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .site-footer-brand-column {
    grid-column: auto;
  }

  .site-footer-brand {
    gap: 13px;
  }

  .site-footer-monogram {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .site-footer-brand-text strong {
    font-size: 1.14rem;
  }

  .site-footer-brand-text small {
    font-size: 0.71rem;
  }

  .site-footer-description {
    margin-top: 21px;
    font-size: 0.88rem;
  }

  .site-footer-socials {
    margin-top: 23px;
  }

  .site-footer-column h2 {
    margin-bottom: 21px;
  }

  .site-footer-contact-button {
    width: 100%;
    min-height: 54px;
  }

  .site-footer-bottom-content {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 25px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .site-footer-bottom-content p {
    font-size: 0.77rem;
  }

  .site-footer-legal a {
    font-size: 0.77rem;
  }
}
