*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #573395;
  --purple-dark: #6347a0;
  --purple-light: #9270c4;
  --dark: #1a1a1a;
  --dark2: #111111;
  --gray: #666;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --text: #333333;
  --font: "Montserrat", sans-serif;
  --font2: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow: visible;
}
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
}

/* ===== TOP BAR ===== */
.topbar {
  background: #000;
  color: #ccc;
  font-size: 12px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-right a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--white);
}
.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.topbar-right a {
  font-size: 14px;
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 500;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a {
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--purple-light));
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header-nav a:hover {
  color: var(--purple-light);
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--purple);
}

.btn-catalog {
  background: var(--purple);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-catalog:hover {
  background: var(--purple-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #f8f8f8;
  padding: 10px 0;
  font-size: 12px;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--purple);
}
.breadcrumb span {
  margin: 0 6px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #08090c;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("./../img/hero-bg.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-bg-photo.loaded {
  transform: scale(1);
}
/* ===== HERO SLIDER ===== */
.hero-blog {
  background-image: url("./../img/Viscon-White.png");
  background-position: center 40%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 460px;
}
.blog-subtitle {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 18px !important;
  font-weight: 600;
}
.blog-subtitle span:nth-child(2) {
  color: var(--purple-light);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.06);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
/* Main overlay — dark left, lighter right like on screenshot */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(4, 4, 10, 0.85) 0%,
    rgba(4, 4, 10, 0.65) 45%,
    rgba(4, 4, 10, 0.28) 80%,
    rgba(4, 4, 10, 0.12) 100%
  );
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(160, 170, 195, 0.22) 0%,
    rgba(80, 100, 140, 0.08) 25%,
    transparent 55%,
    rgb(0 0 0 / 67%) 100%
  );
}
.hero-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(190, 205, 230, 0.18) 0%, rgba(140, 165, 200, 0.08) 25%, transparent 100%);
}
/* position: absolute;
inset: 0;
z-index: 1;
background: radial-gradient(ellipse 60% 70% at 70% 35%, rgba(50, 80, 140, 0.2) 0%, transparent 65%),
  radial-gradient(ellipse 35% 40% at 15% 65%, rgba(30, 50, 100, 0.12) 0%, transparent 55%);
pointer-events: none; */

.hero-granite-bg {
  display: none;
}
#graniteCanvas {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.hero-inner-main {
  position: relative;
  z-index: 2;

  align-items: center;
  padding: 100px 0 60px 0;
  width: 100%;
}
.hero-content {
  color: white;
}
.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-content h1 span {
  display: block;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 16px 0 28px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero-badge:nth-child(1) {
  gap: 0px;
}
.hero-badge-icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hero-badge-text {
  line-height: 1.3;
}
.hero-badge-text small {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--purple);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: var(--font);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--purple-dark);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font);
  display: inline-block;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* HERO FORM */
