* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.small-container {
  width: min(920px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 18, 31, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-weight: 800;
  min-width: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.1rem;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: #c7d2de;
  font-weight: 600;
}

.logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dbe4f1;
  font-weight: 600;
}

.desktop-menu a {
  transition: 0.2s ease;
}

.desktop-menu a:hover {
  color: #f5d90a;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-call {
  white-space: nowrap;
}

.hamburger {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0 4% 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c121f;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-link {
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-call {
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #f5d90a;
  color: #111827;
  border-color: #f5d90a;
}

.btn-primary:hover {
  background: #e7cb00;
  border-color: #e7cb00;
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}

.btn-outline:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb959;
  border-color: #1fb959;
  transform: translateY(-1px);
}

.btn-viber {
  background: #7360f2;
  color: #ffffff;
  border-color: #7360f2;
}

.btn-viber:hover {
  background: #604fe0;
  border-color: #604fe0;
  transform: translateY(-1px);
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff;
}

.btn-instagram:hover {
  transform: translateY(-1px);
}

.dark-hero {
  padding: 76px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(245, 217, 10, 0.18), transparent 28%),
    linear-gradient(135deg, #0b1220 0%, #121b2d 55%, #0d1422 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: #f5d90a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.08rem;
  color: #c8d3e0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.badge-box {
  border-radius: 18px;
  padding: 18px;
}

.dark-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.badge-box strong {
  display: block;
  color: #f5d90a;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.badge-box span {
  color: #d7e0ea;
  font-size: 0.94rem;
}

.hero-image-card {
  border-radius: 28px;
  padding: 18px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 82px 0;
}

.alt {
  background: #f7f8fb;
}

.section-dark {
  background: #0d1422;
}

.section-accent {
  background: linear-gradient(135deg, #111827 0%, #182235 100%);
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-title p {
  color: #475569;
  font-size: 1.03rem;
}

.light-title h2 {
  color: #ffffff;
}

.light-title p {
  color: #c7d2de;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  border-radius: 22px;
  padding: 22px;
}

.dark-surface {
  background: #121b2d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.dark-surface h3 {
  color: #ffffff;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.dark-surface p {
  color: #c7d2de;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #eef2f7;
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p {
  color: #475569;
}

.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  max-width: 720px;
  width: 100%;
  border-radius: 28px;
  padding: 34px;
}

.dark-price-card {
  background: #0f172a;
  border: 2px solid #f5d90a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-label {
  color: #f5d90a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.pricing-card h3 {
  font-size: 1.95rem;
  margin: 10px 0 14px;
  color: #ffffff;
}

.price {
  font-size: clamp(2.5rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #f5d90a;
  line-height: 1;
}

.price-sub {
  color: #d5dfeb;
  margin-top: 8px;
}

.pricing-list {
  margin: 24px 0;
  padding-left: 20px;
  color: #d5dfeb;
}

.pricing-list li {
  margin-bottom: 10px;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  background: #eef2f7;
}

.instagram-box {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 42px;
  text-align: center;
}

.dark-instagram-box {
  background: linear-gradient(135deg, #151f33, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.instagram-content h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.instagram-content p {
  color: #c7d2de;
  margin-bottom: 22px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  color: #0f172a;
}

.faq-list p {
  margin-top: 14px;
  color: #475569;
}

.contact-section {
  background: linear-gradient(135deg, #0d1422 0%, #172132 100%);
}

.contact-section .eyebrow {
  color: #f5d90a;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-lead {
  color: #c7d2de;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.contact-card {
  background: #121b2d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 22px;
}

.contact-card h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.contact-card p,
.contact-card a {
  color: #f5d90a;
  font-weight: 700;
}

.contact-box {
  background: linear-gradient(135deg, #f5d90a 0%, #ffea54 100%);
  color: #111827;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(245, 217, 10, 0.18);
}

.contact-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-box p {
  margin-bottom: 22px;
  color: #283142;
}

.full {
  width: 100%;
  margin-bottom: 12px;
}

.contact-box .btn-outline {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.contact-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.8);
}

.map-section {
  background: #f7f8fb;
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-ring-viber {
  0% { box-shadow: 0 0 0 0 rgba(115, 96, 242, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(115, 96, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(115, 96, 242, 0); }
}

@keyframes pulse-ring-call {
  0% { box-shadow: 0 0 0 0 rgba(245, 217, 10, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(245, 217, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 217, 10, 0); }
}

.floating-socials {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-float {
  background: #25d366;
  animation: pulse-ring 2s infinite;
}

.viber-float {
  background: #7360f2;
  animation: pulse-ring-viber 2s infinite;
}

.call-float {
  background: #f5d90a;
  color: #111827;
  font-size: 1.3rem;
  font-weight: 800;
  border: 2px solid rgba(17, 24, 39, 0.12);
  animation: pulse-ring-call 2s infinite;
}

.floating-icon-holder {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.mobile-sticky-bar {
  display: none;
}

.footer {
  background: #0a0f1a;
  color: #ffffff;
  padding: 26px 0 90px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  color: #cbd5e1;
}

.footer a {
  color: #ffffff;
}

.footer-right {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .desktop-menu,
  .nav-call {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-grid,
  .contact-grid,
  .features,
  .services,
  .gallery,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: 380px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container,
  .small-container {
    width: min(100%, 94%);
  }

  .nav {
    min-height: 76px;
    gap: 10px;
  }

  .brand {
    max-width: 68%;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .logo {
    width: 54px;
    height: 54px;
  }

  .dark-hero {
    padding: 34px 0 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-actions,
  .pricing-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .pricing-actions .btn,
  .contact-box .btn,
  .mobile-call {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title p {
    font-size: 0.96rem;
  }

  .card,
  .pricing-card,
  .instagram-box,
  .contact-box,
  .contact-card,
  .faq-list details {
    padding: 18px;
  }

  .hero-image-card {
    padding: 10px;
  }

  .hero-image-card img,
  .gallery img,
  .card img {
    height: 210px;
  }

  .pricing-card h3 {
    font-size: 1.55rem;
  }

  .price {
    font-size: 2.45rem;
  }

  .instagram-box {
    padding: 24px 18px;
  }

  .instagram-content h3 {
    font-size: 1.5rem;
  }

  .contact-box h3 {
    font-size: 1.55rem;
  }

  .map-wrap iframe {
    height: 290px;
  }

  .floating-socials {
    right: 10px;
    bottom: 78px;
    gap: 10px;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
  }

  .floating-icon-holder {
    width: 36px;
    height: 36px;
  }

  .floating-icon-img {
    width: 22px;
    height: 22px;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
    background: rgba(12, 18, 31, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-sticky-btn {
    min-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 0.92rem;
  }

  .call-sticky {
    background: #f5d90a;
    color: #111827;
  }

  .whatsapp-sticky {
    background: #25d366;
  }

  .viber-sticky {
    background: #7360f2;
  }

  .footer {
    padding-bottom: 96px;
  }
}