:root {
  --bg: #101315;
  --surface: #171c1d;
  --surface-2: #1e2524;
  --text: #f2eee6;
  --muted: #b8b1a4;
  --green: #1f4a3d;
  --green-dark: #16372e;
  --champagne: #c6a76a;
  --champagne-soft: #e2d2b3;
  --line: #2a302f;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 19, 21, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 167, 106, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--champagne-soft);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav a {
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-outline {
  border-color: rgba(226, 210, 179, 0.25);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(226, 210, 179, 0.08);
}

.btn-gold {
  background: var(--champagne);
  color: #111;
}

.btn-gold:hover {
  background: var(--champagne-soft);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(rgba(8, 10, 11, 0.55), rgba(8, 10, 11, 0.82)),
    linear-gradient(135deg, #0f1414 0%, #163028 45%, #0f1414 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(198, 167, 106, 0.16), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(31, 74, 61, 0.34), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 100px 0;
}

.hero-content {
  max-width: 640px;
}

.eyebrow,
.section-label {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 10ch;
  margin-bottom: 24px;
  color: var(--champagne-soft);
  text-shadow: 0 0 24px rgba(198, 167, 106, 0.08);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.hero-text,
.section p,
.contact-form input,
.contact-form textarea {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(226, 210, 179, 0.14);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-image-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.trust-section {
  padding: 34px 0 0;
  background: transparent;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.10);
  border-radius: 24px;
  padding: 28px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 106, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.trust-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(198, 167, 106, 0.08);
  border: 1px solid rgba(198, 167, 106, 0.18);
  color: var(--champagne-soft);
  font-size: 1.3rem;
  font-weight: 700;
}

.trust-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text);
}

.trust-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section {
  padding: 110px 0;
}

.two-col,
.contact-grid,
.showcase-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.center {
  text-align: center;
}

.process-section {
  background: linear-gradient(180deg, #111617 0%, #171c1d 100%);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.process-intro {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.10);
  border-radius: 26px;
  padding: 28px 24px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 167, 106, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.process-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.process-number {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 167, 106, 0.08);
  border: 1px solid rgba(198, 167, 106, 0.18);
  color: var(--champagne-soft);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.process-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(198, 167, 106, 0.28), rgba(198, 167, 106, 0.02));
}

.process-mini {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  color: var(--text);
}

.process-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.why-section {
  background: linear-gradient(180deg, #101315 0%, #141919 100%);
}

.why-wrap {
  max-width: 1100px;
}

.why-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.why-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 700px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.10);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.why-row:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 106, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.why-row-number {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(198, 167, 106, 0.08);
  border: 1px solid rgba(198, 167, 106, 0.18);
  color: var(--champagne-soft);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-row-content h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.25s ease, transform 0.25s ease;
}

.why-row:hover .why-row-content h3 {
  color: var(--champagne-soft);
  transform: translateY(-1px);
}

.why-row-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 70ch;
}

.showcase {
  background: #141919;
}

.showcase-box {
  align-items: stretch;
}

.showcase-panel,
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.1);
  border-radius: 24px;
}

.showcase-panel {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.mini-stat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.mini-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 106, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--champagne-soft);
  margin-bottom: 6px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mini-stat:hover strong {
  color: var(--champagne);
  transform: translateY(-1px);
}

.mini-stat span {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #101315 0%, #131819 100%);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.10);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.contact-link:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 167, 106, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: var(--champagne-soft);
}

.contact-link-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--champagne);
}

.contact-link-value {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
}

.full {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--champagne-soft);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 90px 0 70px;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 720px;
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-row {
    grid-template-columns: 72px 1fr;
    padding: 24px;
  }

  .two-col,
  .contact-grid,
  .showcase-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.ppmv-section {
  background: linear-gradient(180deg, #131819 0%, #101315 100%);
}

.ppmv-wrap {
  max-width: 1200px;
}

.ppmv-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.ppmv-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
}

.ppmv-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.ppmv-form-card,
.ppmv-result-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(226, 210, 179, 0.10);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.ppmv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  color: var(--champagne);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field input,
.field select {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--champagne);
}

.full-span {
  grid-column: 1 / -1;
}

.ppmv-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ppmv-result-label {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.ppmv-result-box {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 18px;
}

.ppmv-result-box strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--champagne-soft);
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.ppmv-result-box span {
  color: var(--muted);
}

.ppmv-info-list {
  display: grid;
  gap: 12px;
}

.ppmv-info-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.ppmv-info-item span {
  color: var(--muted);
}

.ppmv-info-item strong,
.ppmv-info-item a {
  color: var(--text);
  font-weight: 600;
}

.ppmv-info-item a:hover {
  color: var(--champagne-soft);
}

.ppmv-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .ppmv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ppmv-form-grid {
    grid-template-columns: 1fr;
  }

  .ppmv-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 82px 0 56px;
  }

  .trust-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-heading {
    margin-bottom: 36px;
  }

  .why-header {
    margin-bottom: 32px;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .why-row-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .why-row-content h3 {
    font-size: 1.5rem;
  }

  .contact-link {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.partner-links-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 0;
  overflow-x: auto;
}

.partner-links-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 160px;
  min-height: 70px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.partner-links-row img {
  max-height: 34px;
  width: auto;
  display: block;
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  text-decoration: none;
  color: #C6A76A; /* zlatna */
  border: 1px solid rgba(198, 167, 106, 0.35);
  background: rgba(198, 167, 106, 0.08);
  transition: all 0.2s ease;
}

.instagram-icon:hover {
  color: #E2D2B3;
  border-color: rgba(226, 210, 179, 0.55);
  background: rgba(198, 167, 106, 0.14);
  transform: translateY(-2px);
}

.instagram-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.services-section {
  padding: 100px 20px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 106, 0.10), transparent 35%),
    #101315;
  color: #f5f1e8;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #c6a76a;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #e2d2b3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  color: #f4ead7;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 167, 106, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.service-btn:hover {
  transform: translateY(-6px);
  background: rgba(198, 167, 106, 0.10);
  border-color: rgba(226, 210, 179, 0.50);
  color: #e2d2b3;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.service-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 72px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-btn {
    min-height: 88px;
    font-size: 0.96rem;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 72px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-btn {
    min-height: 88px;
    font-size: 0.96rem;
  }
}
}

