/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #f9fafb; /* Default background for pages */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #84cc16, #14b8a6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #65a30d, #0f766e);
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(116, 146, 153, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(132, 204, 22, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
}

/* Logo container - base size for mobile */
.logo-container {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Logo image */
.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Brand text */
.brand-text {
  font-weight: 900;
  font-size: 20px; /* Slightly smaller on mobile */
  color: white;
  transition: all 0.3s ease;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .logo-container {
    width: 80px;
    height: 80px;
  }
  .brand-text {
    font-size: 24px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .logo-container {
    width: 100px;
    height: 100px;
  }
  .brand-text {
    font-size: 28px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .logo-container {
    width: 120px;
    height: 120px;
  }
  .brand-text {
    font-size: 32px;
  }
}

/* Specific color for navbar on non-hero pages */
body:not(.homepage) .brand-text {
  color: #1f2937;
}

.navbar.scrolled .brand-text {
  color: #1f2937;
}

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

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: white; /* Default for hero page */
  transition: color 0.3s ease;
  position: relative;
}

/* Specific color for nav links on non-hero pages */
body:not(.homepage) .nav-link {
  color: #374151;
}

.navbar.scrolled .nav-link {
  color: #374151;
}

.nav-link:hover,
.nav-link.active {
  color: #84cc16;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: white; /* Default for hero page */
  transition: all 0.3s ease;
}

/* Specific color for toggle bars on non-hero pages */
body:not(.homepage) .bar {
  background: #374151;
}

.navbar.scrolled .bar {
  background: #374151;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    color: #374151;
    font-size: 18px;
    padding: 15px 0;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .logo-container {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 20px;
  }
}

/* Hero Section (Homepage Specific) */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
}

.organic-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: 0.3;
  animation: organic-flow 20s ease-in-out infinite;
}

.shape-1 {
  top: 80px;
  right: 40px;
  width: 384px;
  height: 256px;
  background: linear-gradient(45deg, #84cc16, #22c55e, #10b981);
}

.shape-2 {
  bottom: 80px;
  left: 40px;
  width: 320px;
  height: 224px;
  background: linear-gradient(45deg, #14b8a6, #06b6d4, #3b82f6);
  animation-delay: -10s;
}

.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 288px;
  height: 288px;
  background: linear-gradient(45deg, rgba(132, 204, 22, 0.1), rgba(20, 184, 166, 0.1));
  animation-delay: -20s;
}

.network-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: data-pulse 2s ease-in-out infinite;
}

.node-1 {
  top: 25%;
  left: 25%;
  background: #84cc16;
}

.node-2 {
  top: 33%;
  right: 33%;
  background: #14b8a6;
  animation-delay: 0.5s;
}

.node-3 {
  bottom: 25%;
  left: 33%;
  background: #06b6d4;
  animation-delay: 1s;
}

.node-4 {
  bottom: 33%;
  right: 25%;
  background: #22c55e;
  animation-delay: 1.5s;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.2), rgba(20, 184, 166, 0.2));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(132, 204, 22, 0.3);
  color: #a3e635;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}

