:root {
  --color-primary: #d4af37;
  --color-primary-dark: #b08f2c;
  --color-dark: #0f0f0f;
  --color-accent: #252525;
  --color-surface: #141414;
  --color-muted: #b4b4b4;
  --color-light: #f5f5f5;
  --radius: 28px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  --text: #f7f7f7;
  --text-muted: #a8a8a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #080808;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.18), transparent 16%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.08), transparent 14%),
    radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.05), transparent 12%),
    radial-gradient(circle at 75% 80%, rgba(212, 175, 55, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 22%);
  filter: blur(1px);
  animation: drift 35s ease-in-out infinite;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 130px 130px;
  opacity: 0.12;
  mix-blend-mode: screen;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader span {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(212, 175, 55, 0.35);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 15, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-color: rgba(212, 175, 55, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 32%);
  pointer-events: none;
  opacity: 0.8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.brand-group,
.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 16px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f1d078);
  color: #0f0f0f;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.26);
  filter: brightness(1.06);
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.14);
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.06), transparent 12%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.05), transparent 10%);
  opacity: 0.85;
  animation: driftSlow 35s ease-in-out infinite;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 20%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 34px 34px 26px;
  max-width: 920px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.section-header h2 {
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  line-height: 1.05;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.section-header p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.section-header .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.section-header .eyebrow::after {
  content: '';
  position: absolute;
  inset: auto 0 -8px 0;
  width: 38px;
  height: 2px;
  background: rgba(212, 175, 55, 0.45);
  border-radius: 999px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
}

.section-header h2 {
  font-size: clamp(2rem, 2.6vw, 3.4rem);
  line-height: 1.02;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.28), 0 0 36px rgba(255,255,255,0.08);
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,0.95), rgba(212,175,55,0));
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  opacity: 0.9;
  animation: underlinePulse 1.8s ease-in-out infinite alternate;
}

@keyframes underlinePulse {
  0% { transform: translateX(-50%) scaleX(0.9); opacity: 0.75; }
  100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

.section-header p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.section-header .eyebrow {
  position: relative;
  z-index: 1;
}

.section-header .eyebrow::after {
  content: '';
  position: absolute;
  inset: auto 0 -8px 0;
  height: 2px;
  background: rgba(212, 175, 55, 0.45);
  border-radius: 999px;
}

.section-hero {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 28%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.08), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  padding: 42px 40px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-copy:hover {
  transform: translateY(-2px);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.9s ease forwards 0.2s;
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.18);
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.9s ease forwards 0.35s;
  text-shadow: 0 0 10px rgba(255,255,255,0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.9s ease forwards 0.5s;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 34px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 20%);
  opacity: 0.55;
  pointer-events: none;
  animation: pulseGlow 3.8s ease-in-out infinite alternate;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -44px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  opacity: 0.85;
  pointer-events: none;
}

.hero-card span {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.hero-card h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.05;
}

.hero-detail {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.services-grid,
.pricing-grid,
.process-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -22px;
  right: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.24), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 34px 100px rgba(212, 175, 55, 0.22);
}

.service-card:hover::before {
  transform: scale(1.08);
  opacity: 1;
}

.service-card:hover .service-icon::before {
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.45));
}

.service-card h3 {
  position: relative;
}

.service-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,0.95), rgba(212,175,55,0));
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.service-note {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 18px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.service-note::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.3) 100%);
  opacity: 0.08;
  transform: translateX(-110%);
  transition: transform 0.8s ease;
}

.service-note:hover::after {
  transform: translateX(110%);
}

@media (max-width: 720px) {
  .service-card-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-note {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-icon::before {
  content: '';
  width: 32px;
  height: 32px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-icon-web::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a9 9 0 0 1 0 18'/%3E%3Cpath d='M12 3a9 9 0 0 0 0 18'/%3E%3Cpath d='M5 7h14'/%3E%3Cpath d='M5 17h14'/%3E%3C/svg%3E");
}

.service-icon-video::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M21 7l-6 5 6 5V7z'/%3E%3C/svg%3E");
}

.service-icon-dev::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3Cpath d='M12 4v16'/%3E%3C/svg%3E");
}

.service-icon-growth::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 17 9 11 13 15 21 7'/%3E%3Cpath d='M21 11v6H15'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
}

