@font-face {
  font-family: 'StopD';
  src: url('fonts/STOPD-Font.woff2') format('woff2'),
       url('fonts/STOPD-Font.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  background: #F8F8F8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: #D61F26;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}

.header.scrolled {
  background: rgba(248, 248, 248, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'StopD', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.header.scrolled .logo-text {
  color: #111;
}

.logo-tie {
  height: 1em;
  vertical-align: baseline;
  display: inline-block;
  position: relative;
  top: 3px;
  left: -1px;
}

.footer-logo .logo-tie {
  height: 1em;
  top: 2px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: rgba(248, 248, 248, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.header.scrolled .nav-link {
  color: rgba(17, 17, 17, 0.7);
}

.nav-link:hover {
  color: #fff;
}

.header.scrolled .nav-link:hover {
  color: #111;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D61F26;
  transition: width 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.header.scrolled .menu-toggle span {
  background: #111;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(214, 31, 38, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(214, 31, 38, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 72px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: inherit;
}

.btn-primary {
  background: #D61F26;
  color: #fff;
}

.btn-primary:hover {
  background: #b81a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 31, 38, 0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Section shared */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #111;
  color: #fff;
}

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D61F26;
  margin-bottom: 12px;
  text-align: center;
}

.section-dark .section-label {
  color: #D61F26;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 56px;
}

.section-dark .section-title {
  color: #fff;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.06);
}

.card-icon {
  margin-bottom: 16px;
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

.section-dark .card {
  background: #2D2D2D;
  border-color: rgba(255, 255, 255, 0.06);
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.6);
}

/* Split Section */
.section-split {
  background: #fff;
}

.section-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-split .section-label {
  text-align: left;
}

.section-split .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.section-split p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin-bottom: 36px;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  color: #444;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D61F26;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.split-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.process-step {
  text-align: center;
  padding: 0 8px;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(214, 31, 38, 0.3);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Gallery */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  background: #2D2D2D;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 31, 38, 0.3);
}

.value-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.value-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.04);
}

.testimonial-card .stars {
  color: #D61F26;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 16px;
  color: #111;
}

.testimonial-card .service {
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.gallery-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: #999;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #2D2D2D;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D61F26;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: #111;
}

.contact-form .btn {
  align-self: flex-start;
  padding: 16px 44px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-row {
  display: flex;
  gap: 24px;
}

.info-row .info-item {
  flex: 1;
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #fff;
}

.info-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

.map-wrap iframe {
  display: block;
}

.contact-info a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  font-size: 0.82rem;
  color: #999;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.4;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 200;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header.scrolled .nav {
    background: rgba(248, 248, 248, 0.98);
    border-color: rgba(17, 17, 17, 0.06);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
  }

  .header.scrolled .nav-link {
    border-color: rgba(17, 17, 17, 0.04);
    color: rgba(17, 17, 17, 0.7);
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero {
    min-height: 90vh;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .grid-3,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .section-split .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-split .section-label,
  .section-split .section-title {
    text-align: center;
  }

  .feature-list li {
    text-align: left;
  }

  .section-split .btn {
    display: block;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    text-align: left;
  }

  .step-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .split-image {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .section-split .container {
    gap: 48px;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}
