/* =============================================
   NOVOPRINT — Landing Page
   Design system: Emerald #10b981, Manrope
   ============================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 52px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #059669;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero .container {
  max-width: 100%;
  padding: 0 5vw;
}


/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.btn--primary {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}

.btn--primary:hover {
  background: #059669;
  border-color: #059669;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

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

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn--call {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.btn--call:hover {
  background: #15803d;
  color: #fff;
}


/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 24px;
  transition: all 0.3s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.header__logo img {
  height: 44px;
  transition: opacity 0.2s;
}

.header__logo img:hover {
  opacity: 0.8;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #fff;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.header__phone:hover {
  color: #10b981;
}

.header--scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}


/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 52px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(8,12,18,0.88) 0%,
    rgba(8,12,18,0.75) 40%,
    rgba(8,12,18,0.55) 70%,
    rgba(8,12,18,0.45) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 12vw;
  align-items: center;
  padding: 80px 0 100px;
}

.hero__text {
  color: #fff;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.hero__accent {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6ee7b7;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 460px;
}

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.trust-item svg {
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.4);
}

.trust-item--rating {
  gap: 8px;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-stars svg {
  stroke: none;
}

/* Hero Form */
.hero__form-wrap {
  display: flex;
  align-items: center;
}

.hero__form {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(16px);
}

.hero__form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.hero__form-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero__form .form-group {
  margin-bottom: 14px;
}

.hero__form input,
.hero__form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  color: #fff;
  transition: all 0.2s;
}

.hero__form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hero__form select {
  color: rgba(255,255,255,0.4);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.hero__form select option {
  background: #1a2a3a;
  color: #fff;
}

.hero__form input:focus,
.hero__form select:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.hero__form .btn {
  margin-top: 4px;
}

.hero__cta-btn {
  animation: cta-glow 2.5s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.35); }
  50% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}

.hero__form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}


/* --- SERVICE CARD BADGE --- */
.service-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(18,18,18,0.55);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
  text-align: center;
}

.service-card__badge small {
  font-size: 0.58rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.service-card__badge strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* --- REQUEST CARD --- */
.service-card--request {
  background: #f7f8fa;
  border: 2px dashed #d0d5dd;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card--request:hover {
  border-color: #10b981;
  background: #f0fdf4;
  box-shadow: none;
}

.service-card__request-inner {
  text-align: center;
  padding: 32px 24px;
}

.service-card__request-icon {
  margin-bottom: 16px;
}

.service-card--request h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 8px;
}

.service-card--request p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card--request .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* --- PROMO BANNER (bottom of services grid) --- */
.promo-banner-bottom {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0f1923 0%, #0d2d2a 50%, #0a3d3a 100%);
  border-radius: 16px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  transition: all 0.3s;
}

.promo-banner-bottom:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(16,185,129,0.12);
}

.promo-banner-bottom::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promo__text {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  min-width: 200px;
}

.promo__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 4px;
}

.promo__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.promo__offers {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
}

.promo__offer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  min-width: 68px;
  transition: all 0.2s;
}

.promo__offer:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(16,185,129,0.3);
}

.promo__offer-qty {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.promo__offer-qty span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.promo__offer-name {
  font-size: 0.7rem;
  color: #34d399;
  font-weight: 600;
}

.promo__cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.promo__cta a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background: #fff;
  color: #121212;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.promo__cta a:hover {
  background: #f0f0f0;
  color: #121212;
}


/* --- SERVICES --- */
.services {
  padding: 48px 0;
  background: #f7f8fa;
}

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

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card__img {
  height: 180px;
  overflow: hidden;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__img--icon {
  background: rgba(16,185,129,0.06);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #121212;
}

.service-card__body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.service-card__price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #10b981;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
}

.service-card__link:hover {
  color: #059669;
}

/* CTA wrapper with hover dropdown (for free-trial cards) */
.service-card__cta {
  position: relative;
}

.service-card__dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 6px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 10;
}

.service-card__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 16px;
  border: 6px solid transparent;
  border-top-color: #fff;
}

.service-card__dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.service-card__cta:hover .service-card__dropdown,
.service-card__cta:focus-within .service-card__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-card__dropdown button,
.service-card__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.service-card__dropdown button:hover {
  background: #f5f5f5;
  color: #222;
}

.service-card__dropdown a {
  color: #10b981;
}

.service-card__dropdown-free {
  background: #d1fae5 !important;
  color: #065f46 !important;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 7px;
}

.service-card__dropdown-free:hover {
  background: #a7f3d0 !important;
  color: #064e3b !important;
  border-color: rgba(16,185,129,0.5);
}

