* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, #050505, #111);
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 25px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 3px;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 0, 40, 0.25));
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: white;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #111 0%, #050505 70%);
  position: relative;
}
.title {
  font-size: 80px;
  letter-spacing: 5px;
}

.subtitle {
  margin-top: 20px;
  opacity: 0.7;
}

/* SEZIONI */
section {
  padding: 100px 10%;
}

/* SERVICES */
.services {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  padding: 40px;
  background: #111;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #1a1a1a;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: white;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ccc;
}

.logo img {
  height: 40px;
}

/* PORTFOLIO */
.portfolio {
  padding: 120px 10%;
}

.portfolio h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-item {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.work-item:hover {
  transform: scale(1.03);
  background: #1a1a1a;
}

/* FOOTER */
.footer {
  padding: 40px 10%;
  text-align: center;
  opacity: 0.6;
}

/* PORTFOLIO UPGRADE */
.work-item {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.work-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15));
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 25px;
  font-size: 24px;
  font-weight: 600;
}

/* CTA FINALE */
.final-cta {
  padding: 120px 8%;
  background:
    radial-gradient(circle at center, rgba(255, 42, 42, 0.08) 0%, rgba(255, 42, 42, 0.02) 22%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  display: flex;
  justify-content: center;
}

.final-cta-box {
  position: relative;
  width: 100%;
  max-width: 980px;
  text-align: center;
  padding: 72px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.02);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 40px rgba(255, 42, 42, 0.05);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.final-cta-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,42,42,0), #ff2a2a, rgba(255,42,42,0));
  box-shadow: 0 0 24px rgba(255, 42, 42, 0.35);
}

.final-cta-kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff2a2a;
  border: 1px solid rgba(255,42,42,0.22);
  background: rgba(255,42,42,0.07);
}

.final-cta h2 {
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 800;
  color: #ffffff;
}

.final-cta p {
  margin: 0 auto 30px;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
}

.final-cta-btn .btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.final-cta-btn:hover .btn-icon {
  transform: translateX(4px);
}

.final-cta-box {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.final-cta-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 42, 42, 0.18);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.42),
    0 0 50px rgba(255, 42, 42, 0.08);
}

@media (max-width: 768px) {
  .final-cta {
    padding: 90px 6%;
  }

  .final-cta-box {
    padding: 46px 22px;
    border-radius: 22px;
  }

  .final-cta-line {
    width: 140px;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .final-cta-btn {
    min-width: 100%;
  }
}

/* GLOW LEGGERO HERO */
.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(25px);
}

.final-cta {
  background: linear-gradient(180deg, #0b0b0b, #050505);
  border-top: 1px solid rgba(255,255,255,0.06);
}
/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

.loader-logo {
  width: 380px;
  max-width: 80vw;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .loader-logo {
    width: 160px;
  }
}

/* BOTTONE PREMIUM */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.15);
  background: #f2f2f2;
}

/* TITOLI PIÙ BELLI */
.title {
  font-size: 96px;
  letter-spacing: 6px;
  line-height: 0.95;
}

.subtitle {
  margin-top: 20px;
  opacity: 0.75;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .title {
    font-size: 72px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    height: 320px;
  }

  .final-cta h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 18px 6%;
  }

  nav a {
    margin-left: 16px;
    font-size: 14px;
  }

  .logo img {
    height: 28px;
  }

  section {
    padding: 80px 6%;
  }

  .title {
    font-size: 48px;
    text-align: center;
  }

  .subtitle {
    font-size: 16px;
    text-align: center;
  }

  .portfolio h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .work-item {
    height: 260px;
  }

  .overlay {
    font-size: 20px;
  }

  .btn {
    padding: 14px 28px;
  }
}

html {
  scroll-behavior: smooth;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 10% 100px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 35%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 950px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}

