/* ================================================================
   Necto Web — style.css
   ================================================================ */

/* ----------------------------------------------------------------
   Custom properties
   ---------------------------------------------------------------- */
:root {
  --primary:       #DD137B;
  --primary-dark:  #b00f63;
  --primary-light: rgba(221, 19, 123, 0.1);
  --dark:          #111827;
  --gray:          #6B7280;
  --gray-light:    #9CA3AF;
  --light-bg:      #F9FAFB;
  --white:         #FFFFFF;
  --border:        #E5E7EB;

  --max-w:    1200px;
  --nav-h:    72px;
  --radius:   12px;
  --radius-s: 8px;

  --shadow-s:  0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-m:  0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-l:  0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);

  --transition: .2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
h1 { font-size: clamp(2rem, 5vw, 3rem);      font-weight: 700; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 700; line-height: 1.25; color: var(--dark); }
h3 { font-size: 1.15rem;                      font-weight: 600; line-height: 1.35; color: var(--dark); }

p { color: var(--gray); }

/* ----------------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title  { margin-bottom: 16px; }
.section-desc   { font-size: 17px; line-height: 1.75; max-width: 560px; }

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-s);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--gray-light);
  color: var(--dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ----------------------------------------------------------------
   Navigation
   ---------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 16px 0;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { text-decoration: none; }

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.nav__logo-text {
  line-height: 1.2;
}
.nav__logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.nav__logo-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: .02em;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;
}

.nav__links a {
  display: block;
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover {
  color: var(--dark);
  background: var(--light-bg);
  text-decoration: none;
}

/* Desktop-only CTA */
.nav__cta { flex-shrink: 0; }

