/* Tech-focused Hero Section */
.hero-work {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tech-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230cdaf5' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(90deg, var(--accent), #64e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  animation: gradient 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, var(--accent), #64e0ff);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.tech-circles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--accent);
}

.circle-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 30s;
  animation-direction: reverse;
}

.circle-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 40s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: arrow 1.5s infinite;
  opacity: 0;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-visual {
    height: 300px;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
  }

  .circle-2 {
    width: 300px;
    height: 300px;
  }

  .circle-3 {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .hero-visual {
    height: 250px;
  }
}

/* Case Studies Section - Executive Design */
.case-studies-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(247, 250, 252, 0.9), rgba(255, 255, 255, 0.9));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 210, 220, 0.3);
  border-bottom: 1px solid rgba(200, 210, 220, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--primary-800);
  letter-spacing: -0.5px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

/* Case Study Cards - Executive Design */
.case-studies {
  position: relative;
  z-index: 1;
}

.case-study {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 235, 240, 0.8);
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.case-study-header {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  padding: 1.75rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.case-study-header:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  transform: translate(100px, -150px);
}

.case-study-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
}

.case-study-category {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.case-study-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: rgba(250, 250, 252, 0.7);
  border: 1px solid rgba(230, 235, 240, 0.8);
}

.case-study-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

.case-study:hover .case-study-image img {
  transform: scale(1.03);
}

.case-study-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: rgba(250, 250, 252, 0.7);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 235, 240, 0.8);
  position: relative;
}

.case-study-challenge {
  border-left: 3px solid #ff7e67;
}

.case-study-solution {
  border-left: 3px solid #4e89ae;
}

.case-study-results {
  border-left: 3px solid #43b581;
}

.case-study-details h4 {
  color: var(--primary-700);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  letter-spacing: -0.3px;
}

.case-study-challenge h4 {
  color: #e05d44;
}

.case-study-solution h4 {
  color: #3c7baa;
}

.case-study-results h4 {
  color: #329d6a;
}

.case-study-details p {
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.case-study-details ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.case-study-details li {
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--gray-700);
  line-height: 1.5;
}

.case-study-details li:last-child {
  margin-bottom: 0;
}

.case-study-details li:before {
  content: '→';
  position: absolute;
  left: -1.5rem;
  color: var(--accent);
  font-weight: bold;
}

.case-study-solution li:before {
  color: #4e89ae;
}

.case-study-results li:before {
  color: #43b581;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .case-study-header h3 {
    font-size: 1.5rem;
  }
  
  .case-study-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .case-study-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .case-study-header {
    padding: 1.5rem 2rem;
  }
  
  .case-study-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .case-study-header h3 {
    font-size: 1.35rem;
  }
  
  .case-study-content {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .case-study-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .case-study-challenge, 
  .case-study-solution,
  .case-study-results {
    padding: 1.25rem;
  }
}

/* Project Approach Section - Executive Design */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(252, 252, 255, 0.9), rgba(255, 255, 255, 0.9));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 210, 220, 0.3);
}

.process-steps {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0 2rem;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-400), var(--accent), var(--primary-600));
  opacity: 0.7;
  z-index: -1;
}

.process-step {
  display: flex;
  margin-bottom: 3.5rem;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 78px;
  height: 78px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-right: 2rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 235, 240, 0.8);
  flex-shrink: 0;
  z-index: 2;
}

.process-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), white);
  z-index: -1;
}

.process-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px dashed var(--primary-300);
}

.process-step:hover .process-number {
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: var(--accent);
}

.process-content {
  background-color: white;
  border-radius: 10px;
  padding: 1.75rem 2.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(230, 235, 240, 0.8);
  flex-grow: 1;
  transition: all 0.3s ease;
  position: relative;
}

.process-content::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -12px;
  width: 24px;
  height: 24px;
  background-color: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(230, 235, 240, 0.8);
  border-bottom: 1px solid rgba(230, 235, 240, 0.8);
}

.process-step:hover .process-content {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-700);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.process-content p {
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.65;
}

/* Process icons */
.process-icon {
  position: absolute;
  top: 1.75rem;
  right: 2.25rem;
  font-size: 1.25rem;
  color: var(--primary-300);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  color: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

/* Alternating colors for steps */
.process-step:nth-child(1) .process-number {
  background: linear-gradient(135deg, var(--primary-100), white);
  border: 1px solid rgba(var(--primary-300-rgb), 0.2);
  color: var(--primary-600);
}

.process-step:nth-child(2) .process-number {
  background: linear-gradient(135deg, rgba(12, 218, 245, 0.1), white);
  border: 1px solid rgba(12, 218, 245, 0.2);
  color: var(--accent);
}

.process-step:nth-child(3) .process-number {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), white);
  border: 1px solid rgba(111, 66, 193, 0.2);
  color: #6f42c1;
}

.process-step:nth-child(4) .process-number {
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), white);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
}

.process-step:nth-child(5) .process-number {
  background: linear-gradient(135deg, rgba(253, 126, 20, 0.1), white);
  border: 1px solid rgba(253, 126, 20, 0.2);
  color: #fd7e14;
}

.process-step:nth-child(6) .process-number {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), white);
  border: 1px solid rgba(13, 110, 253, 0.2);
  color: #0d6efd;
}

