/* =========================================
   IT TARMAN — Static Site
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 70px 0; }
.section--dark {
  background: linear-gradient(140deg, rgba(0,72,114,0.97) 0%, rgba(41,17,96,0.95) 100%);
  color: #fff;
}
.section--gray { background: #f7f8fa; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: #1b2e4b;
}
.section--dark .section-title { color: #fff; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
  list-style: none;
}

.nav__links > li {
  position: relative;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #555;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li > a.active { color: #51b0ff; }

.nav__links .nav__cta {
  background: #51b0ff;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav__links .nav__cta:hover {
  background: #2196f3;
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Dropdown ---- */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__dropdown-toggle:hover,
.nav__dropdown.active > .nav__dropdown-toggle,
.nav__dropdown.open > .nav__dropdown-toggle { color: #51b0ff; }

.nav__chevron {
  width: 11px;
  height: 11px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__chevron,
.nav__dropdown.open .nav__chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(27, 46, 75, 0.18), 0 0 0 1px rgba(27, 46, 75, 0.06);
  min-width: 340px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(27, 46, 75, 0.06);
  border-left: 1px solid rgba(27, 46, 75, 0.06);
}

/* Invisible bridge so dropdown doesn't close when moving cursor down */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
}
.nav__dropdown:hover::after { pointer-events: auto; }

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li { list-style: none; }

.nav__dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #1b2e4b !important;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  font-size: 0.92rem;
  line-height: 1.4;
  white-space: normal !important;
}
.nav__dropdown-menu a:hover {
  background: #f0f6ff;
  transform: translateX(3px);
}
.nav__dropdown-menu a.active {
  background: #f0f6ff;
}

.nav__dropdown-title {
  font-weight: 800;
  font-size: 0.94rem;
  color: #1b2e4b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__dropdown-menu a:hover .nav__dropdown-title { color: #1b2e4b; }

.nav__dropdown-desc {
  font-size: 0.78rem;
  color: #70798c;
  font-weight: 400;
}

.nav__badge {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, rgba(0,72,114,0.97) 0%, rgba(41,17,96,0.95) 100%),
              url('https://it-tarman.si/images/LOGO_IT_TARMAN_WEB.png') center/cover no-repeat;
  background-color: #0d1e35;
  color: #fff;
  overflow: hidden;
}