/* Mobile CTA inside dropdown */
.nav__links .nav__mobile-cta { display: none; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
#hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #fff 40%, #fdf2f8 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title { margin-bottom: 20px; }
.hero__title em { font-style: normal; color: var(--primary); }

.hero__subtitle {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray-light);
  flex-wrap: wrap;
}
.hero__trust-sep {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* ---- CSS Dashboard Mockup ---- */
.hero__visual { position: relative; }

.mockup {
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup__topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.mockup__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mockup__dot:nth-child(1) { background: #FF5F57; }
.mockup__dot:nth-child(2) { background: #FEBC2E; }
.mockup__dot:nth-child(3) { background: #28C840; }

.mockup__urlbar {
  flex: 1;
  margin: 0 10px;
  height: 22px;
  background: white;
  border-radius: 5px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 5px;
}
.mockup__lock {
  width: 7px; height: 9px;
  border: 1.5px solid #28C840;
  border-radius: 2px;
  flex-shrink: 0;
}
.mockup__url-txt {
  height: 7px;
  width: 120px;
  background: #e5e7eb;
  border-radius: 4px;
}

.mockup__body { display: flex; height: 290px; }

.mockup__sidebar {
  width: 50px;
  background: #111827;
  padding: 14px 9px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.mockup__si {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.mockup__si.act { background: var(--primary); }

.mockup__main {
  flex: 1;
  padding: 14px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mockup__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup__ptitle {
  height: 13px; width: 110px;
  background: var(--dark);
  border-radius: 5px;
  opacity: .75;
}
.mockup__addbtn {
  height: 26px; width: 76px;
  background: var(--primary);
  border-radius: 6px;
}

.mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mockup__scard {
  background: white;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--border);
}
.mockup__scard-lbl {
  height: 7px; width: 60%;
  background: var(--gray-light);
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: .6;
}
.mockup__scard-val {
  height: 14px; width: 45%;
  background: var(--dark);
  border-radius: 4px;
  opacity: .7;
}

.mockup__tbl {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  flex: 1;
}
.mockup__thead {
  display: grid;
  grid-template-columns: .8fr 1.5fr 1fr 1.1fr;
  gap: 8px;
  padding: 7px 12px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.mockup__thc {
  height: 7px;
  background: var(--gray-light);
  border-radius: 4px;
  opacity: .45;
}
.mockup__tr {
  display: grid;
  grid-template-columns: .8fr 1.5fr 1fr 1.1fr;
  gap: 8px;
  padding: 7px 12px;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}
.mockup__tr:last-child { border-bottom: none; }
.mockup__trc {
  height: 7px;
  background: var(--border);
  border-radius: 4px;
}
.mockup__badge {
  height: 19px;
  border-radius: 100px;
}
.mockup__badge.g  { background: #D1FAE5; width: 62px; }
.mockup__badge.b  { background: #DBEAFE; width: 70px; }
.mockup__badge.a  { background: #FEF3C7; width: 76px; }
.mockup__badge.p  { background: #EDE9FE; width: 55px; }

/* Floating stat card */
.hero__float {
  position: absolute;
  bottom: -14px;
  left: -20px;
  background: white;
  border-radius: 12px;
  padding: 13px 18px;
  box-shadow: var(--shadow-l);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.hero__float-icon {
  width: 36px; height: 36px;
  background: #D1FAE5;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 17px;
  flex-shrink: 0;
}
.hero__float-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-light);
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   Features
   ---------------------------------------------------------------- */
#znacajke { background: var(--light-bg); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feat-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feat-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-3px);
}
.feat-card__icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.feat-card__icon svg { width: 22px; height: 22px; }
.feat-card h3 { margin-bottom: 10px; }
.feat-card p  { font-size: 14px; line-height: 1.65; }

/* ----------------------------------------------------------------
   How it works
   ---------------------------------------------------------------- */
#kako-radi { background: white; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.666% + 27px);
  right: calc(16.666% + 27px);
  height: 2px;
  background: var(--border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  background: white;
  border: 2px solid var(--border);
  color: var(--gray-light);
}
.step:nth-child(1) .step__num {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.step:nth-child(2) .step__num {
  border-color: var(--primary);
  color: var(--primary);
}
.step h3 { margin-bottom: 12px; }
.step p   { font-size: 14px; line-height: 1.65; }

/* ----------------------------------------------------------------
   Contact
   ---------------------------------------------------------------- */
#kontakt { background: var(--light-bg); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info { padding-top: 8px; }

.contact__items { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.contact__item-val {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}
.contact__item-val a { color: var(--primary); font-weight: 600; }

/* Form */
.contact__form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(221,19,123,.1);
}
.form-row textarea { height: 120px; resize: vertical; }

.form-note {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
footer {
  background: var(--dark);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer__logo:hover { text-decoration: none; }
.footer__logo-mark {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.footer__logo-text {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.footer__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  max-width: 280px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: white; text-decoration: none; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ----------------------------------------------------------------
   Product page — Hero
   ---------------------------------------------------------------- */
.product-hero {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  padding: 80px 0;
  text-align: center;
}
.product-hero h1 { color: white; margin-bottom: 20px; }
.product-hero p {
  color: rgba(255,255,255,.65);
  font-size: 18px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}
.product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(221,19,123,.2);
  color: #F9A8D4;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(221,19,123,.3);
}
.product-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   Product — Modules (alternating)
   ---------------------------------------------------------------- */
.module { padding: 80px 0; }
.module:nth-child(even) { background: var(--light-bg); }

.module__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.module__inner.flip { direction: rtl; }
.module__inner.flip > * { direction: ltr; }

.module__content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.module__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.module__list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--primary-light)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23DD137B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / 12px no-repeat;
  border-radius: 50%;
}

/* Module visual */
.module__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #fdf2f8 0%, #f0f7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.module__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module__visual-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray-light);
}
.module__visual-icon svg {
  width: 64px; height: 64px;
  color: var(--primary);
  opacity: .35;
}
.module__visual-icon span { font-size: 13px; }

/* ----------------------------------------------------------------
   Compliance (dark section on product page)
   ---------------------------------------------------------------- */
.compliance {
  background: var(--dark);
  padding: 80px 0;
}
.compliance .section-label { color: #F9A8D4; }
.compliance .section-title { color: white; }
.compliance .section-desc  { color: rgba(255,255,255,.55); }

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.comp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 28px;
}
.comp-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(221,19,123,.2);
  color: #F9A8D4;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.comp-card h3 { color: white; margin-bottom: 10px; font-size: 1.05rem; }
.comp-card p  { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.65; }

/* ----------------------------------------------------------------
   Accounting firms section
   ---------------------------------------------------------------- */
.accounting { padding: 80px 0; background: white; }

.accounting__box {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 60%, #f0f7ff 100%);
  border: 1px solid rgba(221,19,123,.15);
  border-radius: 16px;
  padding: 56px;
  margin-top: 48px;
}

.accounting__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.accounting__content h2 { margin-bottom: 16px; }
.accounting__content p  { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }

.accounting__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.accounting__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
}
.accounting__check {
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.accounting__check svg { width: 11px; height: 11px; color: white; }

.accounting__message {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accounting__message h3 { font-size: 1.05rem; }
.accounting__message p  { font-size: 14px; line-height: 1.65; }

.accounting__cta { margin-top: 24px; }

/* ----------------------------------------------------------------
   Pricing
   ---------------------------------------------------------------- */
.pricing { background: var(--light-bg); padding: 80px 0; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-l);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.price-card__eur    { font-size: 1.1rem; font-weight: 600; color: var(--gray); }
.price-card__price  { font-size: 2.75rem; font-weight: 700; color: var(--dark); line-height: 1; }
.price-card__period { font-size: 14px; color: var(--gray); margin-left: 2px; }

.price-card__annual { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.price-card__vat    { font-size: 12px; color: var(--gray-light); margin-bottom: 24px; }
.price-card__trial  { font-size: 13px; color: var(--gray); font-weight: 500; margin-bottom: 24px; }

.price-card hr { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }

.price-card__contact { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.price-card__contact-desc { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--gray);
}
.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Support page
   ---------------------------------------------------------------- */
.supp-hero {
  background: var(--light-bg);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.supp-hero p { font-size: 17px; margin: 12px auto 0; max-width: 540px; }

.supp-content { padding: 64px 0 80px; }

.supp-email {
  text-align: center;
  margin-bottom: 56px;
  padding: 32px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.supp-email p { font-size: 15px; margin-bottom: 10px; }
.supp-email a { font-size: 18px; font-weight: 700; color: var(--primary); }

.supp-dl h2 { text-align: center; margin-bottom: 8px; }
.supp-dl-sub { text-align: center; font-size: 15px; margin-bottom: 40px; }

.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.dl-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition: box-shadow var(--transition), transform var(--transition);
}
.dl-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-3px);
}
.dl-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--dark);
}
.dl-card__icon svg { width: 64px; height: 64px; }
.dl-card h3 { margin-bottom: 8px; }
.dl-card p  { font-size: 14px; margin-bottom: 28px; }

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner     { gap: 40px; }
  .features__grid  { grid-template-columns: 1fr 1fr; }
  .accounting__box { padding: 40px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  /* Nav mobile */
  .nav__cta     { display: none; }
  .nav__burger  { display: flex; }
  .nav__links   {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-m);
    gap: 4px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 13px; font-size: 15px; }
  .nav__links .nav__mobile-cta { display: block; margin-top: 8px; }
  .nav__links .nav__mobile-cta .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__float  { display: none; }
  .hero__subtitle { max-width: 100%; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
  }
  .step__num { margin-bottom: 0; flex-shrink: 0; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Product */
  .module__inner,
  .module__inner.flip { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .compliance__grid { grid-template-columns: 1fr; }
  .accounting__inner { grid-template-columns: 1fr; gap: 36px; }
  .accounting__box { padding: 28px 20px; }
  .pricing__grid,
  .pricing__grid--3 { grid-template-columns: 1fr; }

  /* Support */
  .dl-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .product-hero__actions { flex-direction: column; align-items: center; }
}