.gradient-text {
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(18px, 2.5vw, 32px);
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  color: white;
  border: none;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
  border: 1px solid rgba(132, 204, 22, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(132, 204, 22, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #84cc16;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #84cc16;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: linear-gradient(to bottom, #84cc16, #14b8a6);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

/* Page Hero (General for About, Services, Contact, Blog) */
.page-hero {
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fafb 0%, rgba(132, 204, 22, 0.05) 50%, rgba(20, 184, 166, 0.05) 100%);
}

.page-hero .hero-background {
  background: none; /* Override hero background for page heroes */
}

.page-hero .organic-shape.shape-1 {
  background: linear-gradient(45deg, rgba(132, 204, 22, 0.2), rgba(34, 197, 94, 0.2));
}

.page-hero .organic-shape.shape-2 {
  background: linear-gradient(45deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1f2937;
}

.page-hero-description {
  font-size: clamp(16px, 2vw, 24px);
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.white-text .section-title,
.white-text .section-description {
  color: white;
}

/* Services Categories */
.services-categories {
  background: linear-gradient(135deg, #f9fafb 0%, rgba(132, 204, 22, 0.05) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #f3f4f6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.lime-green {
  background: linear-gradient(135deg, #84cc16, #22c55e);
}

.green-teal {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.teal-cyan {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.cyan-blue {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.service-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 14px;
}

.service-features i {
  color: #22c55e;
  font-size: 16px;
}

.service-button {
  width: 100%;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Detailed Services */
.detailed-services {
  background: white;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-item {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-item-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.service-item p {
  color: #6b7280;
  font-size: 14px;
}

/* Color Classes for icons */
.service-item-icon.lime {
  color: #84cc16;
}
.service-item-icon.green {
  color: #22c55e;
}
.service-item-icon.teal {
  color: #14b8a6;
}
.service-item-icon.cyan {
  color: #06b6d4;
}
.service-item-icon.blue {
  color: #3b82f6;
}
.service-item-icon.purple {
  color: #8b5cf6;
}
.service-item-icon.pink {
  color: #ec4899;
}
.service-item-icon.red {
  color: #ef4444;
}
.service-item-icon.orange {
  color: #f97316;
}
.service-item-icon.yellow {
  color: #eab308;
}
.service-item-icon.emerald {
  color: #10b981;
}
.service-item-icon.indigo {
  color: #6366f1;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.05), rgba(20, 184, 166, 0.05));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 32px;
  color: #1f2937;
  line-height: 1.2;
}

.about-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #374151;
  font-size: 16px;
}

.feature-item .feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.about-dashboard {
  position: relative;
}

.dashboard-container {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-card {
  border-radius: 16px;
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.dashboard-card i {
  font-size: 32px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.dashboard-value {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.dashboard-label {
  font-size: 14px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.dashboard-title {
  text-align: center;
  color: #d1d5db;
  font-weight: 600;
}

/* Industries Section */
.industries-section {
  background: white;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.industry-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.industry-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.industry-card p {
  color: #6b7280;
  line-height: 1.6;
}

.industry-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-gradient {
  transform: scaleX(1);
}

/* Stats Section */
.stats-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  color: white;
}

.stats-background {
  position: absolute;
  inset: 0;
}

.stats-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
  animation: organic-flow 15s ease-in-out infinite;
}

.stats-shape.shape-1 {
  top: 40px;
  right: 40px;
  width: 256px;
  height: 256px;
}

.stats-shape.shape-2 {
  bottom: 40px;
  left: 40px;
  width: 320px;
  height: 320px;
  animation-delay: -7.5s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #374151, #1f2937);
  color: white;
}

.cta-background {
  position: absolute;
  inset: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(80px);
  opacity: 0.1;
  animation: organic-flow 25s ease-in-out infinite;
}

.cta-shape.shape-1 {
  top: 80px;
  left: 80px;
  width: 384px;
  height: 256px;
  background: linear-gradient(45deg, #84cc16, #22c55e, #10b981);
}

.cta-shape.shape-2 {
  bottom: 80px;
  right: 80px;
  width: 320px;
  height: 224px;
  background: linear-gradient(45deg, #14b8a6, #06b6d4, #3b82f6);
  animation-delay: -12.5s;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button-large {
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  color: white;
  border: none;
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 40px rgba(132, 204, 22, 0.3);
  border: 1px solid rgba(132, 204, 22, 0.3);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(132, 204, 22, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937, #374151, #1f2937);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  inset: 0;
}

.footer-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(100px);
  opacity: 0.05;
  animation: organic-flow 30s ease-in-out infinite;
}

.footer-shape.shape-1 {
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: linear-gradient(45deg, #84cc16, #22c55e);
}

.footer-shape.shape-2 {
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: linear-gradient(45deg, #14b8a6, #06b6d4);
  animation-delay: -15s;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  position: relative;
  z-index: 10;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo .logo {
  width: 48px;
  height: 48px;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #84cc16;
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3 {
  color: #84cc16;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #84cc16;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 14px;
}

.footer-contact i {
  color: #84cc16;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 24px 0;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

/* Expertise Section (About Page) */
.expertise-section {
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.expertise-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #f3f4f6;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1);
}

.expertise-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.expertise-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.expertise-features {
  list-style: none;
  text-align: left;
}

.expertise-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 14px;
}

.expertise-features i {
  color: #22c55e;
  font-size: 16px;
}

/* Story Section (About Page) */
.story-section {
  background: #f9fafb;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 32px;
  color: #1f2937;
  line-height: 1.2;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-text p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.stats-container {
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  border-radius: 24px;
  padding: 32px;
  color: white;
  box-shadow: 0 20px 50px rgba(132, 204, 22, 0.3);
}

.stats-header {
  text-align: center;
  margin-bottom: 24px;
}

.stats-header i {
  font-size: 48px;
  margin-bottom: 16px;
}

.stats-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.mini-stat-value {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}

.mini-stat-label {
  font-size: 12px;
  opacity: 0.9;
}

/* Values Section (About Page) */
.values-section {
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 14px;
}

/* Team Section (About Page) */
.team-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  color: white;
}

.team-background {
  position: absolute;
  inset: 0;
}

.team-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
  animation: organic-flow 20s ease-in-out infinite;
}

.team-shape.shape-1 {
  top: 40px;
  right: 40px;
  width: 256px;
  height: 256px;
}

.team-shape.shape-2 {
  bottom: 40px;
  left: 40px;
  width: 320px;
  height: 320px;
  animation-delay: -10s;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 10;
}

.team-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 48px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.team-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-role {
  color: #a3e635;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 14px;
}

/* Main Services (Services Page) */
.main-services {
  background: #f9fafb;
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.main-service-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.main-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.main-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.service-title-large {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #1f2937;
}

.service-description-large {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-box .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.feature-box.lime .feature-icon {
  background: linear-gradient(135deg, #84cc16, #a3e635);
}
.feature-box.green .feature-icon {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}
.feature-box.teal .feature-icon {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}
.feature-box.cyan .feature-icon {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}
.feature-box.blue .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.feature-box.purple .feature-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2937;
}

.feature-content p {
  font-size: 12px;
  color: #6b7280;
}

.service-cta-button {
  width: 100%;
  border: none;
  padding: 20px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.service-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Process Section (Services Page) */
.process-section {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.05), rgba(20, 184, 166, 0.05));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 96px;
  font-weight: 900;
  color: #f3f4f6;
  line-height: 1;
  padding-top: 20px;
  z-index: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transform: translateY(-20px);
}

.process-icon.lime {
  background: linear-gradient(135deg, #84cc16, #a3e635);
}
.process-icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}
.process-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}
.process-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.process-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  position: relative;
  z-index: 2;
}

.process-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  background: #f9fafb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form-container {
  background: linear-gradient(135deg, #ffffff, rgba(132, 204, 22, 0.05));
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
  padding: 48px;
}

.contact-form-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1f2937;
}

.contact-form-subtitle {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(132, 204, 22, 0.2);
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #84cc16;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-button {
  width: 100%;
  background: linear-gradient(135deg, #84cc16, #14b8a6);
  color: white;
  border: none;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
}

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

.contact-info-card {
  background: linear-gradient(135deg, #ffffff, rgba(20, 184, 166, 0.05));
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
  color: #1f2937;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.contact-info-content p {
  color: #6b7280;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-note {
  font-size: 12px;
  color: #84cc16;
  font-weight: 600;
}

.emergency-help-card {
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  border-radius: 20px;
  padding: 32px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-help-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.emergency-help-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.emergency-help-card p {
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.emergency-button {
  background: white;
  color: #22c55e;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.emergency-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* FAQ Section (Contact Page) */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #84cc16, #22c55e, #14b8a6);
  color: white;
}

.faq-background {
  position: absolute;
  inset: 0;
}

.faq-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
  animation: organic-flow 25s ease-in-out infinite;
}

.faq-shape.shape-1 {
  top: 40px;
  right: 40px;
  width: 256px;
  height: 256px;
}

.faq-shape.shape-2 {
  bottom: 40px;
  left: 40px;
  width: 320px;
  height: 320px;
  animation-delay: -12.5s;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 10;
}

.faq-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 14px;
}

/* Blog Section */
.blog-section {
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.blog-post {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-post.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-post-image {
  height: 200px;
  background: linear-gradient(135deg, #84cc16, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-post.featured .blog-post-image {
  height: auto;
}

.blog-post-image.ai {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.blog-post-image.design {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.blog-post-image.security {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-emoji {
  font-size: 64px;
}

.blog-post-content {
  padding: 32px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #6b7280;
}

.blog-post-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  line-height: 1.3;
}

.blog-post h3.blog-post-title {
  font-size: 20px;
}

.blog-post-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #84cc16, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: #6b7280;
}

/* Newsletter Section (Blog Page) */
.newsletter-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316);
  color: white;
}

.newsletter-background {
  position: absolute;
  inset: 0;
}

.newsletter-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
  animation: organic-flow 20s ease-in-out infinite;
}

.newsletter-shape.shape-1 {
  top: 40px;
  right: 40px;
  width: 256px;
  height: 256px;
}

.newsletter-shape.shape-2 {
  bottom: 40px;
  left: 40px;
  width: 320px;
  height: 320px;
  animation-delay: -10s;
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.newsletter-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}

.newsletter-description {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto 16px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
}

.newsletter-button {
  background: white;
  color: #8b5cf6;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Animations */
@keyframes organic-flow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    transform: translateY(-10px) rotate(90deg) scale(1.05);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(1);
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }
  75% {
    transform: translateY(-10px) rotate(270deg) scale(0.95);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes data-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .main-services-grid {
    grid-template-columns: 1fr;
  }

  .service-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
  }

  .services-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .expertise-card {
    padding: 24px;
  }

  .services-detailed-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .service-item {
    padding: 20px 16px;
  }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .blog-post.featured {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .main-service-card {
    padding: 32px 24px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-card {
    padding: 32px 24px;
  }

  .stats-mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-note {
    font-size: 12px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }

  .cta-button,
  .cta-button-large {
    padding: 16px 32px;
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .service-card,
  .expertise-card,
  .main-service-card {
    padding: 20px;
  }

  .service-icon,
  .expertise-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-title,
  .expertise-title {
    font-size: 20px;
  }

  .about-title,
  .story-title {
    font-size: 28px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
  /* Popup overlay */

}
}
