/* =========================================================
   ZELENÁ DOTACE – Design System
   BEM convention · CSS custom properties · CSS-only animations
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color ramps */
  --color-primary-50:  #f9fbf6;
  --color-primary-100: #d6ecd1;
  --color-primary-200: #aedaa6;
  --color-primary-300: #7dc462;
  --color-primary-400: #4f9e3f;
  --color-primary-500: #719539;
  --color-primary-600: #205c32;
  --color-primary-700: #163d10;

  --color-secondary-50:  #eaf3fb;
  --color-secondary-100: #cfe2f5;
  --color-secondary-200: #9bc1e8;
  --color-secondary-300: #5e93d4;
  --color-secondary-400: #2f6fb8;
  --color-secondary-500: #1a4f8f;
  --color-secondary-600: #143a6b;

  --color-accent-50:  #fff7e6;
  --color-accent-100: #ffedc2;
  --color-accent-200: #ffd97f;
  --color-accent-300: #f5b913;
  --color-accent-400: #c8900a;

  --color-success-500: #2d7a22;
  --color-warning-500: #f5b913;
  --color-error-500:   #c0392b;

  /* Neutrals */
  --color-neutral-0:   #ffffff;
  --color-neutral-50:  #f7f9f6;
  --color-neutral-100: #eef1ed;
  --color-neutral-200: #dde2dc;
  --color-neutral-300: #c2c9c0;
  --color-neutral-400: #8b948a;
  --color-neutral-500: #5a6358;
  --color-neutral-600: #3d453b;
  --color-neutral-700: #2a3029;
  --color-neutral-800: #1c211b;
  --color-neutral-900: #11150f;

  /* Section backgrounds */
  --bg-0: #ffffff;
  --bg-1: #f7faf6;
  --bg-2: #eef3ec;
  --bg-3: #e6ede3;
  --bg-dark: #14241a;
  --bg-dark-2: #0d1810;

  /* Typography */
  --font-sans: 'Segoe UI', system-ui, -apple-system, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium:  500;
  --font-weight-bold:    700;
  --line-body: 1.6;
  --line-heading: 1.2;

  /* Spacing (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(20, 40, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 40, 20, 0.12);
  --shadow-lg: 0 16px 48px rgba(20, 40, 20, 0.18);

  /* Layout */
  --container-max: 1200px;
  --header-h: 76px;

  /* Transition */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t-med: 0.35s;
  --t-slow: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-body);
  color: var(--color-neutral-700);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
strong { font-weight: var(--font-weight-bold); }
.midle { text-align:center;}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

/* ---------- Section header ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-8);
}
.section-header__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary-500);
  margin-bottom: var(--space-4);
  animation: floaty 1s ease-in-out infinite;
}
.section-header__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-heading);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  position: relative;
}
.section-header__title:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 4px;
	background: var(--color-primary-500);
	left: 50%;
	bottom: -15px;
	margin-left: -40px;
}
.section-header__title strong { color:#649225;}
.section-header__title.midle {
   margin-bottom: var(--space-8);
}
.section-header__sub {
  font-size: 1.10rem;
  color: var(--color-neutral-800);
  font-weight:bold;
  margin-bottom: var(--space-4);
}
.section-header__sub strong { color: var(--color-primary-500);}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-5);
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active { transform: translateY(0); }

/* ---------- Badges ---------- */
/*.badge {
  display: table;
  padding: 6px 34px 6px 14px;
  font-size: 0.88rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  clip-path: polygon( calc(100% - 1rem) 0%, 100% 50%, calc(100% - 1rem) 100% ,0% 100%, 0% 0%);
  margin: 5px  0;
}
.badge--blue   { background: linear-gradient(90deg, #0255c0, #00469e); color: var(--color-neutral-0); margin-top: 2rem;}
.badge--green  { background: linear-gradient(90deg, #49a03d, #37952e); color: var(--color-neutral-0); }
.badge--lime   { background: linear-gradient(90deg, #b2be01, #9faa06); color: var(--color-neutral-0); }

.inline__badges { padding:1rem  0;}
.inline__badges .badge {display: inline-block;}
.inline__badges .badge--blue { margin-top:inherit;}*/

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-neutral-100);
  transition: box-shadow var(--t-med) var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-5);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.logo__icon { width: 143px; height: 45px; }

.nav { display: flex; }
.nav__list {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.nav__link {
  font-size: 0.92rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-primary-500);
  border-radius: 2px;
  transition: width var(--t-med) var(--ease), left var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--color-primary-600); }