.title {
  font-size: 120px;
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.78;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 38px 30px;
  border-radius: 20px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.card p {
  opacity: 0.72;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .title {
    font-size: 86px;
  }

  .services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 6% 80px;
  }

  .title {
    font-size: 56px;
  }

  .subtitle {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.hero-logo img {
  width: min(700px, 72vw);
  max-height: 38vh;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 30, 45, 0.18));
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
}

.hero-logo {
  margin: 12px 0 14px;
}

.hero-logo img {
  width: min(820px, 76vw);
  max-height: 44vh;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 30, 45, 0.22));
}

.subtitle {
  margin-top: 8px;
  margin-bottom: 22px;
  max-width: 700px;
  text-align: center;
}

.hero-actions {
  margin-top: 12px;
  gap: 14px;
}

@media (max-width: 768px) {
  .hero-logo img {
    width: 82vw;
    max-height: 28vh;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-logo {
    margin: 8px 0 10px;
  }

  .subtitle {
    margin-top: 6px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 10px;
    gap: 10px;
  }
}

/* HERO SPACING FINAL */
.hero {
  padding: 110px 10% 70px;
}

.hero-content {
  max-width: 860px;
  gap: 0;
}

.eyebrow {
  margin-bottom: 4px;
}

.hero-logo {
  margin: 0;
}

.hero-logo img {
  width: min(860px, 78vw);
  max-height: 46vh;
}

.subtitle {
  margin-top: 2px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-actions {
  margin-top: 2px;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 6% 50px;
  }

  .eyebrow {
    margin-bottom: 2px;
  }

  .hero-logo {
    margin: 0;
  }

  .hero-logo img {
    width: 84vw;
    max-height: 26vh;
  }

  .subtitle {
    margin-bottom: 8px;
  }

  .hero-actions {
    margin-top: 2px;
  }
}

/* PRICING */
.pricing {
  padding: 120px 10%;
}

.pricing h2,
.map-section h2 {
  font-size: 52px;
  margin-bottom: 36px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,30,45,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.price-card.featured {
  border-color: rgba(255,30,45,0.35);
  box-shadow: 0 18px 50px rgba(255,30,45,0.14);
}

.price-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,30,45,0.16);
  color: #ff1e2d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.price {
  font-size: 46px;
  font-weight: 800;
  color: #ff1e2d;
  margin-bottom: 14px;
}

.price span {
  font-size: 18px;
  color: rgba(255,255,255,0.58);
  margin-left: 4px;
}

.price-card p:last-child {
  opacity: 0.72;
  line-height: 1.7;
}

/* MAPPA */
.map-section {
  padding: 120px 10%;
}

.map-box {
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  padding: 90px 10% 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer p {
  opacity: 0.72;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing h2,
  .map-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .pricing,
  .map-section,
  .footer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .price {
    font-size: 38px;
  }

  .map-box {
    height: 320px;
  }
}

/* HEADER UPGRADE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5,5,5,0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo img {
  height: 30px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.86;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: #ff1e2d;
}

.price-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.price-card:hover {
  transform: translateY(-8px);
  transition: transform 0.35s ease;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1201;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 22px;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 1200;
    display: flex;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    font-size: 18px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header {
    padding: 18px 6%;
  }
}

@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }

  .main-nav:not(.open) {
    right: -100%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: flex !important;
  }
}

/* MENU MOBILE FIX DEFINITIVO */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1201;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    margin: 6px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .main-nav {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 22px;
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 1200;
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav a {
    font-size: 18px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header {
    padding: 18px 6%;
  }
}
/* MOBILE NAV FINAL OVERRIDE */
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }

  .main-nav.open {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 22px;
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 1200;
  }

  .main-nav.open a {
    font-size: 18px;
  }

  .menu-toggle {
    display: block !important;
    z-index: 1201;
  }

  .header {
    padding: 18px 6%;
  }
}

/* MAP */
.map-section {
  padding: 100px 8%;
}

