* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
    url("images/bg.jpg") center/cover no-repeat;
  color: white;
}
/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 60px;
}

.navbar a {
  margin-left: 30px;
  color: #aaa;
  text-decoration: none;
}

.navbar .active {
  color: #c6a96b;
  border-bottom: 2px solid #c6a96b;
}

/* HERO */
.hero {
  height: 95vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;

  overflow: hidden; /* 🔥 OVO */
}

/* OVERLAY (gold + dark efekat) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 30%,
    rgba(0,0,0,0.2) 70%
  );
}


/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 200px 80px;
}

.tag {
  color: #c6a96b;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

h1 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 span {
  color: #c6a96b;
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.desc {
  color: #ccc;
  margin-bottom: 30px;
}

button {
  background: transparent;
  border: 1px solid #c6a96b;
  color: #c6a96b;
  padding: 12px 25px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #c6a96b;
  color: black;
}

/* DESKTOP HERO HEIGHT */
@media (min-width: 769px) {
  .hero {
    height: 95vh;
  }
}

/* FEATURES */
.features {
  padding: 100px 60px;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.features span {
  color: #c6a96b;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 320px;
  padding: 40px 30px;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.15);

  border: 1px solid rgba(212,175,55,0.2);

  backdrop-filter: blur(12px);

  transition: 0.3s;
}
.cards {
  margin-top: 40px;
}

.card {
  min-height: 140px;
}



/* PRICING */
.pricing {
  padding: 120px 60px;
  text-align: center;
}

.subtitle {
  color: #c6a96b;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.pricing span {
  color: #c6a96b;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.price-card {
  position: relative;
  width: 300px;
  padding: 50px 30px;
  border-radius: 10px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.2);

  transition: 0.3s;
}

.price-card h3 {
  margin-bottom: 10px;
  color: #ccc;
}

.price-card h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #c6a96b;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  margin: 10px 0;
  color: #bbb;
}

.price-card button {
  border: 1px solid #c6a96b;
  background: transparent;
  color: #c6a96b;
  padding: 10px 20px;
  cursor: pointer;
}

/* HOVER */

/* POPULAR (SREDNJA KARTICA) */
.popular {
  border: 1px solid #c6a96b;
  box-shadow: 0 0 40px rgba(212,175,55,0.25);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #c6a96b;
  color: black;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 20px;
}

/* CTA */
.cta {
  padding: 80px 60px;
}

.cta-box {
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);

  box-shadow: 0 0 30px rgba(212,175,55,0.1);
}

.cta-text .small {
  color: #c6a96b;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cta-text h2 {
  font-size: 32px;
}

.cta-text span {
  color: #c6a96b;
}

.cta-btn {
  border: 1px solid #c6a96b;
  background: transparent;
  color: #c6a96b;
  padding: 12px 25px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #c6a96b;
  color: black;
}
/* FOOTER */
.footer {
  padding: 80px 60px 30px;
}
.footer {
  border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-left {
  max-width: 300px;
}

.footer-left p {
  color: #aaa;
  margin-top: 15px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer h4 {
  margin-bottom: 15px;
  color: #c6a96b;
}

.footer a {
  color: #aaa;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* ABOUT */
.about {
  padding: 120px 60px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.about span {
  color: #c6a96b;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 15px;
  color: #bbb;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text li {
  margin-bottom: 10px;
  color: #aaa;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 40px;
  color: #c6a96b;
  margin-bottom: 5px;
}

.stat p {
  color: #aaa;
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 60px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.testimonials span {
  color: #c6a96b;
}

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

.testimonial {
  background: rgba(255,255,255,0.02);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.2);
  text-align: left;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #bbb;
}

.testimonial h4 {
  color: #c6a96b;
}

/* FAQ */
.faq {
  padding: 120px 60px;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.faq span {
  color: #c6a96b;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #c6a96b;
}

.faq-item p {
  color: #bbb;
  line-height: 1.6;
}

/* BLOG */
.blog {
  padding: 120px 60px;
  text-align: center;
}

.blog h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.blog span {
  color: #c6a96b;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-item {
  background: rgba(255,255,255,0.02);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.2);
  text-align: left;
}

.blog-item h3 {
  margin-bottom: 10px;
  color: #c6a96b;
}

.blog-item p {
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-item a {
  color: #c6a96b;
  text-decoration: none;
}

.blog-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #c6a96b;
  text-decoration: none;
  font-weight: bold;
}

/* PORTFOLIO */
.portfolio {
  padding: 120px 60px;
  text-align: center;
}

.portfolio h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.portfolio span {
  color: #c6a96b;
}

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

.portfolio-item {
  background: rgba(255,255,255,0.02);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.2);
  text-align: left;
}

.portfolio-item span {
  color: #c6a96b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-item h3 {
  margin-bottom: 10px;
  color: white;
}

.portfolio-item p {
  color: #bbb;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}
.features,
.pricing {
  position: relative;
  overflow: hidden;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
}
.pricing-cards {
  margin-top: 40px;
}
button:hover {
  background: #c6a96b;
  color: black;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}.features,
.pricing {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.features,
.pricing,
.cta,
.footer {
  background: transparent;
}
.hero::after {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px;

  background: linear-gradient(to bottom, transparent, #0b0b0b 80%);
  z-index: 2;
}
.card {
  position: relative;
  overflow: hidden; /* 🔥 ovo zatvara glow unutra */
}
.features::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: -1;
}
.features {
  padding: 140px 60px 120px;
}
.section-tag {
  color: #c6a96b;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
}
.card i {
  font-size: 32px;
  color: #c6a96b;
  margin-bottom: 20px;
}
.pricing .subtitle {
  font-size: 12px;
  margin-bottom: 10px;
}

.pricing h2 {
  line-height: 1.4;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;

  border-radius: 10px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.2);
}

.cta-text h2 {
  font-size: 34px;
  line-height: 1.3;
}
.footer-container {
  gap: 80px;
}

.footer-left p {
  line-height: 1.6;
}
h2 {
  font-weight: 600;
}

h3 {
  font-weight: 500;
}

p {
  font-size: 14px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

h1 span {
  font-weight: 600;
}
.features h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto;

  background: #c6a96b;
  box-shadow: 0 0 20px rgba(212,175,55,0.8);
}
.cta-box {
  box-shadow: 0 0 40px rgba(212,175,55,0.08);
}
.footer {
  background: rgba(0,0,0,0.4);
}
.features {
  margin-top: -80px;
  padding-top: 160px;
}
.card {
  background: rgba(255,255,255,0.04);
}
.features {
  margin-top: -120px; /* bilo -80 → sad jače */
  padding-top: 180px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.02), transparent 70%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,0.02), transparent 70%);

  pointer-events: none;
  z-index: 0;
}
.hero,
.features,
.pricing,
.cta,
.footer {
  position: relative;
  z-index: 1;
}
.features h2::after {
  box-shadow: 0 0 30px rgba(212,175,55,0.9);
}
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.12);
  backdrop-filter: blur(10px);
}
.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;

  width: 2px;
  height: 120px;

  background: linear-gradient(
    to bottom,
    #c6a96b,
    transparent
  );
}
body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: url("images/particles.png") center/cover no-repeat;
  opacity: 0.25;

  pointer-events: none;
  z-index: 0;
}
body {
  font-size: 16px;
}
.features h2,
.pricing h2 {
  font-size: 44px;
}