.nav__link:hover::after { width: 70%; left: 15%; }
.nav__link--active { color: var(--color-primary-600); }
.nav__link--active::after { width: 70%; left: 15%; }

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  animation: pulse-ring 2.5s ease-out infinite;
}
.header__phone svg { width: 20px; height: 20px; }
.header__phone:hover { background: var(--color-primary-600); transform: scale(1.08); }

/* Burger (mobile) */
.nav__burger { display: none; }
.nav__toggle-cb { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top left, var(--color-primary-50), transparent 60%),
    radial-gradient(ellipse at bottom right, var(--color-secondary-50), transparent 55%),
    var(--bg-1);
/*  padding: var(--space-7) 0 var(--space-7);*/
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--color-primary-100), transparent 70%);
  border-radius: 50%;
  animation: drift 18s ease-in-out infinite;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: var(--space-1);
  align-items: center;
  position: relative;
}
.hero__content {
	display: flex;
	gap: var(--space-6);
	flex-wrap: wrap;
}
.hero__badges {
/*  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);*/
  animation: fade-up 0.7s var(--ease) both;
}
.hero__badges img { max-width:120px; height:auto; padding-top:40px;}
.hero__badges.inline__badges img {max-width:290px; height:auto; padding-top:0px; margin:1rem;}
.hero__brand {
  display: block;
  text-align:center;
  margin: 0 auto; 

  animation: fade-up 0.8s var(--ease) 0.1s both;
}
.hero__strike { background:#c1d2b1; width:2px; height: inherit;}
.hero__leaf {
  width: 100px;
  height: 100px;
  margin: 0;
  flex-shrink: 0;
  animation: leaf-sway 8s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(1.9rem, 5vw, 2.4rem); /*vw 	Relative to 1% of the width of the viewport (font-size to 7vw, but never smaller than 2.8rem or larger than 4.5rem)*/
  font-weight: var(--font-weight-bold);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-primary-600); margin: 0 0 2rem 0;
}
.hero__title br + * { color: var(--color-neutral-800); }

.hero__stats {
  display: flex;
  gap: var(--space-9);
/*  flex-wrap: wrap;*/
  animation: fade-up 0.9s var(--ease) 0.2s both;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat:hover .stat__icon-wrap { background:var(--color-neutral-0);}
.stat__icon-wrap {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: #e8f1e2;
  color: var(--color-primary-500);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
  box-shadow: var(--color-neutral-0);
}
.stat__icon-wrap svg { width: 50px; height: 50px; }
.stat__value {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: #125c08;
  line-height: 1.1;
}
.stat__label {
  font-size: 0.85rem;
  color: #8fb16e;
}

.hero__image-wrap {
  position: relative;
  border-radius: 50% 0 0 50%;
  border-left-style: solid;
  border-left-color: rgba(123, 158, 93, 0.3);
  border-left-width:30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height:500px;
/*  animation: fade-in 1s var(--ease) 0.3s both;*/

}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
/*  transition: transform 8s var(--ease);*/
}
/*.hero__image-wrap:hover .hero__image { transform: scale(1.06); }*/
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(45, 122, 34, 0.25));
  pointer-events: none;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--bg-0);
  padding: var(--space-8) 0;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.section-divider__bar {
  height: 4px;
  border-radius: 2px;
}
.section-divider__bar--dark { width: 48px; background: var(--color-primary-500); }
.section-divider__bar--light { width: 24px; background: var(--color-primary-200); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.card {
  position: relative;
  background: #f9fbf8;
  border: 1px solid #d6e0cd;
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6) var(--space-6);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  text-align:center;
}
#dotace-light.card {
	background:#fbfcf5;
	border:#edeec4 solid 1px;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-200);
}
.card:hover::before { transform: scaleX(1); }

.card__icon-wrap {
  width: 124px; height: 124px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-neutral-0);
  color: #8cb069;
  border:#8cb069 solid 1px;
  border-radius: 50%;;
  margin: 0 auto var(--space-5) auto;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

#dotace-light .card__icon-wrap {
	border:#c4cf78 solid 1px;
}
.card__icon-wrap svg { width: 60px; height: 60px; }
.card:hover .card__icon-wrap {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-md);
}
.card__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-heading);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.card__text {
  color: var(--color-neutral-600);
  margin-bottom: var(--space-6);
}
.card__btn {
	margin-top: auto;
}
#dotace-light .card__btn {
	background:#a5b301;
}

/* =========================================================
   FEATURES STRIP
   ========================================================= */