.process-step:nth-child(7) .process-number {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), white);
  border: 1px solid rgba(25, 135, 84, 0.2);
  color: #198754;
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-animated .process-step {
  opacity: 0;
  transform: translateY(30px);
}

.process-animated.show-animation .process-step {
  animation: fadeInUp 0.6s forwards;
}

.process-animated.show-animation .process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.process-animated.show-animation .process-step:nth-child(3) {
  animation-delay: 0.4s;
}

.process-animated.show-animation .process-step:nth-child(4) {
  animation-delay: 0.6s;
}

.process-animated.show-animation .process-step:nth-child(5) {
  animation-delay: 0.8s;
}

.process-animated.show-animation .process-step:nth-child(6) {
  animation-delay: 1s;
}

.process-animated.show-animation .process-step:nth-child(7) {
  animation-delay: 1.2s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .process-section {
    padding: 4rem 0;
  }
  
  .process-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    margin-right: 1.75rem;
  }
  
  .process-steps::before {
    left: 34px;
  }
  
  .process-step {
    margin-bottom: 3rem;
  }
  
  .process-content {
    padding: 1.5rem 2rem;
  }
  
  .process-content h3 {
    font-size: 1.35rem;
  }
  
  .process-icon {
    top: 1.5rem;
    right: 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .process-step {
    margin-bottom: 2.5rem;
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
    margin-right: 1.5rem;
  }
  
  .process-steps::before {
    left: 29px;
  }
  
  .process-content {
    padding: 1.35rem 1.75rem;
  }
  
  .process-content h3 {
    font-size: 1.25rem;
  }
  
  .process-icon {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-steps {
    padding: 2rem 0 1rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-right: 1.25rem;
  }
  
  .process-steps::before {
    left: 24px;
  }
  
  .process-content {
    padding: 1.25rem 1.5rem;
  }
  
  .process-content::before {
    top: 25px;
    left: -10px;
    width: 20px;
    height: 20px;
  }
  
  .process-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .process-content p {
    font-size: 0.95rem;
  }
}

/* Modern CTA Section - Executive Design */
.executive-cta {
  position: relative;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 2rem;
}

.executive-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.executive-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 218, 245, 0.2), rgba(12, 218, 245, 0) 70%);
  z-index: 1;
  opacity: 0.5;
  filter: blur(30px);
}

.cta-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 66, 193, 0.15), rgba(111, 66, 193, 0) 60%);
  z-index: 1;
  opacity: 0.6;
  filter: blur(40px);
}

.executive-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, rgba(12, 218, 245, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-cta-primary {
  padding: 1rem 2.25rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(12, 218, 245, 0.25);
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(12, 218, 245, 0.35);
}

.btn-cta-primary:hover::before {
  transform: translateX(100%);
}

.btn-cta-secondary {
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .executive-cta {
    padding: 5rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.25rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .executive-cta {
    padding: 4rem 0;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-cta-primary, .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .executive-cta {
    padding: 3.5rem 0;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .btn-cta-primary, .btn-cta-secondary {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
  }
}

/* Modern Executive Footer */
.executive-footer {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-950));
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.executive-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.02;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-info {
  grid-column: span 4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 180px;
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-contact-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 218, 245, 0.1);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-contact-text h4 {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.footer-contact-text p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-text a:hover {
  color: var(--accent);
}

.footer-columns {
  grid-column: span 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 0.75rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link-list a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-contact-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .executive-footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-columns {
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-contact-blocks {
    grid-template-columns: 1fr;
  }
  
  .footer-contact-block {
    padding: 0.75rem 1rem;
  }
  
  .footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }
  
  .footer-contact-text h4 {
    font-size: 0.85rem;
  }
  
  .footer-contact-text p {
    font-size: 0.95rem;
  }
}

/* Improved Contact Info Styling */
.footer .contact-info {
  margin-top: 1.25rem;
}

.footer .contact-info p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer .contact-info i {
  color: var(--accent);
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

.footer .contact-info strong {
  color: var(--primary-500);
  font-weight: 600;
  margin-right: 4px;
}

.footer .contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .contact-info a:hover {
  color: var(--accent);
}

/* Newsletter Form Styling */
.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form .form-group {
  display: flex;
  max-width: 100%;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  border-radius: 50px 0 0 50px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
  min-width: 120px;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #0bbdcf;
  box-shadow: 0 5px 15px rgba(12, 218, 245, 0.3);
}

@media (max-width: 576px) {
  .newsletter-form .form-group {
    flex-direction: column;
    border-radius: 8px;
    box-shadow: none;
  }
  
  .newsletter-form input[type="email"] {
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: 8px;
    padding: 0.75rem;
  }
}

/* Contact Info Grid Styling */
.contact-info-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  border-radius: 6px;
  padding: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.03);
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-right: 12px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  color: var(--primary-600);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.tech-cta {
  position: relative;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 2rem;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, rgba(12, 218, 245, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.btn-accent {
  padding: 1.25rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(12, 218, 245, 0.25);
}

.btn-accent:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(12, 218, 245, 0.35);
}

.btn-outline-light {
  padding: 1.25rem 2.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .tech-cta {
    padding: 5rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .tech-cta {
    padding: 4rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.25rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-accent, .btn-outline-light {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}

@media (max-width: 576px) {
  .tech-cta {
    padding: 3.5rem 0;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .btn-accent, .btn-outline-light {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
  }
} 