.hero-form {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.hero-form h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-form p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-group {
  margin-bottom: 12px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group textarea {
  height: 80px;
}
.btn-submit {
  width: 100%;
  background: var(--purple);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--purple-dark);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 30px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-main-img {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #1a1a1a, #2d2d2d); */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.granite-placeholder {
  object-fit: cover;
  padding: 20px 0;
  position: relative;
}
.granite-placeholder-main {
  padding: 0 !important;
}
.granite-placeholder1 img {
  width: 260px;
  object-fit: cover;
  height: 160px;
  display: flex;
  margin: 0 auto;
}

.granite-placeholder2 img {
  width: 240px !important;
  object-fit: cover;
  height: 70px;
  display: flex;
  margin: 0 auto;
}

.granite-placeholder3 img {
  width: 180px !important;
  object-fit: cover;
  height: 65px;
  display: flex;
  margin: 0 auto;
}

.granite-placeholder4 img {
  width: 60px !important;
  object-fit: cover;
  height: 60px;
  display: flex;
  margin: 0 auto;
}

.granite-placeholder5 img {
  width: 30px !important;
  object-fit: cover;
  height: 60px;
  display: flex;
  margin: 0 auto;
}

.granite-placeholder6 img {
  width: 30px !important;
  object-fit: cover;
  height: 30px;
  display: flex;
  margin: 0 auto;
}
.main-bg {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.granite-placeholder::after {
}
.about-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.about-thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  /* border: 2px solid transparent; */
  cursor: pointer;

  transition: border-color 0.2s;
}
.about-thumb:first-child {
  /* border-color: var(--purple); */
}
.about-thumb:hover {
  border-color: unset !important;
}
.about-thumb:active {
  border-color: unset !important;
}
.about-thumb .granite-placeholder {
  border-radius: 8px;
  padding: 0 !important;
}

.about-content {
}
.about-content-main {
  padding-top: 60px;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}
.about-content p {
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 12px;
}

.specs-table {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-label {
  padding: 10px 10px 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-row:nth-child(6) {
  padding-bottom: 10px;
}
.spec-label img {
  width: 27px;
}
.spec-value {
  padding: 10px 14px 0 14px;
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
}

/* ===== ADVANTAGES ===== */
.advantages {
  padding-bottom: 30px;
}
.section-title {
  text-align: center;
  font-size: 23px;
  font-weight: 800;
  color: var(--purple-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.advantage-card {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.advantage-icon img {
  width: 55px;
}
.advantage-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.advantage-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FORMATS ===== */
.formats {
  padding: 0 0 30px 0;
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.formats-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.format-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.format-card:hover {
  border-color: var(--purple);
}
.format-img {
  aspect-ratio: 16/7;
  background: #e7e7e779;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.format-img.square {
}
.format-img .granite-placeholder {
}
.format-label {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: #e7e7e779;
  text-align: center;
}
.formats-note {
  text-align: center;
  font-size: 14px;
  color: #000;
  margin-top: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px 30px 20px;
}
.cta-cont {
  padding: 25px 25px;
  background: linear-gradient(135deg, #030308 0%, #000000 100%);
  border-radius: 10px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.911) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.15;
}

.cta-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-label {
  font-size: 11px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.cta-inner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-inner p {
  font-size: 14px;
  color: #fff;
}
.cta-right {
  text-align: right;
}
.cta-right .btn-primary {
  font-size: 14px;
  padding: 14px 30px;
}
.cta-note {
  font-size: 11px;
  color: #fff;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== USE CASES ===== */
.use-cases {
  padding: 0 0 30px 0;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.use-card:hover {
  transform: translateY(-4px);
}
.use-img {
  height: 200px;
  background: linear-gradient(135deg, #111, #2a2a2a);
  position: relative;
}
.use-img .granite-placeholder {
  height: 100%;
  padding: 0;
}
.use-img .granite-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.use-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 20px 16px 16px;
  color: white;
}
.use-overlay h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.use-overlay p {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

/* ===== WHY MISTONE ===== */
.why-mistone {
  padding: 60px 0;
}
.why-grid {
  display: flex;
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 20px 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  width: 250px;
}
.why-icon img {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.why-card:hover .why-icon {
  border-color: var(--purple);
  background: rgba(123, 94, 167, 0.05);
}
.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.why-card p {
  font-size: 12px;
  color: #000;
  line-height: 1.5;
}

/* ===== RELATED ===== */
.related {
  padding: 0px 0 30px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  gap: 16px;
  display: flex;
  justify-content: center;
  width: 360px;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.related-img {
  height: 160px;
  background: linear-gradient(135deg, #111, #222);
}
.related-img .granite-placeholder {
  height: 100%;
}
.related-card .granite-placeholder img {
  width: 170px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.related-card .granite-placeholder {
  padding: 8px 0;
}
.related-body {
  padding: 0px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.related-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.related-link {
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.related-link:hover {
  gap: 8px;
}

/* ===== FOOTER ===== */
.footer-cta {
  background: #000;
  padding: 24px 0;
  border-bottom: 1px solid #fff;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-cta p {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.footer-cta-contacts {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-cta-contacts a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-cta-contacts a:hover {
  color: white;
}

footer {
  background: #000;
  padding: 50px 0 24px;
  color: rgba(255, 255, 255, 0.6);
}
/* footer::before {
    content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.911) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.15;
} */
.footer-top {
  display: grid;
  grid-template-columns: 250px 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  color: white;
  font-size: 20px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  background: #f0f0f042;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--purple);
  color: var(--purple);
  background-color: #a7a7a742;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: white;
}
.footer-contacts li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contacts li span {
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: rgb(255 255 255 / 66%);
}
.footer-bottom a {
  color: rgb(255 255 255 / 66%);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}
.mobile-nav nav {
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-nav nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
}
.mobile-nav .btn-catalog {
  margin-top: 20px;
  text-align: center;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1180px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .catalog-grid-2 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 1159px) {
  .related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .why-grid {
  }
  .contact-block {
    display: block !important;
  }
  .contact-item2 {
    margin-left: 0 !important;
    margin-top: 18px !important;
  }
}
@media (max-width: 1137px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1280px) {
  .about-photo {
    width: 253px !important;
    height: 191px !important;
  }
}
@media (max-width: 1060px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .production-inner {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top .footer-brand {
    grid-column: 1 / -1;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo {
    width: 294px !important;
    height: 224px !important;
  }
}

@media (max-width: 969px) {
  .contact-inner {
    flex-direction: column;
  }
  .contact-items {
    flex-direction: unset !important;
    flex-wrap: wrap;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .articles-grid {
        grid-template-columns: repeat(2, 1fr) !important;

  }
  .contact-block {
    display: flex !important;
    gap: 18px;
    flex-wrap: wrap;
  }
  .contact-item2 {
    margin-top: 0 !important;
  }
  .contact-form-box {
    margin: 0 auto;
  }
  .cta-right .btn-primary {
    padding: 14px 20px;
    font-size: 12px;
    text-align: center;
  }
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .catalog-grid-2 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .about-content-main {
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-form {
    max-width: 480px;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formats-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 809px) {
  .hamburger {
    display: flex;
  }
  .topbar-right {
    display: none;
  }
  .header-nav {
    display: none;
  }
  .btn-catalog-mob {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-photo {
    width: 233px !important;
    height: 178px !important;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-form-box {
    width: 100% !important;
  }
  .catalog-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .prod-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .topbar .container {
    justify-content: center;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-right {
    text-align: left;
  }
  .cta-note {
    justify-content: flex-start;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .hero-features {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .hero-badges {
    gap: 14px;
  }
  .section-title {
    font-size: 18px;
  }
  .why-card {
    width: 100%;
  }
  .prod-gallery {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .about-photo {
    width: 160px !important;
    height: 123px !important;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    text-align: center;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .formats-grid {
    grid-template-columns: 1fr;
  }
  .formats-grid-2 {
    grid-template-columns: 1fr;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta-contacts {
    flex-direction: column;
    gap: 10px;
  }
  .spec-row {
    grid-template-columns: 140px 1fr;
  }
  .topbar-left {
    gap: 12px;
    font-size: 11px;
  }
  .topbar-left a:not(:first-child):not(:nth-child(2)) {
    display: none;
  }
  .about-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 434px) {
  .btn-hero-outline,
  .btn-hero-primary {
    width: 100%;
    text-align: center;
  }
}
/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(123, 94, 167, 0.4);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.hero-content-main {
  color: #fff;
  /* max-width: 620px; */
}
.title-blog {
  text-align: center;
  line-height: unset !important;
}
.hero-content-main h1 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero-content-main h1 .accent {
  color: var(--purple-light);
}
.hero-content-main p {
  /* color: rgba(255, 255, 255, 0.72); */
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-hero-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: var(--font);
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--purple-dark);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font);
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-feat {
  display: flex;
  border-radius: 10px;
  padding: 14px 12px;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.hero-block {
  text-align: left;
}
.hero-block p {
  margin-bottom: 0 !important;
}
.hero-feat-icon {
  font-size: 22px;
}
.hero-feat h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.hero-feat p {
  font-size: 13px;
  color: rgb(255 255 255 / 82%);
  line-height: 1.4;
}

/* ===== SECTION LABEL ===== */
.section-label-main {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.section-title-lg {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title-center {
  text-align: center;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-main {
  padding: 0;
  padding-bottom: 40px !important;
}
/* .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
} */
.about-map-wrap {
  position: relative;
}
.about-map img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2f8 0%, #dce6f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-map-svg {
  width: 90%;
  opacity: 0.5;
}
.about-photo {
  position: absolute;
  bottom: -1%;
  left: 3%;
  width: 274px;
  height: 209px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.about-photo-cont img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #222, #444);
}
.granite-placeholder2 {
  width: 100%;
  height: 100%;
  /* background: radial-gradient(ellipse at 30% 40%, rgba(180, 180, 200, 0.2) 0%, transparent 55%),
    linear-gradient(135deg, #111 0%, #222 60%, #111 100%); */
}
.about-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.about-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.mission-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mission-icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9270c4;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.mission-icon p {
  padding: 1px;
}
.mission-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.mission-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== CATALOG ===== */
.catalog {
  padding: 30px 0 40px 0;
  background: #f5f5f5ab;
}
.catalog-head {
  text-align: center;
}
.catalog-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 7px 20px;
  width: 136px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--gray);
  transition: all 0.2s;
  font-family: var(--font);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-bottom: 14px;
}
.catalog-grid-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.stone-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.stone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.stone-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.stone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stone-color {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.stone-card:hover .stone-color {
  transform: scale(1.06);
}
.stone-body {
  padding: 10px 12px 12px;
}
.stone-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.stone-body p {
  font-size: 12px;
  color: var(--gray);
}

/* Stone colors */
.s-black {
  background: linear-gradient(135deg, #0a0a0a, #1c1c1c, #0d0d0d);
}
.s-red {
  background: linear-gradient(135deg, #6b1a1a, #8b2e2e, #5a1515);
}
.s-gray {
  background: linear-gradient(135deg, #4a4a4a, #636363, #3d3d3d);
}
.s-white {
  background: linear-gradient(135deg, #d4d0c8, #e8e4dc, #c8c4bc);
}
.s-gabbro {
  background: linear-gradient(135deg, #0f0f14, #1a1a22, #0c0c12);
}
.s-labradorit {
  background: linear-gradient(135deg, #1a2035, #2a3555, #151a2e);
}
.s-pokostivsky {
  background: linear-gradient(135deg, #8a7a6a, #a09080, #756555);
}
.s-mezhirich {
  background: linear-gradient(135deg, #5a6a4a, #6e7e5a, #4a5a3a);
}
.s-korosten {
  background: linear-gradient(135deg, #3a3a4a, #5050608, #303040);
}
.s-kapust {
  background: linear-gradient(135deg, #b8a890, #c8b8a0, #a09080);
}

/* Stone sparkle overlay */
.s-black::after,
.s-gabbro::after,
.s-labradorit::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(200, 210, 230, 0.35) 1px, transparent 1px);
  background-size: 18px 18px, 28px 28px;
  background-position: 4px 4px, 12px 8px;
}
.stone-img-wrap {
  position: relative;
}

/* ===== PRODUCTION ===== */
.production {
  padding: 30px 0 40px 0;
}
.production-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}
.prod-list {
  display: flex;
  flex-direction: column;
}
.prod-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  margin-bottom: 8px;
}
.prod-item {
  padding: 16px 18px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  background: transparent;
}
.prod-item.active,
.prod-item:hover {
  background: var(--gray-light);
  border-left-color: var(--purple);
}
.prod-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  transition: color 0.2s;
}
.prod-item p {
  font-size: 12px;
  color: var(--gray);
}
.prod-item.active h4 {
  color: var(--purple);
}
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.prod-photo {
  border-radius: 10px;
  overflow: hidden;
}
.prod-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-caption {
  margin-top: 25px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* Панелі */
.prod-panel {
  display: none;
  animation: prodFadeIn 0.25s ease;
}
.prod-panel.active {
  display: block;
}
@keyframes prodFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PROJECTS ===== */
.projects {
  padding: 30px 0 40px 0;
  background: #f5f5f5ab;
}
.projects-head {
  text-align: center;
  /* margin-bottom: 32px; */
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.project-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.proj-ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.proj-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* bottom gradient for text readability */
.proj-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 75%);
}
/* ── Swiper обгортка ── */
.projects-swiper {
  padding-bottom: 40px !important;
}

/* ── Картка проєкту ── */
.project-card {
  border-radius: 14px;
  overflow: hidden;
}

.proj-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.proj-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .proj-ph img {
  transform: scale(1.05);
}

/* ── Підпис знизу ── */
.proj-ph-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  border-radius: 0 0 14px 14px;
}

.proj-ph-inner h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ── Пагінація ── */
.projects-swiper-pagination {
  bottom: 0 !important;
}

.projects-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d4c5f0;
  opacity: 1;
  transition: background 0.2s, width 0.3s;
}

.projects-swiper-pagination .swiper-pagination-bullet-active {
  background: #9270c4;
  width: 24px;
  border-radius: 4px;
}

/* ── Swiper обгортка ── */
.stone-swiper {
  padding-bottom: 40px !important;
}

/* ── Картка ── */
.stone-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #d4d4d4;
}

/* ── Зображення ── */
.stone-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.stone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stone-card:hover .stone-img-wrap img {
  transform: scale(1.05);
}

/* ── Текст ── */
.stone-body {
  padding: 13px 15px 15px;
}

.stone-body h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.stone-body p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* ── Пагінація ── */
/* ── Пагінація ── */
.stone-swiper-pagination {
  bottom: 0 !important;
}

.stone-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d4c5f0;
  opacity: 1;
  transition: background 0.2s, transform 0.2s, width 0.3s;
}

.stone-swiper-pagination .swiper-pagination-bullet-active {
  background: #9270c4;
  transform: scale(1.3);
  width: 24px;
  border-radius: 4px;
}
/* subtle purple accent line at bottom on hover */
.project-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 3;
}
.project-card:hover::after {
  transform: scaleX(1);
}
.proj-ph-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  color: #fff;
  z-index: 2;
}
.proj-ph-inner h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.proj-ph-inner h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: #9270c4;
  margin-top: 7px;
  border-radius: 2px;
}
.proj-ph-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
/* Project backgrounds — realistic tones */
.pp1 {
  background: linear-gradient(160deg, #2c3a22 0%, #3e5230 50%, #1e2a16 100%);
}
.pp2 {
  background: linear-gradient(160deg, #2a2c28 0%, #3e4038 50%, #1e2018 100%);
}
.pp3 {
  background: linear-gradient(160deg, #1c2840 0%, #263858 50%, #141e30 100%);
}
.pp4 {
  background: linear-gradient(160deg, #283820 0%, #364e2c 50%, #1c2a16 100%);
}
.pp5 {
  background: linear-gradient(160deg, #3a2820 0%, #50382c 50%, #281c16 100%);
}
.pp6 {
  background: linear-gradient(160deg, #242030 0%, #342e44 50%, #181420 100%);
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-rows: unset;
  }
  .projects-grid .project-card {
    height: 220px;
  }
}
@media (max-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid .project-card {
    height: 200px;
  }
}

/* ===== BLOG ===== */
.blog {
  padding: 30px 0 40px 0;
}
.blog-head {
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
/* .blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
} */
.blog-ph {
  width: 100%;
  height: 100%;
}
.blog-ph img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}
/* .bp1 {
  background: linear-gradient(135deg, #1a2a1a, #2d402d);
}
.bp2 {
  background: linear-gradient(135deg, #2a2a1a, #404030);
}
.bp3 {
  background: linear-gradient(135deg, #1a1a2a, #2d2d40);
} */
.blog-body {
  padding: 6px 20px 18px 20px;
}
.blog-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}
.blog-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.blog-more {
  text-align: center;
  margin-top: 30px;
}
.btn-more {
  display: inline-block;
  padding: 12px 32px;
  width: 181px;
  border: 1.5px solid var(--purple);
  border-radius: 6px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font);
}
.btn-more:hover {
  background: var(--purple);
  color: #fff;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 70px 0;
  position: relative;
  background-image: url("./../img/Viscon-White.png");
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.582);
}
.contact-inner {
  display: flex;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info {
}
.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-block {
  display: flex;
  align-items: center;
}
.contact-item2 {
  margin-left: 100px;
}
.footer-contacts-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-item-text h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-item-text p,
.contact-item-text a {
  font-size: 13px;
  color: #282828;
  text-decoration: none;
  display: block;
}
.contact-item-text a:hover {
  color: var(--purple);
}
.work-hours {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid var(--border);
}
.work-hours h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.work-hours p {
  font-size: 12px;
  color: var(--gray);
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
  transition: background 0.2s;
  width: fit-content;
}
.download-btn:hover {
  background: #000;
}

.contact-form-box {
  background: #f9f4ee;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 630px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}
.form-group textarea {
  height: 100px;
}
.btn-send {
  width: 100%;
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
}
.btn-send:hover {
  background: var(--purple-dark);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: var(--dark2);
  padding: 22px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-cta p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.footer-cta-contacts {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-cta-contacts a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-cta-contacts a:hover {
  color: #fff;
}

/* ── MAIN CONTENT ── */
/* ── MAIN CONTENT ── */
.articles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 35px;
  margin-bottom: 35px;
}

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

.post-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.post-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.post-thumbnail {
  width: 100%;
  object-fit: cover;
  display: block;
}
.post-content {
  padding: 24px 22px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-content h3 {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.post-content p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}
.post-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.2s;
  text-decoration: none;
  margin-top: 18px;
}
.post-link:hover {
  gap: 8px;
}
.post-link::after {
  content: "›";
  font-size: 16px;
}
.post-meta {
  margin-top: 16px;
  padding: 14px 0;
  border-top: 1px solid #ececec;
  font-size: 12.5px;
  color: #7a7a7a;
}

/* ── PAGINATION ── */
.pages-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 50px 0 60px;
  flex-wrap: wrap;
}
.pages-nav a,
.pages-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: pointer;
}
.pages-nav a:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.pages-nav a.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.pages-nav .prev-page,
.pages-nav .next-page {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}
.pages-nav .pages-dots {
  border: none;
  color: var(--gray-light);
  cursor: default;
}