.features {
  background: var(--bg-dark);
  padding: var(--space-7) 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.feature {
  text-align: center;
  color: var(--color-neutral-0);
}
.feature__icon-wrap {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-3);
  display: flex; align-items: center; justify-content: center;
  background: rgba(125, 196, 98, 0.15);
  color: var(--color-primary-300);
  border-radius: 50%;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.feature__icon-wrap svg { width: 26px; height: 26px; }
.feature:hover .feature__icon-wrap {
  transform: translateY(-4px);
  background: rgba(125, 196, 98, 0.28);
}
.feature__value {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-0);
  line-height: 1.1;
}
.feature__label {
  font-size: 0.9rem;
  color: var(--color-neutral-300);
  margin-top: var(--space-1);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--bg-1);
  padding: var(--space-9) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.about__text p {
  margin-bottom: var(--space-4);
  color: var(--color-neutral-600);
}
.about__text strong { color: var(--color-primary-600); }
.about__cta {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: #e7f0e3;
/*  border-left: 4px solid var(--color-primary-500);*/
  border-radius: var(--radius-md);
}
.about__cta h2 { font-size:18px; border-right: #b8cc9e solid 2px;}
.about__cta svg {
  width: 28px; height: 28px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.about__cta p { margin: 0; color: var(--color-neutral-700); }

.about__image {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-4);
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.about__card {
  background: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about__card svg {
  width: 36px; height: 36px;
  color: var(--color-primary-500);
  margin: 0 auto var(--space-3);
}
.about__card h3 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-1);
}
.about__card p {
  font-size: 0.88rem;
  color: var(--color-neutral-500);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  background: var(--bg-2);
  padding: var(--space-9) 0;
}
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  counter-reset: step;
}
.process__item {
  position: relative;
  background: var(--color-neutral-0);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4) var(--space-5);
  text-align: center;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.process__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process__num {
  width: 44px; height: 44px;
  margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(45, 122, 34, 0.3);
}
.process__title {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-2);
}
.process__desc {
  font-size: 0.9rem;
  color: var(--color-neutral-500);
}
/* connector line */
.process__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(var(--space-5) * -1);
  width: calc(var(--space-5) - 1px);
  height: 2px;
  background: var(--color-primary-200);
}


.process__list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: step;
  margin: var(--space-6) auto;
}
.process__list3.item__list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  counter-reset: step;
  margin: var(--space-6) auto;
}
.process__list3__item {
  position: relative;
  background: var(--color-neutral-0);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4) var(--space-5);
  text-align: center;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position:relative;
}
.process__list3__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process__list3__item::after {
	content: '';
	position: absolute;
	left: calc(50% - 16px);
	top:-15px;
	background: var(--color-primary-200) url(../images/list-item.svg) no-repeat;
	color: #fff;
	background-size: 70% 70%;
	background-position:center;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* =========================================================
   REFERENCE
   ========================================================= */
.reference {
  background: var(--bg-3);
  padding: var(--space-9) 0;
}
.reference .section-header {box-shadow: 0 .5rem 6.75rem 89px rgb(255, 255, 255);
background: white;}
.reference .about__cta { border: var(--color-primary-300) solid 1px;}
.reference__intro {
  max-width: 760px;
  margin: 0 auto var(--space-7);
  color: var(--color-neutral-600);
  text-align: center;
}
.reference__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.review-card {
  background: var(--color-neutral-0);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--color-accent-300);
}
.review-card__stars svg { width: 20px; height: 20px; }
.review-card__text {
  color: var(--color-neutral-700);
  font-style: italic;
  margin-bottom: var(--space-4);
}
.review-card__author {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-600);
  font-size: 0.92rem;
}
.reference__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
/*  max-width: 560px;*/
  margin: 0 auto;
  padding: var(--space-5);
  background: var(--color-neutral-0);
  border: 1px solid var(--color-primary-200);
  border-radius: var(--radius-md);
  color: var(--color-neutral-600);
}
.reference__google svg {
  width: 28px; height: 28px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.reference__google strong { color: var(--color-primary-600); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--bg-1);
  padding: var(--space-9) 0;
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq__item {
  background: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.faq__item[open] {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-weight: var(--font-weight-medium);
  font-size: 1.02rem;
  color: var(--color-neutral-800);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 22px; height: 22px;
  color: var(--color-primary-500);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-neutral-600);
  animation: fade-up 0.3s var(--ease) both;
}
.faq__answer p { margin-bottom: var(--space-2); }
.faq__answer ul { padding-left: var(--space-5); list-style: disc; }
.faq__answer li { margin-bottom: var(--space-1); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--bg-2);
  padding: var(--space-9) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-7);