.map-box {
  margin-top: 24px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 30, 45, 0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* FOOTER */
.footer {
  padding: 80px 8% 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer h4 {
  margin-bottom: 16px;
  color: #ff1e2d;
}

.footer p {
  opacity: 0.75;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .map-box {
    height: 280px;
  }
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex !important;
    position: static;
    background: transparent;
    flex-direction: row;
    gap: 28px;
    padding: 0;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (min-width: 901px) {
  .header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
  }

  .menu-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    gap: 30px;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .main-nav a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
}

@media (min-width: 901px) {
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 24px 8% !important;
    background: rgba(5, 5, 5, 0.35) !important;
    backdrop-filter: blur(10px) !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
  }

  .logo img {
    display: block !important;
    height: 30px !important;
    width: auto !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 28px !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .main-nav a {
    display: inline-block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 55px;
  }
}

header .logo img {
  height: 120px !important;
  width: auto !important;
  display: block;
}

@media (max-width: 768px) {
  header .logo img {
    height: 55px !important;
  }
}

.footer {
  padding: 80px 10%;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  align-items: start;
}

.footer h3,
.footer h4 {
  color: #ff2a2a;
  margin-bottom: 18px;
}

.footer p,
.footer a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.8;
}

.footer a:hover {
    color: #ff2a2a;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #888;
  font-size: 14px;
}

/* SERVICES PREMIUM */
.services-premium {
  padding: 120px 8%;
  background: #050505;
}

.services-head {
  max-width: 860px;
  margin-bottom: 46px;
}

.services-head h2 {
  font-size: 72px;
  line-height: 0.95;
  margin: 12px 0 20px;
  text-transform: uppercase;
}

.services-head .section-sub {
  max-width: 850px;
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.72;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-panel {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 60px;
  margin-bottom: 40px;
  overflow: hidden;
  transition: all .35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  z-index: 1;
}

.service-panel > * {
  position: relative;
  z-index: 2;
}

.service-number {
  z-index: 1;
}

.service-panel:hover{
    transform: translateY(-6px);
    border-color: rgba(255,30,45,.35);
    box-shadow: 0 20px 50px rgba(255,30,45,.08);
}

.service-panel::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:#ff1e2d;
}

.service-panel + .service-panel {
  margin-top: 0;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 34px;
  color: #ff1e2d;
  background: rgba(90, 0, 10, 0.22);
  border: 1px solid rgba(255,30,45,0.18);
  box-shadow: 0 0 30px rgba(255,30,45,0.08);
}

.service-panel h3 {
  font-size: 56px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.service-panel p {
  max-width: 900px;
  font-size: 20px;
  line-height: 1.75;
  opacity: 0.74;
  margin-bottom: 30px;
}

.service-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.service-panel li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 18px;
  opacity: 0.92;
  display: flex;
  align-items: center;
}

.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff1e2d;
}

@media (max-width: 1024px) {
  .services-head h2 {
    font-size: 56px;
  }

  .service-panel {
    padding: 44px 32px 42px;
  }

  .service-panel h3 {
    font-size: 42px;
  }

  .service-panel p {
    font-size: 18px;
  }

 .service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .services-premium {
    padding: 90px 6%;
  }

  .services-head h2 {
    font-size: 44px;
  }

  .services-head .section-sub {
    font-size: 17px;
  }

  .service-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 45, 0.5);
  box-shadow: 0 20px 60px rgba(255, 30, 45, 0.08);
}


  .service-icon {
    width: 62px;
    height: 62px;
    font-size: 26px;
    margin-bottom: 24px;
  }

  .service-panel h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-panel p {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-panel li {
    font-size: 16px;
    padding-left: 28px;
  }

  .service-number {
    font-size: 64px;
    top: 18px;
    right: 18px;
  }

transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;

}

/* ABOUT PREMIUM */
.about-premium {
  padding: 140px 8%;
  background: #050505;
}

