@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&display=swap');

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav-logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.nav-logo .bulb-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.nav-logo .bulb-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 10px;
  border-radius: 50% 50% 35% 35%;
  background: var(--yellow);
  box-shadow: 0 0 8px 2px rgba(250, 250, 51, 0.5);
  animation: bulbGlowSimple 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

@keyframes bulbGlowSimple {
  0%, 20% {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: none;
    top: -5px;
  }
  50%, 100% {
    width: 7px;
    height: 10px;
    border-radius: 50% 50% 35% 35%;
    background: var(--yellow);
    box-shadow: 0 0 8px 2px rgba(250, 250, 51, 0.5);
    top: -8px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(250, 250, 51, 0.5);
  background: #f0f000;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--black);
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu a:hover {
  color: var(--yellow);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@keyframes morphToBulb {
  0%, 30% {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: none;
    top: -8px;
  }
  60%, 100% {
    width: 10px;
    height: 14px;
    border-radius: 50% 50% 35% 35%;
    background: var(--yellow);
    box-shadow: 0 0 10px 3px rgba(250, 250, 51, 0.5), 0 0 2px 1px rgba(250, 250, 51, 0.7);
    top: -16px;
  }
}

@keyframes showRays {
  0%, 50% { opacity: 0; }
  75%, 100% { opacity: 1; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  font-size: 52px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 32px;
}

.hero-logo .bulb-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.hero-logo .bulb-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 10px;
  border-radius: 50% 50% 35% 35%;
  background: var(--yellow);
  box-shadow: 0 0 8px 2px rgba(250, 250, 51, 0.5);
  animation: bulbGlowSimple 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(250, 250, 51, 0.5);
  background: #f0f000;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(250, 250, 51, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.manifesto {
  padding: 60px 24px;
  background: var(--white);
}

.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid var(--yellow);
  padding-left: 24px;
}

.manifesto-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.manifesto-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.services {
  padding: 100px 24px;
  background: #f8f8f8;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--black);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--black);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--yellow);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-quote {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .manifesto-content {
    padding-left: 24px;
  }
}

.target {
  padding: 100px 24px;
  background: var(--black);
}

.target-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.target-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.target-text {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.target-quote {
  display: inline-block;
  border-left: 4px solid var(--yellow);
  padding-left: 24px;
  font-size: 20px;
  font-style: italic;
  color: var(--yellow);
}

.process {
  padding: 100px 24px;
  background: var(--white);
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.process-wheel-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.process-wheel {
  width: 260px;
  height: 260px;
}

.arc-track {
  fill: none;
  stroke-width: 32;
  stroke-linecap: butt;
}

.arc-label {
  font-size: 13px;
  font-weight: 600;
}

.process-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.process-center-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.process-center-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.pstep {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-lighter);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.pstep:hover,
.pstep.active {
  border-color: var(--black);
  background: #f8f8f8;
}

.pstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.pstep:hover .pstep-num,
.pstep.active .pstep-num {
  background: var(--yellow);
  color: var(--black);
}

.pstep-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.pstep-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .process-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-wheel-wrap {
    order: -1;
  }
}

.clients {
  padding: 100px 24px;
  background: #f8f8f8;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}

.client-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.client-card:hover .client-logo {
  transform: scale(1.15);
}

.client-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--transition-fast), opacity var(--transition-fast), transform var(--transition-normal);
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: var(--white);
  filter: grayscale(1) brightness(0.9);
  transition: filter var(--transition-fast);
}

.client-card:hover .client-logo {
  filter: grayscale(0);
  opacity: 1;
}

.client-card:hover .client-logo img {
  filter: grayscale(0);
}

.client-name {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-final {
  padding: 120px 24px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 250, 51, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-icon {
  font-size: 48px;
  color: var(--yellow);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--gray-light);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-final .hero-ctas {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 60px 24px 40px;
  background: var(--gray-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.footer-logo .bulb-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.footer-logo .bulb-dot {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(39%) translateY(203%);
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: bulbGlowFooter 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

@keyframes bulbGlowFooter {
  0%, 30% {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: none;
    transform: translateX(39%) translateY(203%);
  }
  60%, 100% {
    width: 14px;
    height: 18px;
    border-radius: 50% 50% 35% 35%;
    background: var(--yellow);
    box-shadow: 0 0 12px 4px rgba(250, 250, 51, 0.55), 0 0 3px 1px rgba(250, 250, 51, 0.8);
    transform: translateX(39%) translateY(-10%);
  }
}

.footer-logo .bulb-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.footer-logo .bulb-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 10px;
  border-radius: 50% 50% 35% 35%;
  background: var(--yellow);
  box-shadow: 0 0 8px 2px rgba(250, 250, 51, 0.5);
  animation: bulbGlowFooter 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

@keyframes bulbGlowFooter {
  0%, 20% {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: none;
    top: -5px;
  }
  50%, 100% {
    width: 7px;
    height: 10px;
    border-radius: 50% 50% 35% 35%;
    background: var(--yellow);
    box-shadow: 0 0 8px 2px rgba(250, 250, 51, 0.5);
    top: -8px;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-light);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--black);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-email {
  font-size: 14px;
  color: var(--gray-light);
}

.footer-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.process-wheel-large-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 40px;
}

.process-wheel-large {
  width: 400px;
  height: 400px;
}

.process-wheel-large svg {
  width: 100%;
  height: 100%;
}

.arc-large {
  fill: none;
  stroke-width: 24;
  stroke-linecap: butt;
  opacity: 0.3;
  transition: opacity 0.5s ease, stroke-dasharray 0.5s ease;
}

@media (max-width: 500px) {
  .arc-large {
    stroke-width: 20;
  }
}

.arc-large.active {
  opacity: 1;
}

.step-label {
  font-size: 16px;
  font-weight: 700;
  fill: var(--gray-light);
  transition: fill 0.5s ease;
}

.step-label[data-step="1"] { transform: translate(115px, -55px); }
.step-label[data-step="2"] { transform: translate(115px, 55px); }
.step-label[data-step="3"] { transform: translate(-115px, 55px); }
.step-label[data-step="4"] { transform: translate(-115px, -55px); }

.process-center-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 200px;
}

.process-center-num-large {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.process-center-label-large {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.process-center-desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.4;
}

.process-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.process-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-lighter);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.process-dots .dot.active {
  background: var(--yellow);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(250, 250, 51, 0.5);
}

.process-dots .dot:hover {
  background: var(--gray);
  transform: scale(1.1);
}

.process-dots .dot:active {
  transform: scale(0.95);
}

@media (max-width: 500px) {
  .process-wheel-large-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto 32px;
  }
  
  .process-wheel-large {
    width: 280px;
    height: 280px;
  }
  
  .process-wheel-large svg {
    max-width: 100%;
    height: auto;
  }
  
  .step-labels {
    display: none;
  }
  
  .process-center-large {
    width: 160px;
  }
  
  .process-center-num-large {
    font-size: 32px;
  }
  
  .process-center-label-large {
    font-size: 13px;
  }
  
  .process-center-desc {
    font-size: 11px;
    display: none;
  }
  
  .process-dots {
    gap: 16px;
  }
  
  .process-dots .dot {
    width: 16px;
    height: 16px;
    touch-action: manipulation;
  }
}

.reviews {
  padding: 100px 24px;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal), border-color var(--transition-normal);
}

.review-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  border-color: var(--yellow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-comment {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-meta {
  border-top: 1px solid var(--gray-lighter);
  padding-top: 16px;
}

.review-client {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.review-service {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

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

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.btn-primary,
.btn-secondary,
.nav-cta {
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-secondary:hover {
  box-shadow: var(--shadow-md);
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(250, 250, 51, 0.35);
}

.service-card {
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.client-card {
  box-shadow: var(--shadow-sm);
}

.process-wheel-wrap {
  box-shadow: var(--shadow-md);
  border-radius: 50%;
}

.footer-contact a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-location {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-contact {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-light);
}

.footer-contact span {
  color: var(--gray);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--black);
  margin-bottom: 32px;
  transition: transform var(--transition-fast), box-shadow var(--transition-normal), background var(--transition-fast);
}

.cta-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cta-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(250, 250, 51, 0.6);
  background: #f0f000;
}

.cta-icon:hover svg {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}