.service-icon-ia::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5c-4.7 0-8.5 3.8-8.5 8.5 0 4.3 3.2 7.9 7.3 8.4V21h2.4v-1.6c4.1-.4 7.3-4.1 7.3-8.4 0-4.7-3.8-8.5-8.5-8.5z'/%3E%3Cpath d='M9 9.5h6'/%3E%3Cpath d='M9 12h6'/%3E%3Cpath d='M9 14.5h4'/%3E%3C/svg%3E");
}

.service-icon-repair::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v10H4z'/%3E%3Cpath d='M7 7V5h10v2'/%3E%3Cpath d='M8 11h1.5'/%3E%3Cpath d='M14.5 11H16'/%3E%3Cpath d='M11 11h2'/%3E%3Cpath d='M9 15h6'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.85;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(212, 175, 55, 0.08));
}

.package-tag {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.pricing-card h3 {
  margin: 24px 0 16px;
}

.pricing-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.price {
  margin: 28px 0;
  font-size: 3rem;
  line-height: 1;
}

.price span {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  color: var(--text-muted);
  line-height: 1.9;
}

.pricing-card li::before {
  content: '•';
  color: var(--color-primary);
  display: inline-block;
  width: 1.2rem;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step {
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  min-height: 240px;
}

.process-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0 0 14px;
}

.process-step p {
  color: var(--text-muted);
  line-height: 1.8;
}

.testimonial-grid,
.projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card,
.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.projects-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.projects-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.trust-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 44px;
  max-width: 820px;
}

.trust-line span {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.projects-grid {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 980px;
}

.projects-grid--centered {
  grid-template-columns: 1fr;
}

.project-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 30px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.project-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 120px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.project-logo--placeholder {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card-content {
  display: grid;
  gap: 12px;
}

.project-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.project-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.project-link {
  display: inline-flex;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 6px;
}

.project-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
  border-color: rgba(212, 175, 55, 0.16);
  box-shadow: 0 32px 80px rgba(212, 175, 55, 0.12);
}

.project-card:hover .project-logo {
  background: rgba(212, 175, 55, 0.08);
}

@media (max-width: 820px) {
  .projects-grid--centered {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-card-content {
    align-items: center;
  }

  .project-logo {
    margin: 0 auto;
  }
}

.project-card a {
  color: var(--color-primary);
  font-weight: 700;
}

.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: slideTestimonials 30s linear infinite;
  padding-bottom: 6px;
}

.testimonial-card {
  min-width: 320px;
  flex: 0 0 auto;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 46%);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.24);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(212,175,55,0.9), rgba(212,175,55,0.08));
  opacity: 0.9;
  pointer-events: none;
}

.testimonial-card:hover::after {
  width: 90px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 18px;
  color: var(--text);
}

.testimonial-card strong {
  color: var(--color-primary);
}

@media (max-width: 820px) {
  .testimonial-track {
    gap: 14px;
  }

  .testimonial-card {
    min-width: 260px;
    padding: 22px 24px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    min-width: 220px;
    padding: 18px 20px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.7;
  }
}

@keyframes slideTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes driftSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 8px); }
}

@keyframes pulseGlow {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.02); }
}

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 45%);
  opacity: 0.15;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  opacity: 0.3;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-title {
  position: relative;
  color: #fff;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.45), 0 0 40px rgba(212, 175, 55, 0.18);
}

.glow-title::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glow-title.visible::before {
  opacity: 1;
}

.text-neon {
  position: relative;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.3), 0 0 16px rgba(212, 175, 55, 0.5);
}

.text-underline-gold {
  position: relative;
}

.text-underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,0.95), rgba(212,175,55,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.text-underline-gold.visible::after {
  transform: scaleX(1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.contact-copy {
  max-width: 520px;
}

.contact-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.contact-copy p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 22px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-link {
  color: var(--text);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 2px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #fff;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
}

.social-facebook { background: #1877f2; }
.social-instagram { background: #e1306c; }
.social-tiktok { background: #000; }

.contact-form {
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 36px;
}

.form-field {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.form-field label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-note {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: center;
}

.footer-brand {
  display: inline-block;
  font-size: 1.25rem;
}

.footer-brand-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
}

.footer-logo-group p {
  max-width: 360px;
  margin: 0;
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.site-footer p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(10, 10, 10, 0.98);
  padding: 100px 24px 24px;
  display: grid;
  gap: 20px;
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  font-size: 1.1rem;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100%, calc(100% - 32px));
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