.card h3 {
  font-size: 20px;
}

.card p {
  font-size: 15px;
}
.card {
  width: 360px;
  padding: 50px 40px;
}
.features::before,
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 120px;
  height: 2px;

  background: #c6a96b;
  box-shadow: 0 0 20px rgba(198,169,107,0.6);
}
button {
  padding: 14px 30px;
  font-size: 14px;
}
button {
  position: relative;
  overflow: hidden;
  border: 1px solid #c6a96b;
  color: #c6a96b;
}

button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(198,169,107,0.4),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

button:hover::before {
  opacity: 1;
}

body {
  background-color: #0b0b0b;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at 20% 40%, rgba(198,169,107,0.05), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(198,169,107,0.05), transparent 60%);

  pointer-events: none;
}
.features {
  padding: 180px 60px 140px;
}

.pricing {
  padding: 160px 60px;
}

.cta {
  padding: 120px 60px;
}
.cta-box {
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(198,169,107,0.2);

  box-shadow:
    0 0 40px rgba(198,169,107,0.08),
    inset 0 0 30px rgba(255,255,255,0.02);
}
h2 {
  letter-spacing: 0.5px;
}
.portfolio {
  padding: 140px 60px;
  text-align: center;
}

.portfolio h2 span {
  color: #c6a96b;
}

.portfolio-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.portfolio-item {
  width: 320px;
  height: 200px;
  border-radius: 10px;

  background: #111;
  border: 1px solid rgba(198,169,107,0.2);

  transition: 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(198,169,107,0.2);
}
.contact {
  padding: 140px 60px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,169,107,0.2);
  color: white;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  display: none;
  margin: -4px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #f3e7c3;
  border: 1px solid rgba(198,169,107,0.34);
  background: rgba(198,169,107,0.1);
}

.form-status.error {
  color: #ffd5d5;
  border: 1px solid rgba(255,120,120,0.32);
  background: rgba(255,80,80,0.09);
}
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.4);
}
.modal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);

  justify-content: center;
  align-items: center;

  z-index: 999;
}

.modal-content {
  position: relative;
  background: #111;
  padding: 40px;
  border-radius: 10px;

  width: 400px;

  border: 1px solid rgba(198,169,107,0.3);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: url("images/particles.png");
  opacity: 0.2;

  animation: moveParticles 60s linear infinite;

  pointer-events: none;
  z-index: 0;
}

@keyframes moveParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200px);
  }
}
.navbar a {
  position: relative;
  transition: 0.3s;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;
  background: #c6a96b;

  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

.portfolio-item:hover {
  transform: scale(1.08);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(198,169,107,0.2);
}
button:hover {
  background: #c6a96b;
  color: black;

  transform: scale(1.05);
}

.popular {
  z-index: 5;

  border: 1px solid #c6a96b;

  box-shadow:
    0 0 50px rgba(198,169,107,0.3);
}

.pricing-cards {
  align-items: center;
}

.popular {
  z-index: 2;
}

/* 🔥 JEDINSTVEN HOVER SISTEM */

.card,
.price-card,
.portfolio-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* FEATURE */


/* PRICING */

/* PORTFOLIO */
.portfolio-item:hover {
  transform: scale(1.08);
}
/* 🔥 JEDINI HOVER SISTEM (kao portfolio) */

.card,
.price-card,
.portfolio-item {
  transition: all 0.3s ease;
}

/* FEATURE */
.card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6),
              0 0 30px rgba(198,169,107,0.15);
  z-index: 5;
}