.about-head span {
  color: #ff1e2d;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-head h2 {
  font-size: 72px;
  line-height: 0.95;
  max-width: 900px;
  margin-top: 20px;
  text-transform: uppercase;
}

.about-head em {
  color: #ff1e2d !importnat;
  font-style: normal;
  display: inline;
  text-shadow: 0 0 20px rgba (255,30,45,0.2)
}

.about-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.feature-box {
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  font-size: 22px;
  font-weight: 600;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .about-head h2 {
    font-size: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text p {
    font-size: 18px;
  }

  .feature-box {
    font-size: 18px;
    padding: 24px;
  }
}

.about-head h2 .accent-red {
  color: #ff1e2d !important;
  text-shadow: 0 0 20px rgba(255, 30, 45, 0.2);
}

.about-head h2 {
  font-size: 78px;
  line-height: 0.95;
  max-width: 900px;
  margin-top: 20px;
  text-transform: uppercase;
}

.about-head h2 .accent-red {
  display: block;
  color: #ff1e2d !important;
  text-shadow: 0 0 20px rgba(255, 30, 45, 0.18);
}

.about-kicker {
  display: block;
  color: #ff1e2d !important;
  font-size: 20px !important;
  letter-spacing: 4px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.about-title {
  font-size: 78px !important;
  line-height: 0.95 !important;
  max-width: 900px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

.about-title .about-red {
  display: block !important;
  color: #ff1e2d !important;
  text-shadow: 0 0 20px rgba(255, 30, 45, 0.18) !important;
}

.about-kicker {
  display: block;
  color: #ff1e2d !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  margin-bottom: 18px !important;
}

.about-title {
  font-size: 82px !important;
  line-height: 0.95 !important;
  color: #fff !important;
  text-transform: uppercase !important;
}

.about-red {
  display: block !important;
  color: #ff1e2d !important;
}

.service-panel {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.service-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255,30,45,.28);
  box-shadow: 0 18px 40px rgba(255,30,45,.06);
}

.service-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff1e2d;
}

.about-kicker {
  color: #ff1e2d !important;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-red {
  color: #ff1e2d !important;
  text-shadow: 0 0 12px rgba(255, 30, 45, 0.35);
}

.footer-grid a,
.footer-grid p,
.footer-grid span {
    color: #ffffff !important;
}

.footer-grid a:hover {
    color: #ff2a2a !important;
}

.footer .footer-link,
.footer .footer-link:visited,
.footer .footer-link:active,
.footer .footer-link:focus,
.footer .instagram-link,
.footer .instagram-link:visited,
.footer .instagram-link:active,
.footer .instagram-link:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer .footer-link:hover,
.footer .instagram-link:hover {
  color: #ff2a2a !important;
}

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

.loader-logo {
  width: 380px;
  max-width: 80vw;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.6);
  filter: blur(12px) drop-shadow(0 0 0 rgba(255,30,45,0));
}

.flash-red {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,30,45,0.35) 0%, rgba(255,30,45,0.12) 25%, rgba(255,30,45,0) 60%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .loader-logo {
    width: 220px;
  }
}

.about-title,
.about-text p,
.feature-box,
.services-head,
.service-panel {
  will-change: transform, opacity;
}

.feature-box {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 42, 42, 0.35);
  box-shadow: 0 14px 40px rgba(255, 42, 42, 0.08);
}

.service-panel {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 45, 0.35);
  box-shadow: 0 20px 60px rgba(255, 30, 45, 0.08);
}

.services-head .section-kicker {
  color: #ff2a2a !important;
}

.services-title span {
  color: #ff2a2a !important;
  text-shadow: 0 0 16px rgba(255, 42, 42, 0.18);
}

.services-head .section-kicker {
  color: #ff2a2a !important;
}

.services-head h2,
.services-title {
  font-size: 78px !important;
  line-height: 0.95 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
}

.services-title span {
  color: #ff2a2a !important;
  text-shadow: 0 0 18px rgba(255, 42, 42, 0.18);
}