/* Calc button styled as link (for regular cards) */
.service-card__calc-btn {
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.service-card__calc-btn:hover {
  color: #059669;
}

/* --- CALC MODAL --- */
.calc-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.calc-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.calc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.calc-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.25s;
}

.calc-modal.is-open .calc-modal__dialog {
  transform: translateY(0);
}

.calc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.calc-modal__close:hover {
  background: #eee;
  color: #333;
}

.calc-modal__dialog h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 4px;
}

.calc-modal__product {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 24px;
}

.calc-modal__dialog .form-group {
  margin-bottom: 12px;
}

.calc-modal__dialog input,
.calc-modal__dialog select,
.calc-modal__dialog textarea {
  width: 100%;
  padding: 13px 16px;
  background: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  color: #1a1a1a;
  transition: all 0.2s;
}

.calc-modal__dialog textarea {
  resize: vertical;
  min-height: 80px;
}

.calc-modal__dialog select {
  appearance: none;
  color: #555;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.calc-modal__dialog input::placeholder,
.calc-modal__dialog textarea::placeholder {
  color: #aaa;
}

.calc-modal__dialog input:focus,
.calc-modal__dialog select:focus,
.calc-modal__dialog textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.calc-modal__dialog .btn {
  margin-top: 8px;
}

.calc-modal__note {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 14px;
}


/* --- FORM STEPS --- */
.form-step--hidden {
  display: none;
}

/* --- CONTACT METHOD --- */
.contact-method {
  margin-bottom: 14px;
}

.contact-method__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero__form .contact-method__label {
  color: rgba(255,255,255,0.7);
}

.calc-modal__dialog .contact-method__label {
  color: #333;
}

.contact-method__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.contact-method__tab {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method__tab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__form .contact-method__tab {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}

.hero__form .contact-method__tab.is-active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.hero__form .contact-method__tab:hover:not(.is-active) {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.calc-modal__dialog .contact-method__tab {
  border: 1px solid #e5e7eb;
  background: #f7f8fa;
  color: #666;
}

.calc-modal__dialog .contact-method__tab.is-active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.calc-modal__dialog .contact-method__tab:hover:not(.is-active) {
  border-color: #10b981;
  color: #333;
}

/* Brand colors for active messenger tabs */
.contact-method__tab[data-method="phone"].is-active {
  background: #10b981;
  border-color: #10b981;
}

.contact-method__tab[data-method="viber"].is-active {
  background: #7360F2;
  border-color: #7360F2;
}

.contact-method__tab[data-method="whatsapp"].is-active {
  background: #25D366;
  border-color: #25D366;
}

.contact-method__tab[data-method="telegram"].is-active {
  background: #26A5E4;
  border-color: #26A5E4;
}

.contact-method__extra {
  margin-top: 10px;
}

/* --- FILE UPLOAD --- */
.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.file-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero__form .file-upload__btn {
  border: 1px dashed rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
}

.hero__form .file-upload__btn:hover {
  border-color: #10b981;
  color: #10b981;
}

.calc-modal__dialog .file-upload__btn {
  border: 1px dashed #d0d5dd;
  color: #666;
  background: #f7f8fa;
}

.calc-modal__dialog .file-upload__btn:hover {
  border-color: #10b981;
  color: #10b981;
}

.file-upload__name {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.hero__form .file-upload__name {
  color: rgba(255,255,255,0.5);
}

.calc-modal__dialog .file-upload__name {
  color: #999;
}

/* --- HERO FORM TEXTAREA --- */
.hero__form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  color: #fff;
  resize: vertical;
  min-height: 70px;
  transition: all 0.2s;
}

.hero__form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.hero__form textarea:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

/* --- ALT CONTACT (phone + messengers in forms) --- */
.form-alt-contact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.form-alt-contact__label {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 8px;
}

.form-alt-contact__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-alt-contact__phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.form-alt-contact__phone:hover {
  color: #10b981;
}

.form-alt-contact__icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.form-alt-contact__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #666;
  transition: all 0.2s;
}

.form-alt-contact__icons a:hover {
  transform: scale(1.15);
}

.form-alt-contact__icons a[title="Viber"]:hover { color: #7360F2; }
.form-alt-contact__icons a[title="WhatsApp"]:hover { color: #25D366; }
.form-alt-contact__icons a[title="Telegram"]:hover { color: #26A5E4; }

/* dark variant (hero form) */
.form-alt-contact--dark {
  border-top-color: rgba(255,255,255,0.1);
}

.form-alt-contact--dark .form-alt-contact__label {
  color: rgba(255,255,255,0.4);
}

.form-alt-contact--dark .form-alt-contact__phone {
  color: rgba(255,255,255,0.7);
}

.form-alt-contact--dark .form-alt-contact__phone:hover {
  color: #10b981;
}

.form-alt-contact--dark .form-alt-contact__icons a {
  color: rgba(255,255,255,0.5);
}

.form-alt-contact--dark .form-alt-contact__icons a[title="Viber"]:hover { color: #7360F2; }
.form-alt-contact--dark .form-alt-contact__icons a[title="WhatsApp"]:hover { color: #25D366; }
.form-alt-contact--dark .form-alt-contact__icons a[title="Telegram"]:hover { color: #26A5E4; }

/* --- FORM DONE STATE --- */
.form-done {
  text-align: center;
  padding: 20px 0;
}

.form-done__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-done h2,
.form-done h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero__form .form-done h2 {
  color: #fff;
}

.hero__form .form-done p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.calc-modal__dialog .form-done h3 {
  color: #121212;
}

.calc-modal__dialog .form-done p {
  color: #666;
  font-size: 0.9rem;
}

.calc-modal__product-echo {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 20px;
}


/* --- WHY US --- */
.why {
  padding: 48px 0;
  background: #fff;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why__item {
  padding: 28px 32px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}

.why__item:nth-child(2n) {
  border-right: none;
}

.why__item:nth-child(n+3) {
  border-bottom: none;
}

.why__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.why__item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
}

.why__item p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.55;
}


/* --- ABOUT --- */
.about {
  padding: 48px 0;
  background: #f7f8fa;
}

.about .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.about .section-label {
  text-align: left;
}

.about h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #121212;
  line-height: 1.2;
}

.about__content p {
  color: #555;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about__image {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* About sidebar — secondary/supplementary info */
.about__sidebar {
  background: rgba(0,0,0,0.025);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.about__equip h3,
.about__materials h3 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 10px;
}

.about__equip-main {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.about__equip-main li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
}

.about__equip-main li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

.about__equip-extra {
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.5;
}

/* Divider between equip and materials */
.about__materials {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Materials mini-cards */
.about__mat-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__mat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: background 0.2s;
}

.about__mat-card:hover {
  background: #fff;
}

.about__mat-card img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.about__mat-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 1px;
}

.about__mat-card span {
  font-size: 0.72rem;
  color: #999;
  line-height: 1.4;
}


/* --- LOCATION --- */
.location {
  padding: 48px 0;
  background: #f7f8fa;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.location__content .section-label {
  text-align: left;
}

.location__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 28px;
}

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

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location__detail svg {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.location__detail p {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.5;
}

.location__detail small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 2px;
}

.location__detail a {
  color: #10b981;
  font-weight: 500;
}

.location__map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}


/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, #0d2820 0%, #0a3d2e 50%, #0d4a36 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.cta-banner__text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner__text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
}

.cta-banner__btn {
  background: #fff;
  color: #0a3d2e;
  font-weight: 600;
  padding: 16px 36px;
  font-size: 1.05rem;
  border-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.cta-banner__btn:hover {
  background: #f0fdf4;
  color: #065f46;
  border-color: #f0fdf4;
  box-shadow: 0 6px 32px rgba(16,185,129,0.2);
  transform: translateY(-1px);
}


/* --- FOOTER --- */
.footer {
  background: #0a0f14;
  padding: 0;
}

.footer__main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo img {
  height: 22px;
  opacity: 0.7;
  display: block;
}

.footer__nav {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.footer__nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  white-space: nowrap;
}

.footer__nav a:hover {
  color: #10b981;
}

.footer__icons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.fi--ig:hover { color: #E4405F; }
.fi--fb:hover { color: #1877F2; }
.fi--gm:hover { color: #EA4335; }
.fi--wa:hover { color: #25D366; }
.fi--tg:hover { color: #26A5E4; }
.fi--vb:hover { color: #7360F2; }

.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.footer__contact span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.footer__contact a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  white-space: nowrap;
}

.footer__contact a:hover {
  color: #10b981;
}

.footer__contact .footer__sep {
  color: rgba(255,255,255,0.12);
  font-size: 0.6rem;
}

.footer__div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  margin: 0 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom span,
.footer__bottom a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
}

.footer__bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: #10b981;
}

.footer__sep {
  color: rgba(255,255,255,0.12);
  font-size: 0.6rem;
}


/* --- STICKY CTA (Mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 200;
  transition: transform 0.3s ease;
}
.sticky-cta.is-hidden,
.sticky-cta.is-overlay-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

/* --- BURGER & MOBILE NAV: hidden on desktop --- */
.header__menu-btn {
  display: none;
}
.mobile-nav {
  display: none;
}

/* Hero label — hidden on desktop */
.hero__label {
  display: none;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(8,12,18,0.88) 0%, rgba(8,12,18,0.65) 50%, rgba(8,12,18,0.85) 100%);
  }

  .hero__form {
    max-width: 420px;
    margin: 0 auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .section-header h2,
  .about h2 {
    font-size: 1.7rem;
  }

  /* Hide trust badges on mobile — replaced by hero__label */
  .hero__trust {
    display: none;
  }

  .hero__form-title {
    font-size: 1.15rem;
  }

  /* --- HEADER MOBILE: stretch logo and burger to edges --- */
  .header__inner {
    padding: 0 16px;
  }

  .header__nav {
    display: none;
  }

  .header__phone {
    display: none;
  }

  /* --- HERO LABEL (above title, mobile only) --- */
  .hero__label {
    display: block;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
  }

  /* --- H1 mobile --- */
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  /* --- Accent mobile --- */
  .hero__accent {
    font-size: 1rem;
    margin-bottom: 8px;
    margin-top: 0;
  }

  /* --- Sub mobile --- */
  .hero__sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    line-height: 1.5;
  }

  /* --- BURGER BUTTON --- */
  .header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }
  .header__menu-btn span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header__menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- MOBILE NAV PANEL --- */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    pointer-events: none;
  }
  .mobile-nav.open {
    pointer-events: auto;
  }
  .mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .mobile-nav.open .mobile-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav__panel {
    position: relative;
    width: 100%;
    background: rgba(8, 12, 18, 0.96);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 52px 24px 20px;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 20px 20px;
  }
  .mobile-nav.open .mobile-nav__panel {
    transform: translateY(0);
  }
  .mobile-nav__links {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav__links a {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 13px 4px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.2s;
  }
  .mobile-nav__links a:last-child {
    border-bottom: none;
  }
  .mobile-nav__links a:active {
    color: #10b981;
  }
  .mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
  }
  .mobile-nav__btn {
    display: block;
    width: 100%;
    padding: 13px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
  }
  .mobile-nav__btn:active {
    transform: scale(0.97);
  }
  .mobile-nav__btn--free {
    background: linear-gradient(165deg, rgba(16, 185, 129, 0.9) 0%, rgba(16, 185, 129, 0.95) 50%, rgba(5, 150, 105, 1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .mobile-nav__btn--calc {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* --- HERO MOBILE: hide form, show text only --- */
  .hero__form-wrap {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 52px;
  }

  .hero__grid {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100svh - 52px);
  }

  .hero__text {
    padding-top: 14vh;
    padding-bottom: 80px;
  }

  /* --- STICKY CTA (EBM style) --- */
  .sticky-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 16px 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }
  .sticky-cta__note {
    pointer-events: none;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
  }
  .sticky-cta__buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    pointer-events: none;
  }
  .sticky-cta__btn {
    pointer-events: auto;
    flex: 1;
    padding: 12px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
  }
  .sticky-cta__btn:active {
    transform: scale(0.95);
  }
  .sticky-cta__calc {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  .sticky-cta__free {
    background: rgba(16, 185, 129, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .promo-banner-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 14px;
  }

  .promo__text {
    min-width: unset;
  }

  .promo__offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .promo__cta {
    width: 100%;
  }

  .promo__cta a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .why__item:nth-child(2n) {
    border-right: none;
  }

  .why__item:last-child {
    border-bottom: none;
  }

  .why__fact {
    font-size: 1.3rem;
  }

  .why {
    padding: 28px 0;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-banner__text h2 {
    font-size: 1.4rem;
  }

  .cta-banner__text p {
    max-width: 100%;
  }

  .cta-banner__btn {
    width: 100%;
    padding: 14px 28px;
  }

  .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0;
  }

  .footer__icons {
    position: static;
    transform: none;
    justify-content: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__contact {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
  }

  .footer__contact .footer__sep {
    display: none;
  }

  .footer__contact span,
  .footer__contact a {
    white-space: normal;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 0;
  }

  .footer {
    margin-bottom: 0;
  }


  .services,
  .why,
  .about,
  .location {
    padding: 32px 0;
  }

  /* Mobile: dropdown opens on tap via .is-open class */
  .service-card__cta.is-open .service-card__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}