/*  align-items: start;*/
}
.contact__main {
  background: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
}
.contact__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-neutral-100);
}
.contact__logo svg { width: 48px; height: 48px; flex-shrink: 0; }
.contact__logo strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-primary-600);
}
.contact__logo span {
  font-size: 0.85rem;
  color: var(--color-neutral-500);
}
.contact__person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  color: var(--color-neutral-700);
}
.contact__person svg {
  width: 28px; height: 28px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 1.05rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  transition: color var(--t-fast) var(--ease);
}
.contact__item svg {
  width: 24px; height: 24px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.contact__item:hover { color: var(--color-primary-600); }

.contact__offices {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact__office {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--color-neutral-0);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.contact__office:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.contact__office svg {
  width: 32px; height: 32px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.contact__office-label {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-600);
  margin-bottom: var(--space-1);
}
.contact__office p { font-size: 0.92rem; color: var(--color-neutral-600); }


.footer__back { position:fixed; bottom: 20px; right:20px; z-index:999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary-600);
  color: var(--color-neutral-0);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);}
.footer__back a { display:block; width:36px; height:36px; }

/* =========================================================
   mailform temp
   ========================================================= */

#mainform { max-width: var(--container-max); background: #FFF; box-shadow: var(--shadow-md); border-radius: var(--radius-md); margin:6rem auto; padding:20px; position:relative; clear:both; text-align:center;}
#mainform #form { }