.header,
.hero-logo-big,
.eyebrow,
.subtitle,
.hero-actions .btn,
.about-kicker,
.about-title,
.about-text p,
.feature-box,
.services-head,
.service-panel,
.price-card,
.final-cta,
.map-section,
.footer-grid > div,
.footer-bottom {
  will-change: transform, opacity;
}

.feature-box {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 42, 42, 0.35);
  box-shadow: 0 14px 36px rgba(255, 42, 42, 0.08);
}

.service-panel {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 42, 42, 0.35);
  box-shadow: 0 18px 50px rgba(255, 42, 42, 0.08);
}

.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 42, 42, 0.08);
}

.loader-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,42,42,0.35) 0%, rgba(255,42,42,0.12) 28%, rgba(255,42,42,0) 60%);
  opacity: 0;
  pointer-events: none;
}

.hero-logo-big img {
  filter: drop-shadow(0 0 12px rgba(255, 42, 42, 0.18));
}

.service-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 42, 42, 0.18);
  text-shadow: 0 0 18px rgba(255, 42, 42, 0.08);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.service-panel:hover .service-number {
  color: rgba(255, 42, 42, 0.32);
  text-shadow: 0 0 24px rgba(255, 42, 42, 0.18);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-20deg);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 42, 42, 0.18);
}

.btn:hover::after {
  left: 150%;
  transition: left 0.7s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 42, 42, 0.45);
  background: rgba(255, 42, 42, 0.04);
}

.map-section {
  padding: 110px 8% 70px;
  background: linear-gradient(180deg, #070707 0%, #050505 100%);
}

.map-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.map-head {
  text-align: center;
  margin-bottom: 34px;
}

.map-kicker {
  display: inline-block;
  color: #ff2a2a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.map-head h2 {
  margin: 0 0 12px;
  font-size: 54px;
  line-height: 1;
  color: #fff;
}

.map-head p {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.68);
}

.map-box {
  height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.35),
    0 0 40px rgba(255, 42, 42, 0.04);
}

.footer {
  position: relative;
  padding: 70px 8% 32px;
  background: #050505;
}

.footer-top-line {
  width: 100%;
  max-width: 1180px;
  height: 1px;
  margin: 0 auto 46px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.14), rgba(255,255,255,0));
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  align-items: start;
}

.footer h3,
.footer h4 {
  color: #ff2a2a;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(255,42,42,0.12);
}

.footer p,
.footer a,
.footer span {
  color: rgba (255,255,255,0.92) !important;
  text-decoration: none;
  line-height: 1.9;
}

.footer a:hover {
  color: #ff2a2a !important;
}

.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

@media (max-width: 768px) {
  .map-section {
    padding: 90px 6% 60px;
  }

  .map-head h2 {
    font-size: 38px;
  }

  .map-head p {
    font-size: 16px;
  }

  .map-box {
    height: 300px;
    border-radius: 20px;
  }

  .footer {
    padding: 56px 6% 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.gallery-photo {
  transition: transform 0.55s ease, filter 0.55s ease !important;
  transform-origin: center center;
  will-change: transform;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: 0.25s ease;
}

.lightbox-close:hover {
  color: #ff2a2a;
}

/* GALLERY HOVER FIX */
#gallery div[style*="aspect-ratio"] {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35) !important;
  cursor: default !important;
}

#gallery div[style*="aspect-ratio"] img {
  transition: transform 0.45s ease, filter 0.45s ease !important;
  transform-origin: center center !important;
}

#gallery div[style*="aspect-ratio"]:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 40px rgba(255,42,42,0.18) !important;
}

#gallery div[style*="aspect-ratio"]:hover img {
  transform: scale(1.10) !important;
  filter: brightness(1.04) saturate(1.06) !important;
}

.footer,
.footer-grid,
.footer-grid > div,
.footer-bottom {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}