/* PRICING */
.price-card {
  transform: scale(0.95);
}

.price-card.popular {
  transform: scale(1.08);
}

.price-card:hover {
  transform: scale(1.12);
  box-shadow: 0 25px 70px rgba(0,0,0,0.7),
              0 0 40px rgba(198,169,107,0.25);
  z-index: 10;
}

/* PORTFOLIO */
.portfolio-item:hover {
  transform: scale(1.08);
}
.hero-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(198,169,107,0.15);
  transition: 0.3s;
}
body {
  background-color: #0b0b0b;
}
.hero-sub {
  font-size: 18px;
  color: #aaa;
  margin-top: 10px;
  margin-bottom: 25px;
  max-width: 500px;
}
button {
  position: relative;
  padding: 14px 30px;
  border: 1px solid #c6a96b;
  color: #c6a96b;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}

button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(198,169,107,0.3),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

button:hover::after {
  opacity: 1;
}

button:hover {
  transform: scale(1.05);
}
.card:hover {
  transform: scale(1.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(198,169,107,0.2);
}
.price-card:hover {
  transform: translateY(-10px) scale(1.08);
}

.price-card.popular {
  transform: scale(1.05);
}
.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(198,169,107,0.1),
    transparent
  );

  opacity: 0;
  transition: 0.5s;
}

.cta-box:hover::before {
  opacity: 1;
}
.navbar {
  transition: 0.3s;
}

.navbar:hover {
  background: rgba(0,0,0,0.6);
}
section {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.why-site {
  padding: 140px 60px;
  text-align: center;
}

.why-site h2 {
  font-size: 44px;
  margin-bottom: 60px;
}

.why-site span {
  color: #c6a96b;
}

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

.why-item {
  padding: 40px;
  border-radius: 12px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(198,169,107,0.2);

  backdrop-filter: blur(10px);

  text-align: left;

  transition: 0.3s;
}

.why-item h3 {
  color: #c6a96b;
  margin-bottom: 10px;
}

.why-item p {
  color: #bbb;
  font-size: 14px;
}

/* hover kao portfolio */
.why-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 30px rgba(198,169,107,0.15);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  transition: 0.3s ease;
}

/* stanje kad skroluješ */
.navbar.scrolled {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);

  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
body {
  padding-top: 80px;
}
.navbar a.active {
  color: #c6a96b;
}

.navbar a.active::after {
  width: 100%;
}