.inputholder {margin:10px 1% 10px 1%; width:31%; display:inline-block; text-align:center; position:relative;}
.textareaholder {margin:10px; position:relative; text-align:center;}
input::placeholder, textarea::placeholder { color:#000; opacity: 1;}
#mainform input, #mainform select {-moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px; border:#c4cccf solid 1px; background:#fff; height:50px; line-height:50px; width:97%; padding:0 1rem; font-size:16px; color:#000;}
#mainform select { width:99%; margin-bottom:10px;}
#mainform input[type=text]:hover, #mainform textarea:hover, #mainform select:hover { border:#000 solid 1px;}
#mainform textarea {background:#FFF; -moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px; border:#c4cccf solid 1px; height:80px; resize:none; text-align:center; font-size:16px; padding:5px 1%;width:99%;font-family: inherit;}
#mainform input[type=button] {display: inline-block; cursor:pointer; font-size:22px; line-height:1px; padding:25px 30px; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; background: var(--color-primary-500); border:none;color:#FFF; width:31%;}
#mainform input[type=button]:hover { background:#000; border:none;}
#mainform textarea { min-height: 100px;}
#mainform label { position:absolute; left:10px; top:-10px; font-size:12px; color: var(--color-neutral-500); background:#FFF; padding:2px 5px;}
#mainform label span { color: var(--color-accent-300);}
.gdpr { font-size:12px; color: var(--color-neutral-500); margin:10px auto 40px;}

#mainform #returnmessage{ display:block; position:absolute; z-index:12; top:0; left:0px; background:#2cbe0f; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; color:#fff; text-align:center; width:100%; padding:32% 3%;}
#mainform #returnmessage:empty { display:none; }

@media (max-width: 890px) {
.inputholder { width: 47%;}
} /* end media max-width: 890px */

@media (max-width: 847px) {
#mainform input[type="button"] { width:55%;}
} /* end media max-width: 847px */

@media (max-width: 680px) {
#mainform input, #mainform textarea { width: 96%; margin: 5px 0 0 0; padding: 5px 2% 5px 2%;}
#mainform input[type=button] { position: relative; bottom:inherit; right:inherit; margin:10px auto 0;}
#mainform input[type="button"] { width:96%; font-size:18px;} 
.inputholder { width: 96%;}
}

/* =========================================================
   novinky temp
   ========================================================= */
   
.newsItem { padding:10px; margin-bottom:10px; border-bottom:#e6e6e6 solid 1px; min-height:225px;}
.newsItem .moreButon a { text-decoration:none; cursor:pointer; font-weight:normal; padding:5px 30px; margin:5px auto; text-align:center; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; border:#65bb06 solid 1px; background:#65bb06; color:#fff;}
.newsItem .moreButon a:hover {border:#000 solid 1px; background:#000;}
.newsImg { float:left; margin:0 20px 10px 0; padding:0; display:block; width: 300px; height:225px; overflow:hidden;}
.newsImg img { width: auto; height:100%;}
.newsItem h3 { text-align:left; margin: 0 0 10px 0; padding:0; color:#000; font-size:22px; line-height:22px; font-weight:400;}
.newsItem h3:after { display:none;}
.date {color: var(--color-primary-600); font-weight: bold; padding:0;}
.newsItem .pedex { max-height:125px; overflow:hidden; margin: 1rem 0;}

hr { color: #e7edef; background-color: #e7edef; border:none; height: 1px; margin: 6px 0 6px 0; clear:both;}

@media (max-width: 680px) {
.newsItem { text-align:center;}
.newsImg { float: inherit; margin:0 auto 20px auto; padding:0; display:block; width: 100%; height:225px; overflow:hidden;}
.newsImg img { width:100%; height:auto;}
.newsItem h3 { text-align: center;}
.pedex { text-align:justify;}

} /* end media max-width: 680px */

/* =========================================================
   FOOTER
   ========================================================= */
/*.footer {
  background: var(--bg-dark-2);
  padding: var(--space-6) 0;
  color: var(--color-neutral-300);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer__copy { font-size: 0.88rem; }
.footer__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary-600);
  color: var(--color-neutral-0);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.footer__back svg { width: 22px; height: 22px; }
.footer__back:hover { background: var(--color-primary-500); transform: translateY(-3px); }*/

#footer { width:100%; margin: 0; clear:both; position:relative; font-size:14px; background: var(--color-primary-700); }
#footer .wrapper {min-height:200px; padding:10px 0 ; text-align:center; color: var(--color-primary-500); background: var(--color-primary-700); max-width:1200px; margin:0 auto;}
#footer a { color: var(--color-primary-50);}
#footer a:hover { color: var(--color-neutral-0);}
#footer strong, #footer h3 { color: var(--color-neutral-0);}
#footer p { padding: 10px 0;}
.colore { color:#00acf3;}
.col3 { width:33%; text-align:center; min-height:110px; float:left;}
.col3 h4 { color:  var(--color-primary-500); font-weight: lighter; font-size:17px; margin:0; padding:0;}
.footerbig { color: var(--color-primary-200); font-size:24px; line-height:35px; font-style: normal; font-variant: normal; font-weight: normal;}
#footer .footerbig strong {color: var(--color-primary-200);}
#footer hr { color: var(--color-primary-600); background-color: var(--color-primary-600); border:none; height: 1px; margin: 26px 0 ; clear:both;}
#footer .footerbig a {color: var(--color-primary-200); text-decoration:none;} 
#footer p.footblock { border-top: var(--color-primary-600) solid 1px; margin:10px 0; padding:40px 0;}
#footer p.footlogo { background:url(../images/ikona-domecek.svg) no-repeat top center; background-size: 50px 50px; height:50px; margin:2rem auto 1rem;}

@media (max-width: 847px) {
#footer .wrapper p { padding:10px 30px;}
#footer .wrapper p.quater { padding:10px 0px;}
}
@media (max-width: 680px) {
	.col3 { width:49%; text-align:center; min-height:110px; float:left;}
}
@media (max-width: 520px) {
	.col3 { width:100%; text-align:center; min-height:20px; float: inherit;}
}
/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes leaf-sway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(6deg); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 20px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(45, 122, 34, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(45, 122, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 122, 34, 0); }
}

/* Scroll-reveal via animation-timeline (progressive enhancement) */
@supports (animation-timeline: view()) {
  .services .card,
  .about__card,
  .process__item,
  .review-card,
  .contact__office,
  .faq__item {
    animation: fade-up 0.7s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero__image-wrap { order: -1; /*max-width: 600px;*/ height:200px; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr;}
  .contact__main {padding: var(--space-5);}
  .process__list,
  .process__list3 { grid-template-columns: repeat(2, 1fr); }
  .process__item:nth-child(2)::after { display: none; }
  .reference__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav__burger span {
    display: block;
    width: 24px; height: 3px;
    background: var(--color-primary-600);
    border-radius: 2px;
    transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
  }
  .nav__toggle-cb:checked ~ .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle-cb:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__toggle-cb:checked ~ .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--color-neutral-0);
    border-bottom: 1px solid var(--color-neutral-100);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med) var(--ease);
  }
  .nav__toggle-cb:checked ~ .nav { max-height: 420px; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--space-5);
    gap: var(--space-2);
  }
  .nav__link { padding: var(--space-3); }
  .nav__link::after { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .about__cards { grid-template-columns: repeat(2, 1fr); }
  .process__list,
  .process__list3 { grid-template-columns: 1fr; }
  .process__item::after { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  
  .about__cta { display:inherit;}
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
/*  .hero { padding: var(--space-7) 0; }*/
  .hero__stats { gap: var(--space-4); }
  .about__cards { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