.hero--home { min-height: 500px; }
.hero--page { min-height: 200px; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 580px;
  margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: #51b0ff;
  color: #fff;
}
.btn--primary:hover { background: #2196f3; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* --- Service Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.card--dark {
  background: #1b2e4b;
  color: #fff;
}
.card--light {
  background: #fff;
  border: 1.5px solid #e8edf3;
  color: #333;
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.card--dark .card__icon { filter: brightness(0) invert(1); opacity: 0.85; }

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.card__text {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* --- About strip --- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-strip__text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1b2e4b;
  margin-bottom: 16px;
}

.about-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.about-strip__list li {
  background: #f0f6ff;
  color: #1b2e4b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Dark CTA strip --- */
.cta-strip {
  text-align: center;
  padding: 70px 0;
}
.cta-strip h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-strip p { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; }

/* --- Contact section --- */
.contact-section { background: #f7f8fa; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-item__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 8px;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 700;
  color: #1b2e4b;
}

/* Contact image (bot protection) */
.contact-img-wrap {
  text-align: center;
  margin-top: 32px;
}
.contact-img-wrap img { display: inline-block; max-width: 340px; }

/* --- Pricing Tables --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.pricing-card--featured {
  background: #1b2e4b;
  color: #fff;
  border-color: #1b2e4b;
}

.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #51b0ff;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__name { color: #51b0ff; }

.pricing-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: #1b2e4b;
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__price { color: #fff; }

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  opacity: 0.85;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #51b0ff;
  font-weight: 700;
}

/* --- Cenik (price list) table --- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.price-table th {
  background: #1b2e4b;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eef0f4;
  font-size: 0.9rem;
}
.price-table tr:nth-child(even) td { background: #f7f8fa; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-col {
  text-align: right;
  font-weight: 700;
  color: #1b2e4b;
  white-space: nowrap;
}

.price-category {
  background: #eef4ff !important;
  font-weight: 700 !important;
  color: #1b2e4b !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Simple list page (Grafično) --- */
.simple-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.simple-list li {
  background: #f0f6ff;
  color: #1b2e4b;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- VHS section --- */
.vhs-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.vhs-info__text p { margin-bottom: 14px; color: #555; }
.vhs-highlight {
  background: #1b2e4b;
  color: #fff;
  border-radius: 12px;
  padding: 32px;
}
.vhs-highlight h3 { font-size: 1.2rem; margin-bottom: 20px; color: #51b0ff; }
.vhs-highlight .price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.vhs-highlight .price-row:last-child { border-bottom: none; }
.vhs-highlight .price-row span:last-child { font-weight: 700; color: #51b0ff; }
.vhs-discounts { margin-top: 20px; font-size: 0.85rem; opacity: 0.7; }
.vhs-discounts li { padding: 4px 0; }
.vhs-discounts li::before { content: '• '; }

/* --- AI page --- */
.ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-card {
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ai-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.ai-card--featured {
  background: #1b2e4b;
  color: #fff;
  border-color: #1b2e4b;
}

.ai-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.ai-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.ai-card__text {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.step__num {
  width: 52px;
  height: 52px;
  background: #51b0ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step__title { font-size: 1rem; font-weight: 700; color: #1b2e4b; margin-bottom: 8px; }
.step__text { font-size: 0.9rem; color: #666; }

/* --- Footer --- */
.site-footer {
  background: #0d1e35;
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.6); }
.site-footer a:hover { color: #fff; }

/* --- AI Promo strip (homepage) --- */
.ai-promo {
  padding: 40px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.ai-promo__card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  box-shadow: 0 20px 60px rgba(27, 46, 75, 0.15);
  border: 1px solid #e8edf3;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.ai-promo__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #51b0ff 0%, #2196f3 100%);
}

.ai-promo__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(27, 46, 75, 0.2);
}

.ai-promo__badge {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.ai-promo__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.ai-promo__content {
  min-width: 0;
}

.ai-promo__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1b2e4b;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ai-promo__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

.ai-promo__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #51b0ff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.ai-promo__arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.ai-promo__card:hover .ai-promo__arrow { transform: translateX(4px); }

@media (max-width: 780px) {
  .ai-promo { margin-top: -30px; padding: 24px 0 0; }
  .ai-promo__card {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px 24px;
  }
  .ai-promo__badge {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .ai-promo__cta {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 8px;
  }
  .ai-promo__title { font-size: 1.05rem; }
  .ai-promo__text { font-size: 0.85rem; }
  .ai-promo__icon { font-size: 2rem; }
}

/* --- Blog grid (listing page) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(27, 46, 75, 0.15);
}

.blog-card__image-wrap {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: #0d1e35;
}
.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.04); }

.blog-card__content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #51b0ff;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1b2e4b;
  line-height: 1.35;
}

.blog-card__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.blog-card__read {
  font-size: 0.85rem;
  font-weight: 700;
  color: #51b0ff;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Article page --- */
.article-hero {
  padding: 60px 0 30px;
  background: #f7f8fa;
}

.article-breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #51b0ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.article-breadcrumb:hover { color: #2196f3; }

.article-category {
  display: inline-block;
  background: #51b0ff;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.article-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1b2e4b;
  max-width: 820px;
}

.article-cover-wrap {
  padding: 0 0 10px;
  background: #f7f8fa;
}
.article-cover {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(27, 46, 75, 0.15);
}

.article-body {
  padding: 60px 0 40px;
}

.container--narrow { max-width: 760px; }

.article-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1b2e4b;
  margin: 44px 0 18px;
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1b2e4b;
  margin: 32px 0 14px;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #3a4558;
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  margin: 8px 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3a4558;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51b0ff;
}

.article-body ol { counter-reset: article-counter; }
.article-body ol li { counter-increment: article-counter; }
.article-body ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #51b0ff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body strong {
  font-weight: 800;
  color: #1b2e4b;
}

.article-body a {
  color: #51b0ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.article-body a:hover { color: #2196f3; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .article-hero { padding: 40px 0 20px; }
  .article-body { padding: 40px 0 20px; }
  .article-body p, .article-body ul li, .article-body ol li { font-size: 0.95rem; }
}

/* --- Contact image (bot-safe) --- */
.contact-image {
  display: block;
  max-width: 100%;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27, 46, 75, 0.08);
  /* Prevent easy copy of the image */
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* --- Floating AI Asistent button --- */
.ai-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #51b0ff 0%, #2196f3 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.ai-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(33, 150, 243, 0.5);
  color: #fff;
}
.ai-floating__icon {
  font-size: 1.2rem;
  line-height: 1;
}
.ai-floating__pulse {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: #00e676;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .nav__links a,
  .nav__dropdown-toggle { font-size: 0.86rem; }
}

@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 6px;
    align-items: stretch;
  }
  .nav__links.open { display: flex; }
  .nav__links > li > a,
  .nav__dropdown-toggle {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }
  .nav__dropdown-toggle {
    justify-content: space-between;
  }
  .nav { position: relative; }

  /* Flatten dropdown on mobile */
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 12px;
    min-width: 0;
    background: transparent;
    display: none;
    border-left: 2px solid #e8edf3;
    margin-left: 4px;
  }
  .nav__dropdown-menu::before { display: none; }
  .nav__dropdown::after { display: none; }
  .nav__dropdown:hover .nav__dropdown-menu { display: none; }
  .nav__dropdown.open .nav__dropdown-menu { display: flex; }
  .nav__dropdown-menu a {
    padding: 10px 14px;
  }

  .nav__links .nav__cta {
    margin-top: 10px;
    text-align: center;
    padding: 12px 20px;
  }

  .cards-grid, .pricing-grid, .ai-cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .about-strip, .vhs-info { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .cards-grid, .pricing-grid, .ai-cards, .steps { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.7rem; }
  .hero--home { min-height: 400px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 32px; }
  .container { padding: 0 20px; }
  .nav__logo img { height: 32px; }
  .ai-floating {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }
  .ai-floating__label { display: none; }
  .ai-floating {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .ai-floating__icon { font-size: 1.6rem; }
  .price-table { font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .cta-strip h2 { font-size: 1.5rem; }
}
