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

:root {
  --primary-color: #0aa9ce;
  --primary-dark: #0892ae;
  --primary-light: #1fc5e8;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #f5f7fa;
  --bg-lighter: #fafbfc;
  --white: #ffffff;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Navigation Bar */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

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

.navbar-logo a {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.navbar-logo a:hover {
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 45px;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(10, 169, 206, 0.2);
  font-size: 14px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(10, 169, 206, 0.3);
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  padding: 160px 20px 120px;
  text-align: left;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 169, 206, 0.22), rgba(13, 110, 139, 0.22));
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  opacity: 0.95;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease-out 0.15s backwards;
}

.hero p {
  font-size: 21px;
  margin-bottom: 45px;
  max-width: 620px;
  opacity: 0.95;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  animation: fadeInUp 0.8s ease-out 0.25s backwards;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--white), #f0f9ff);
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--bg-light);
}

/* Sections */
section {
  padding: 90px 20px;
}

h2 {
  font-size: 48px;
  margin-bottom: 35px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.8px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.accent {
  color: var(--primary-color);
}

/* Growth Section */
.growth-section {
  background-color: var(--white);
  position: relative;
}

.growth-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 197, 232, 0.08), transparent 70%);
  pointer-events: none;
}

.growth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.growth-text h3 {
  color: var(--primary-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.growth-text p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.85;
  font-size: 17px;
}

.section-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.section-image:hover {
  transform: scale(1.02);
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

.mission-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%' height='100%' fill='url(%23grid)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.mission-content h2 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 48px;
}

.mission-content p {
  font-size: 20px;
  margin-bottom: 45px;
  line-height: 1.85;
  font-weight: 300;
  opacity: 0.95;
}

/* Partners Section */
.partners-section {
  background-color: var(--bg-light);
  padding: 90px 20px;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 70px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 28px;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

.partner-logo img {
  max-width: 90%;
  max-height: 75px;
}

/* Services Preview */
.services-preview {
  background-color: var(--white);
  position: relative;
}

.services-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 197, 232, 0.06), transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-tag {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-description {
  color: var(--text-light);
  font-size: 18px;
  margin-top: 15px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--bg-lighter);
  padding: 45px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, var(--white), var(--bg-lighter));
}

.service-icon {
  font-size: 54px;
  margin-bottom: 28px;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 24px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 16px;
}

.services-cta {
  text-align: center;
}

/* Page Hero */
.page-hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 169, 206, 0.88), rgba(13, 110, 139, 0.88));
  z-index: 0;
}

.page-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -1.2px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.95;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--white);
  text-align: center;
  padding: 100px 20px;
}

.about-section p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.9;
}

/* Timeline */
.timeline-section {
  background-color: var(--bg-light);
  padding: 90px 20px;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 70px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  animation: slideInUp 0.6s ease-out backwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 75px;
  width: 2px;
  height: calc(100% + 45px);
  background: linear-gradient(180deg, var(--primary-color), transparent);
}

.timeline-dot {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}

.timeline-content {
  background-color: var(--white);
  padding: 32px;
  border-radius: 10px;
  flex-grow: 1;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-light);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 22px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background-color: var(--white);
  position: relative;
  padding: 90px 20px;
}

.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(31, 197, 232, 0.08), transparent 70%);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: var(--bg-lighter);
  padding: 45px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 16px;
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
  text-align: center;
  padding: 90px 20px;
}

.team-section > .container > p {
  max-width: 750px;
  margin: 20px auto 70px;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.85;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 50px;
}

.team-member {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 28px;
}

.team-member h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
}

.team-member p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%' height='100%' fill='url(%23grid)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat h3 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.stat p {
  font-size: 17px;
  opacity: 0.95;
  font-weight: 500;
}

/* Services Overview */
.services-overview {
  background-color: var(--white);
  text-align: center;
  padding: 90px 20px;
}

.services-overview p {
  max-width: 850px;
  margin: 20px auto;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.9;
}

/* Main Services */
.main-services {
  background-color: var(--white);
  padding: 90px 20px;
}

.service-detailed {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border-color);
  animation: slideInUp 0.6s ease-out;
}

.service-detailed:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-with-image:nth-child(even) {
  direction: rtl;
}

.service-with-image:nth-child(even) > * {
  direction: ltr;
}

.service-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 32px;
}

.service-text p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 17px;
}

.service-features {
  list-style: none;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.service-features li {
  padding: 14px 0;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 16px;
}

.service-features li:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.service-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.service-image:hover {
  transform: scale(1.02);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-light);
  padding: 90px 20px;
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 197, 232, 0.08), transparent 70%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.pricing-header h2 {
  margin-bottom: 12px;
}

.pricing-header p {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background-color: var(--white);
  padding: 45px 36px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 7px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pricing-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.price {
  font-size: 46px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1;
}

.price span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 40px 0;
  text-align: left;
}

.pricing-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

/* Why Choose Section */
.why-choose {
  background-color: var(--white);
  text-align: center;
  position: relative;
  padding: 90px 20px;
}

.why-choose h2 {
  margin-bottom: 70px;
}

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

.reason-card {
  background-color: var(--bg-lighter);
  padding: 42px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.reason-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.reason-card p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 16px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 80px 20px 30px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 25px;
  }

  .hero {
    padding: 100px 20px 80px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h2 {
    font-size: 36px;
  }

  section {
    padding: 60px 20px;
  }

  .growth-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-image {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero {
    padding: 80px 20px;
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .service-with-image {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-with-image:nth-child(even) {
    direction: ltr;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

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

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

  .timeline-item {
    gap: 30px;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
  }

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

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    height: 65px;
  }

  .navbar-logo a {
    font-size: 20px;
  }

  .nav-menu {
    gap: 15px;
    font-size: 13px;
  }

  .hero {
    padding: 80px 15px 60px;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  h3 {
    font-size: 22px;
  }

  section {
    padding: 50px 15px;
  }

  .service-card {
    padding: 30px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

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

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