.card:hover,
.price-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 70% 50%,
    rgba(0,0,0,0.2),
    transparent 60%
  );

  pointer-events: none;
}
.cta-box:hover {
  transform: scale(1.02);
}
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 80px;
    right: 0;

    background: rgba(0,0,0,0.95);
    width: 100%;
    text-align: center;

    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .navbar nav a {
    margin: 15px 0;
    display: block;
  }

  .navbar nav.active {
    display: flex;
  }
}
@media (max-width: 768px) {

  .hero-content {
    padding: 120px 20px;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .row {
    width: 100%;
    gap: 20px;
  }

  .card {
    width: min(100%, 320px);
    max-width: 320px;
  }

}
@media (max-width: 768px) {

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
    max-width: 320px;
  }

}
@media (max-width: 768px) {

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

}
@media (max-width: 768px) {

  .hero-content {
    padding: 100px 20px 60px;
    text-align: left;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero h1 span {
    display: block; /* da ne bude razvučeno */
  }

  .desc {
    font-size: 14px;
    margin-top: 15px;
  }

}

@media (max-width: 768px) {

  .hero button {
    margin-top: 20px;
    padding: 14px 22px;
    font-size: 14px;
  }

}
.hero .tag {
  font-size: 11px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {

  .hero .overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.6) 40%,
      rgba(0,0,0,0.9) 100%
    );
  }

}
@media (max-width: 768px) {

  .hero h1 {
  font-size: 42px;
  line-height: 1.15;
}

  .hero .desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  .hero-content {
    max-width: 100%;
  }
  .hero::before {
  display: none;
}
}
@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: auto;

    padding: 120px 20px 40px;

    background-size: contain; /* KLJUČ */
    background-position: center;
    background-repeat: no-repeat;
  }

}
@media (max-width: 768px) {
  .hero::before {
    display: none;
  }
}
@media (max-width: 768px) {

  .hero .overlay {
    background: rgba(0,0,0,0.5);
  }

}
@media (max-width: 768px) {

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 15px;
  }

}
/* 🔥 FINAL MOBILE FIX (OVO MORA BITI NA DNU) */
@media (max-width: 768px) {

  .hero {
    height: auto !important;
    min-height: auto !important;

    padding: 120px 20px 40px !important;

    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .hero::before {
    display: none !important;
  }

  .hero .overlay {
    background: rgba(0,0,0,0.5) !important;
  }

}

/* FINAL HERO HEIGHT */
.hero {
  min-height: 95vh;
  height: auto;
}

.hero-content {
  max-width: 720px;
  padding-top: 145px;
  padding-bottom: 70px;
}

.hero .tag {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 82px;
  line-height: 1.04;
  margin-bottom: 26px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  max-width: 560px;
}

.hero .desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero button {
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.features {
  margin-top: 0;
  padding-top: 80px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 58svh !important;
    padding: 0 20px !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .hero-content {
    padding: 92px 0 34px !important;
    max-width: 94%;
  }

  .hero .tag {
    font-size: 11px;
    letter-spacing: 2.6px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(62px, 14.5vw, 78px);
    line-height: 0.98;
    margin-bottom: 26px;
  }

  .hero-sub,
  .hero .desc {
    font-size: 19px;
    line-height: 1.5;
    max-width: 94%;
  }

  .hero .desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero button {
    padding: 17px 36px;
    font-size: 13px;
    letter-spacing: 1.6px;
  }

  .features {
    padding-top: 60px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 58svh !important;
    padding: 0 16px !important;
  }

  .hero h1 {
    font-size: clamp(56px, 15vw, 68px);
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero .desc {
    font-size: 16px;
  }

  .hero button {
    width: auto;
    padding: 17px 30px;
  }
}

/* TRUE MOBILE TUNING */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 22px;
  }

  .logo {
    height: 44px;
  }

  .menu-toggle {
    display: none;
  }

  .navbar nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    width: auto;
    padding: 0;
    background: transparent;
  }

  .navbar nav a {
    margin: 0 0 0 16px;
    font-size: 11px;
  }

  .hero {
    min-height: 64svh !important;
    padding: 0 24px !important;
  }

  .hero-content {
    padding: 105px 0 44px !important;
    max-width: 100%;
  }

  .hero .tag {
    font-size: 11px;
    letter-spacing: 2.6px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 72px);
    line-height: 1;
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero .desc {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero button {
    padding: 16px 30px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .features,
  .pricing,
  .why-site,
  .portfolio,
  .cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .features h2,
  .pricing h2 {
    font-size: 34px;
  }

  .card,
  .price-card {
    max-width: 360px;
  }
}

@media (max-width: 420px) {
  .navbar {
    padding: 16px 14px;
  }

  .logo {
    height: 38px;
  }

  .navbar nav a {
    margin-left: 9px;
    font-size: 9px;
  }

  .hero {
    min-height: 62svh !important;
    padding: 0 18px !important;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 58px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero .desc {
    font-size: 14px;
  }
}

/* SECTION SPACING TUNING */
.features,
.pricing,
.why-site,
.portfolio {
  padding-top: 95px;
  padding-bottom: 85px;
}

.cta {
  padding-top: 75px;
  padding-bottom: 85px;
}

.footer {
  padding-top: 55px;
}

.features h2,
.pricing h2,
.why-site h2 {
  margin-bottom: 38px;
}

.cards,
.pricing-cards,
.portfolio-grid {
  margin-top: 28px;
}

.why-grid {
  margin-top: 34px;
}

@media (max-width: 768px) {
  .features,
  .pricing,
  .why-site,
  .portfolio {
    padding-top: 62px;
    padding-bottom: 58px;
  }

  .cta {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .footer {
    padding-top: 45px;
  }

  .features h2,
  .pricing h2,
  .why-site h2 {
    margin-bottom: 28px;
  }

  .cards,
  .pricing-cards,
  .portfolio-grid {
    margin-top: 22px;
  }

  .why-grid {
    margin-top: 24px;
  }
}

/* PREMIUM POLISH */
:root {
  --gold: #c6a96b;
  --gold-soft: rgba(198,169,107,0.18);
  --panel: rgba(255,255,255,0.035);
  --panel-strong: rgba(255,255,255,0.055);
  --line: rgba(198,169,107,0.18);
  --muted: #b8b8b8;
}

body {
  background-color: #090909;
  color: #fff;
}

.navbar {
  height: 76px;
  padding: 14px 64px;
  border-bottom: 1px solid rgba(198,169,107,0.08);
  background: rgba(5,5,5,0.58);
}

.navbar.scrolled {
  background: rgba(5,5,5,0.78);
}

.logo {
  height: 48px;
  object-fit: contain;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar nav a {
  margin-left: 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero {
  min-height: 72svh;
}

.overlay {
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.44) 45%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.38));
}

.hero-content {
  padding-left: clamp(32px, 7vw, 86px);
}

.hero h1 {
  max-width: 760px;
  letter-spacing: 0;
}

.hero-sub {
  color: #d3d3d3;
}

.desc {
  color: var(--muted);
}

button,
.cta-btn {
  border-radius: 0;
  font-weight: 700;
}

.features,
.process,
.pricing,
.why-site,
.portfolio,
.cta {
  position: relative;
  text-align: center;
}

.process {
  padding: 95px 60px 85px;
}

.process h2,
.portfolio h2 {
  font-size: 44px;
  line-height: 1.25;
}

.process h2 span,
.portfolio h2 span {
  color: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.process-step,
.card,
.price-card,
.why-item,
.portfolio-item {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.process-step {
  min-height: 230px;
  padding: 34px 28px;
  text-align: left;
}

.process-step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
}

.card,
.price-card,
.why-item,
.process-step,
.portfolio-item {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover,
.price-card:hover,
.why-item:hover,
.process-step:hover,
.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: rgba(198,169,107,0.42);
  box-shadow: 0 24px 70px rgba(0,0,0,0.46), 0 0 28px rgba(198,169,107,0.08);
}

.price-card,
.price-card.popular,
.price-card:hover {
  transform: none;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.popular {
  border-color: rgba(198,169,107,0.55);
  box-shadow: 0 26px 70px rgba(0,0,0,0.45), 0 0 34px rgba(198,169,107,0.14);
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 240px;
  padding: 26px;
  overflow: hidden;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.5) 48%, rgba(0,0,0,0.88) 100%),
    url("images/dodir.jpeg") center / cover no-repeat;
}

.portfolio-item:hover,
.portfolio-item:focus {
  color: inherit;
  text-decoration: none;
}

.portfolio-item span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.portfolio-item p {
  color: var(--muted);
}

.cta-box {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 8px;
}

.modal-content {
  border-radius: 8px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(5,5,5,0.96);
    border-bottom: 1px solid var(--line);
  }

  .navbar nav.active {
    display: flex !important;
  }

  .navbar nav a {
    display: block;
    margin: 0;
    padding: 12px 0;
    font-size: 12px;
  }

  .hero {
    min-height: 64svh !important;
  }

  .hero-content {
    padding-top: 104px !important;
  }

  .hero .tag {
    font-size: 10px;
    letter-spacing: 2.2px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 52px);
    line-height: 1.06;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    max-width: 96%;
  }

  .hero .desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero button {
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .process {
    padding: 62px 28px 58px;
  }

  .process h2,
  .portfolio h2 {
    font-size: 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .process-step {
    min-height: auto;
    padding: 28px 24px;
  }

  .process-step span {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .portfolio-item {
    height: 210px;
  }

  .cta-box {
    align-items: flex-start;
    text-align: left;
  }
}

/* SOFT HERO EDGES */
body {
  padding-top: 0;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero {
  box-shadow:
    inset 0 42px 42px rgba(5,5,5,0.34),
    inset 0 -70px 58px rgba(9,9,9,0.68);
}

.navbar {
  background: rgba(5,5,5,0.62);
}

.navbar.scrolled {
  background: rgba(5,5,5,0.82);
}

@media (max-width: 768px) {
  body {
    background-color: #090909;
    padding-top: 0;
  }

  .navbar {
    background: rgba(5,5,5,0.72);
    border-bottom-color: rgba(198,169,107,0.06);
  }

  .hero {
    margin-top: 0;
    box-shadow:
      inset 0 28px 30px rgba(5,5,5,0.24),
      inset 0 -52px 46px rgba(9,9,9,0.56);
  }

  body::after {
    opacity: 0.08;
  }
}

/* FINAL PREMIUM RESPONSIVE PASS */
.features,
.process,
.pricing,
.why-site,
.portfolio,
.cta {
  padding-left: clamp(28px, 7vw, 72px);
  padding-right: clamp(28px, 7vw, 72px);
}

.cards,
.pricing-cards,
.portfolio-grid,
.process-grid,
.why-grid {
  width: min(100%, 1120px);
}

.section-tag,
.subtitle,
.cta-text .small,
.portfolio-item span {
  font-weight: 700;
}

.card,
.price-card,
.process-step,
.why-item,
.portfolio-item {
  backdrop-filter: blur(14px);
}

.card {
  min-height: 210px;
}

.card i {
  font-size: 34px;
}

.price-card {
  min-height: 330px;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.why-item {
  min-height: 150px;
}

.cta-box {
  min-height: 210px;
}

.footer {
  border-top-color: rgba(198,169,107,0.16);
}

@media (min-width: 901px) {
  .hero-content {
    padding-top: 140px;
  }

  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio {
    padding-top: 86px;
    padding-bottom: 78px;
  }

  .cta {
    padding-top: 70px;
    padding-bottom: 78px;
  }
}

@media (max-width: 768px) {
  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio,
  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    min-height: 62svh !important;
    background-position: center top !important;
  }

  .hero-content {
    padding: 116px 0 38px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.05;
    max-width: 96%;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.55;
    max-width: 92%;
  }

  .hero .desc {
    font-size: 12px;
    max-width: 90%;
  }

  .hero button {
    padding: 13px 22px;
    font-size: 10px;
  }

  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio {
    padding-top: 54px;
    padding-bottom: 50px;
  }

  .cta {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .section-tag,
  .subtitle,
  .cta-text .small {
    font-size: 10px;
    letter-spacing: 2.8px;
  }

  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.16;
    margin-bottom: 24px;
  }

  .cards,
  .pricing-cards,
  .process-grid,
  .why-grid,
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .card,
  .price-card,
  .process-step,
  .why-item,
  .portfolio-item {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 24px;
    text-align: center;
  }

  .card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card i {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .card h3,
  .why-item h3,
  .process-step h3 {
    font-size: 22px;
  }

  .card p,
  .why-item p,
  .process-step p,
  .portfolio-item p {
    font-size: 15px;
    line-height: 1.6;
  }

  .process-step {
    text-align: left;
  }

  .process-step span {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .price-card {
    padding: 34px 26px;
  }

  .price-card h1 {
    font-size: 48px;
  }

  .price-card li {
    font-size: 16px;
    line-height: 1.8;
  }

  .price-card button {
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 12px;
  }

  .why-item {
    text-align: left;
    min-height: 0;
  }

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

  .portfolio-item {
    height: 190px;
  }

  .portfolio-item h3 {
    font-size: 28px;
  }

  .cta-box {
    min-height: 0;
    padding: 36px 28px;
  }

  .cta-text h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.16;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    margin-top: 22px;
    padding: 15px 22px;
  }

  .footer {
    padding: 44px 28px 28px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-left p {
    max-width: 420px;
    font-size: 15px;
  }

  .footer a,
  .footer-contact p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio,
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2 {
    font-size: 32px;
  }

  .card,
  .price-card,
  .process-step,
  .why-item,
  .portfolio-item {
    padding-left: 22px;
    padding-right: 22px;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}

/* VISUAL REPAIR PASS */
body {
  background:
    linear-gradient(rgba(5,5,5,0.72), rgba(5,5,5,0.84)),
    url("images/bg.jpg") center top / cover fixed no-repeat;
}

body::before {
  opacity: 0.75;
}

body::after {
  opacity: 0.14;
}

.features,
.process,
.pricing,
.why-site,
.portfolio,
.cta {
  overflow: hidden;
}

@media (min-width: 901px) {
  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .cards,
  .pricing-cards,
  .portfolio-grid {
    max-width: 1040px;
    gap: 26px;
  }

  .card {
    width: 310px;
    min-height: 170px;
    padding: 34px 28px;
  }

  .price-card {
    width: 300px;
    min-height: 330px;
    padding: 42px 28px;
  }

  .portfolio-item {
    width: 310px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  body {
    background:
      linear-gradient(rgba(5,5,5,0.72), rgba(5,5,5,0.86)),
      url("images/bg.jpg") center top / auto 1200px repeat-y;
    font-size: 14px;
  }

  body::before {
    opacity: 0.55;
  }

  body::after {
    opacity: 0.12;
  }

  .navbar {
    height: 68px;
    padding: 12px 22px;
  }

  .logo {
    height: 40px;
  }

  .menu-toggle {
    font-size: 22px;
  }

  .hero {
    min-height: 58svh !important;
  }

  .hero-content {
    padding: 98px 0 34px !important;
  }

  .hero .tag {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.5;
    max-width: 88%;
  }

  .hero .desc {
    font-size: 11px;
    line-height: 1.55;
    max-width: 88%;
    margin-bottom: 18px;
  }

  .hero button {
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio {
    padding: 48px 22px;
  }

  .cta {
    padding: 42px 22px 50px;
  }

  .section-tag,
  .subtitle,
  .cta-text .small {
    font-size: 9px;
    letter-spacing: 2.4px;
    margin-bottom: 12px;
  }

  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2 {
    font-size: clamp(26px, 7.1vw, 34px);
    line-height: 1.18;
    margin-bottom: 22px;
  }

  .cards,
  .pricing-cards,
  .process-grid,
  .why-grid,
  .portfolio-grid {
    gap: 16px;
    margin-top: 18px;
  }

  .card,
  .process-step,
  .why-item,
  .portfolio-item,
  .price-card {
    max-width: 420px;
    padding: 24px 22px;
    border-radius: 8px;
  }

  .card {
    min-height: 160px;
  }

  .card i {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .card h3,
  .process-step h3,
  .why-item h3 {
    font-size: 18px;
  }

  .card p,
  .process-step p,
  .why-item p,
  .portfolio-item p {
    font-size: 13px;
    line-height: 1.55;
  }

  .process-step span {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .price-card {
    min-height: 0;
    padding: 30px 22px;
  }

  .price-card h3 {
    font-size: 18px;
  }

  .price-card h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .price-card li {
    font-size: 14px;
    line-height: 1.7;
  }

  .price-card button {
    padding: 12px 20px;
    font-size: 11px;
  }

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

  .why-item {
    text-align: left;
  }

  .portfolio-item {
    height: 165px;
  }

  .portfolio-item h3 {
    font-size: 22px;
  }

  .portfolio-item span {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .cta-box {
    padding: 30px 24px;
  }

  .cta-text h2 {
    font-size: clamp(26px, 7.1vw, 34px);
  }

  .cta-btn {
    max-width: 280px;
    padding: 13px 18px;
    font-size: 11px;
  }

  .footer {
    padding: 38px 24px 26px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer a,
  .footer-contact p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio,
  .cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.8vw, 39px);
  }

  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2,
  .cta-text h2 {
    font-size: 28px;
  }

  .card,
  .process-step,
  .why-item,
  .portfolio-item,
  .price-card {
    padding: 22px 20px;
  }
}

/* BUSINESS LAUNCH POLISH */
.cards,
.pricing-cards,
.portfolio-grid {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.process-grid,
.why-grid {
  margin-left: auto;
  margin-right: auto;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 12px;
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(198,169,107,0.24);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

@media (min-width: 901px) {
  .cards,
  .pricing-cards,
  .portfolio-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    max-width: calc(100% - 120px);
  }
}

@media (max-width: 768px) {
  body {
    background:
      linear-gradient(rgba(5,5,5,0.66), rgba(5,5,5,0.82)),
      url("images/bg.jpg") center top / cover repeat-y;
  }

  body::before {
    opacity: 0.42;
  }

  body::after {
    opacity: 0.1;
  }

  .navbar {
    height: 78px;
    padding: 18px 26px;
    background: rgba(3,3,3,0.86);
  }

  .logo {
    height: 42px;
  }

  .menu-toggle {
    font-size: 26px;
  }

  .hero {
    min-height: 74svh !important;
    background-size: cover !important;
    background-position: 58% top !important;
    box-shadow:
      inset 0 42px 36px rgba(0,0,0,0.34),
      inset 0 -64px 52px rgba(9,9,9,0.62);
  }

  .overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,0.76), rgba(0,0,0,0.32)),
      linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.42));
  }

  .hero-content {
    padding: 124px 0 54px !important;
    max-width: 100%;
  }

  .hero .tag {
    font-size: 10px;
    letter-spacing: 2.8px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.8vw, 56px);
    line-height: 1.02;
    max-width: 96%;
    margin-bottom: 18px;
  }

  .hero-sub {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .desc {
    max-width: 88%;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero button {
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .hero-proof {
    max-width: 92%;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-proof span {
    padding: 7px 9px;
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio {
    padding-top: 56px;
    padding-bottom: 52px;
  }

  .cards,
  .pricing-cards,
  .process-grid,
  .why-grid,
  .portfolio-grid {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 76svh !important;
    background-position: 60% top !important;
  }

  .hero-content {
    padding-top: 116px !important;
    padding-bottom: 48px !important;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 46px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-proof span {
    font-size: 8px;
  }
}

/* MOBILE HERO FINAL LOOK */
.hero-content::before {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar {
    height: 76px;
    padding: 16px 26px;
    background: rgba(3,3,3,0.9);
  }

  .hero {
    min-height: 82svh !important;
    background-position: left center !important;
    border-left: 0 !important;
    outline: 0 !important;
  }

  .overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.22) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 44%, rgba(0,0,0,0.7) 100%);
  }

  .hero-content {
    padding: 122px 0 46px !important;
    max-width: 100%;
    border-left: 0 !important;
    box-shadow: none !important;
  }

  .hero .tag {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.2vw, 52px);
    line-height: 1.01;
    max-width: 94%;
    margin-bottom: 18px;
  }

  .hero-sub {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero .desc {
    max-width: 90%;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero button {
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 1.5px;
    background: rgba(0,0,0,0.18);
  }

  .hero-proof {
    max-width: 96%;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-proof span {
    padding: 7px 9px;
    font-size: 8px;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.28);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 84svh !important;
    background-position: left center !important;
  }

  .hero-content {
    padding-top: 112px !important;
    padding-bottom: 42px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 10.7vw, 46px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero .desc {
    font-size: 11px;
  }
}

/* HORIZONTAL OVERFLOW + LEFT STRIPE FIX */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #090909;
}

body {
  position: relative;
}

.navbar,
.hero,
.features,
.process,
.pricing,
.why-site,
.portfolio,
.cta,
.footer {
  max-width: 100vw;
  overflow-x: hidden;
}

.hero,
.hero .overlay,
.hero-content {
  border-left: 0 !important;
  outline: 0 !important;
}

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

  .navbar,
  .hero,
  .features,
  .process,
  .pricing,
  .why-site,
  .portfolio,
  .cta,
  .footer {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    left: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    background-position: 88% center !important;
  }

  .hero .overlay {
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero-content {
    width: 100%;
    padding-left: 24px !important;
    padding-right: 18px !important;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    background-position: 92% center !important;
  }

  .hero-content {
    padding-left: 20px !important;
    padding-right: 16px !important;
  }
}

/* MOBILE MENU FIX */
.navbar {
  overflow: visible !important;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 1002;
  }

  .navbar nav {
    position: absolute !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001;
    display: none !important;
    width: 100% !important;
    padding: 18px 0 !important;
    background: rgba(3,3,3,0.96) !important;
    border-bottom: 1px solid rgba(198,169,107,0.18);
  }

  .navbar nav.active {
    display: flex !important;
  }
}

/* HERO FULL-WIDTH SEPARATOR + PRICING HOVER */
.hero {
  border-bottom: 1px solid rgba(198,169,107,0.55);
}

.hero::before,
.hero::after {
  display: none !important;
}

.features::before {
  display: none !important;
}

.price-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.035) !important;
  border-color: rgba(198,169,107,0.48);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5), 0 0 34px rgba(198,169,107,0.14);
}

.price-card.popular:hover {
  transform: translateY(-10px) scale(1.045) !important;
}

/* SUBTLE BACKGROUND ATMOSPHERE */
body {
  background:
    linear-gradient(rgba(5,5,5,0.64), rgba(5,5,5,0.78)),
    url("images/bg.jpg") center top / cover fixed no-repeat;
}

body::before {
  opacity: 0.65 !important;
}

body::after {
  opacity: 0.2 !important;
}

@media (max-width: 768px) {
  body {
    background:
      linear-gradient(rgba(5,5,5,0.66), rgba(5,5,5,0.8)),
      url("images/bg.jpg") center top / auto 1100px repeat-y;
  }

  body::before {
    opacity: 0.48 !important;
  }

  body::after {
    opacity: 0.16 !important;
  }
}

/* LOGO SIZE TUNE */
.logo {
  height: 56px;
}

.footer .logo {
  height: 52px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0 !important;
  border-bottom: 0 !important;
  color: inherit;
  text-decoration: none;
}

.navbar .logo-link::after {
  display: none !important;
}

@media (max-width: 768px) {
  .logo {
    height: 46px;
  }

  .footer .logo {
    height: 44px;
  }
}

/* FINAL MOBILE HERO CROP */
@media (max-width: 768px) {
  .hero {
    background-position: 60% center !important;
  }
}

@media (max-width: 420px) {
  .hero {
    background-position: 58% center !important;
  }
}

/* SUBTLE MOBILE HERO DARKEN */
@media (max-width: 768px) {
  .hero .overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.54) 42%, rgba(0,0,0,0.28) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.16) 44%, rgba(0,0,0,0.72) 100%) !important;
  }
}

/* CONTENT FIT FOR UPDATED PACKAGES */
.price-card {
  min-height: 430px;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card li {
  line-height: 1.55;
}

.pricing-note {
  width: min(100%, 900px);
  margin: 34px auto 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.7;
}

.portfolio-grid:has(.portfolio-item:only-child) {
  width: min(100%, 420px);
}

.portfolio-grid:has(.portfolio-item:only-child) .portfolio-item {
  width: 100%;
}

@media (max-width: 768px) {
  .price-card {
    min-height: 0;
    padding: 24px 22px !important;
  }

  .price-card h1 {
    margin-bottom: 14px;
  }

  .price-card ul {
    margin-bottom: 20px;
  }

  .price-card li {
    line-height: 1.45;
  }

  .pricing-note {
    max-width: 420px;
    margin-top: 24px;
    font-size: 12px;
    text-align: left;
  }
}

/* MOBILE COMPACT SECTIONS */
@media (max-width: 768px) {
  .features,
  .process,
  .why-site,
  .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .features h2,
  .process h2,
  .why-site h2,
  .faq h2 {
    margin-bottom: 18px;
  }

  .cards,
  .process-grid,
  .why-grid,
  .faq-grid {
    gap: 12px !important;
    margin-top: 16px;
  }

  .row {
    gap: 12px !important;
  }

  .features .card,
  .process-step,
  .why-item {
    width: 100%;
    max-width: 420px;
    min-height: 0 !important;
    padding: 16px 18px !important;
  }

  .features .card i {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .features .card h3,
  .process-step h3,
  .why-item h3 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.25;
  }

  .features .card p,
  .process-step p,
  .why-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .process-grid,
  .why-grid {
    justify-items: center;
  }

  .process-step span {
    margin-bottom: 8px !important;
    font-size: 20px !important;
  }

  .faq {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    max-width: 420px;
    text-align: left;
  }

  .faq-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(198,169,107,0.16);
  }

  .faq-item h3 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-item p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* FINAL TYPOGRAPHY LOCK */
body,
button,
input,
textarea,
select {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

h1 span,
h2,
.features h2,
.process h2,
.pricing h2,
.why-site h2,
.portfolio h2,
.faq h2,
.cta-text h2 {
  font-weight: 700;
}

h3,
.card h3,
.process-step h3,
.why-item h3,
.price-card h3,
.portfolio-item h3,
.faq-item h3 {
  font-weight: 600;
}

.tag,
.section-tag,
.subtitle,
.cta-text .small,
.portfolio-item span,
.navbar nav a,
button,
.cta-btn {
  font-weight: 700;
}

/* FINAL MOBILE TYPOGRAPHY */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1,
  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2,
  .faq h2,
  .cta-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 11.5vw, 54px) !important;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 16px !important;
    line-height: 1.6;
  }

  .features h2,
  .process h2,
  .pricing h2,
  .why-site h2,
  .portfolio h2,
  .faq h2,
  .cta-text h2 {
    font-size: clamp(31px, 8.2vw, 38px) !important;
    line-height: 1.16;
  }

  .tag,
  .section-tag,
  .subtitle,
  .cta-text .small,
  .portfolio-item span {
    font-size: 11px !important;
    letter-spacing: 2.2px;
  }

  .features .card h3,
  .process-step h3,
  .why-item h3,
  .price-card h3,
  .portfolio-item h3,
  .faq-item h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  .features .card p,
  .process-step p,
  .why-item p,
  .portfolio-item p,
  .faq-item p,
  .pricing-note {
    font-size: 14px;
    line-height: 1.55;
  }

  .price-card li {
    font-size: 15px;
    line-height: 1.5;
  }

  .process-step span {
    font-size: 22px !important;
  }

  .navbar nav a,
  button,
  .cta-btn,
  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
  }
}
