/* === Header === */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header.header-active {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-lg);
  padding: 16px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
  transition: padding 0.3s ease;
}

.header.header-active .container {
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.header-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-nav-list a:hover::after {
  transform: scaleX(1);
}

.header-nav-list a:hover {
  color: var(--primary-color);
}

.header-nav-list a.header-link-active {
  color: var(--primary-color);
}

.header-nav-list a.header-link-active::after {
  transform: scaleX(1);
}

.header .secondary-btn {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--text-inverted);
  text-decoration: none;
  border-radius: var(--border-radius-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.header .secondary-btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius-secondary);
  transition: all 0.3s ease;
}

.burger-btn:hover {
  background: var(--background-secondary);
}

.burger-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

/* Адаптивность хедера */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  
  .header .secondary-btn {
    display: none;
  }
  
  .burger-btn {
    display: block;
  }
  
  .header .container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding: 16px 0;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
}

/* === Hero === */

.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238B5CF6" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 72px;
  margin-bottom: 32px;
  background: var(--background-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.05em;
}

.hero .descr {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

.wrapper {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.wrapper-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.wrapper-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
  pointer-events: none;
}

.wrapper::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  background-color: var(--secondary-hover);
  width: 30px;
}

.wrapper::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  background-color: var(--secondary-hover);
  width: 30px;
}

@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper,
  .hero-content {
    width: 100%;
  }

  .hero-content {
    padding: 0;
  }

  .wrapper {
    padding: 15px 15px 0;
  }

  .wrapper-img {
    height: 500px;
  }

  .hero-title {
    font-size: 60px;
  }
}

/* === About Us === */

.about-us {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-us-text {
  max-width: 600px;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.about-badge:hover::before {
  left: 100%;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

.about-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 50px;
}

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

.about-feature-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.about-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.feature-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  font-family: var(--second-family);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  font-family: var(--second-family);
}

.feature-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.about-us-visual {
  position: relative;
}

.about-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;
}

.about-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 50px 30px 30px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.about-image-container:hover .about-image-overlay {
  transform: translateY(0);
}

.overlay-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--second-family);
}

.overlay-text p {
  font-size: 16px;
  opacity: 0.9;
}

/* === Why Choose === */

.why-choose {
  padding: 120px 0;
  background: var(--background-color);
}

.why-choose-content {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.why-choose-text {
  max-width: 600px;
}

.why-choose-text .section-name {
  color: var(--accent-gold);
}

.why-choose-text .title {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.why-choose-text .descr {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--background-secondary);
  border-radius: var(--border-radius-primary);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-family: var(--second-family);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-choose-visual {
  position: relative;
}

.why-choose-image {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 32px 32px;
  color: var(--text-inverted);
}

.overlay-content h4 {
  font-family: var(--second-family);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-inverted);
}

.overlay-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Адаптивность для why-choose */
@media (max-width: 1024px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-choose-text {
    max-width: none;
    text-align: center;
  }
  
  .why-choose-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why-choose-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 32px;
  }
}


.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: calc((100% - 45px) / 2);
}

.why-choose-content .section-name,
.about-us-content .section-name {
  margin-bottom: 12px;
}

.why-choose-content .title,
.about-us-content .title {
  margin-bottom: 15px;
}

.why-choose-content .descr:not(:last-child),
.about-us-content .descr:not(:last-child) {
  margin-bottom: 25px;
}

.about-us-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.about-us-item {
  width: calc((100% - 50px) / 2);
}

.about-us-item .subtitle {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .why-choose .container-flex,
  .about-us .container-flex {
    flex-direction: column-reverse;
  }

  .why-choose-content,
  .why-choose-img,
  .about-us-content,
  .about-us-img {
    width: 100%;
  }
}

/* === Plans === */

.plans {
  padding: 100px 0;
  background: var(--background-color);
}

.plans-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.plans-content .section-name {
  color: var(--accent-teal);
}

.plans-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.plans-item {
  background: var(--background-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.plans-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--background-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.plans-item:hover::before {
  transform: scaleX(1);
}

.plans-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.plans-item-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.plans-item:hover .plans-item-img {
  transform: scale(1.05);
}

.plans-item-content {
  padding: 32px 24px;
  text-align: center;
}

.plans-item-content-price {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.plans-item .subtitle {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.plans-item .descr {
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .plans-item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 500px) {
  .plans-item {
    width: 100%;
  }
}

/* === Our Services === */

.our-services {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  position: relative;
}

.our-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.services-intro {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.services-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.services-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.service-main {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.service-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.service-main-content {
  position: relative;
  z-index: 2;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.service-icon-large svg {
  width: 40px;
  height: 40px;
  color: white;
}

.service-main h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.service-main p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.service-highlights {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.highlight {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  color: white;
}

.service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--second-family);
}

.service-item p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.services-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-detail-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

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

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.detail-badge {
  background: #fbbf24;
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.service-detail-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.detail-features {
  list-style: none;
  margin-bottom: 30px;
}

.detail-features li {
  padding: 10px 0;
  color: #64748b;
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
  font-size: 18px;
}

.detail-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* === Testimonials === */

.testimonial {
  padding: 100px 0;
  background: var(--background-color);
}

.testimonial-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.testimonial-content .section-name {
  color: var(--accent-gold);
}

.swiperTestimonial {
  padding-bottom: 70px;
}

.testimonial-item {
  background: var(--background-color);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--background-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.testimonial-item-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-item-wrap {
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

.testimonial-item-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-item-content {
  text-align: center;
}

.testimonial-item .subtitle {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.testimonial-item .descr {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-style: italic;
}

/* === Blog Section === */

.our-blog {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.blog-intro {
  text-align: center;
  margin-bottom: 80px;
}

.blog-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.blog-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: var(--second-family);
}

.blog-subtitle {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero {
  margin-bottom: 80px;
}

.blog-hero-article {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.hero-article-image {
  position: relative;
  overflow: hidden;
}

.hero-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-hero-article:hover .hero-article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-article-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
}

.article-meta span {
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 15px;
  color: #6366f1;
  font-weight: 500;
}

.hero-article-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--second-family);
}

.hero-article-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-article-link {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-article-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.article-stats {
  display: flex;
  gap: 15px;
}

.stat {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.blog-categories {
  margin-bottom: 50px;
  text-align: center;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-tab {
  background: white;
  color: #64748b;
  border: 2px solid transparent;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-tab:hover,
.category-tab.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.blog-article {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-article:hover .article-image img {
  transform: scale(1.05);
}

.article-category-small {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.article-content {
  padding: 30px;
}

.article-meta-small {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 12px;
  color: #64748b;
}

.article-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--second-family);
}

.article-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.article-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: #059669;
}

.article-engagement {
  display: flex;
  gap: 12px;
}

.engagement-item {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.blog-newsletter-section {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.form-input-group {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.form-input-group input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input-group input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #10b981;
}

.newsletter-submit {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 18px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.newsletter-submit svg {
  width: 20px;
  height: 20px;
}

.newsletter-disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* === Contact === */

.contact {
  padding: 100px 0 180px;
  position: relative;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact-content .section-name {
  margin-bottom: 14px;
}

.contact-content .title {
  margin-bottom: 30px;
  text-align: start;
  max-width: 700px;
}

.contact-content .descr {
  margin-bottom: 24px;
  max-width: 670px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 0.5px solid #e1e1e1;
  background-color: transparent;
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-secondary);
  gap: 40px;
  width: 100%;
}

.contact-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  gap: 13px;
  width: calc((100% - 80px) / 3);
  font-family: var(--font-family);
  font-size: 18px;
  position: relative;
}

.contact-list-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 15px;
  right: -20px;
  bottom: 15px;
  width: 1px;
  background-color: #e1e1e1;
}

.contact-list-item svg {
  width: 70px;
  height: 70px;
  fill: var(--primary-color);
}

.contact-list-item:nth-child(2) svg {
  fill: transparent;
  stroke: var(--primary-color);
}

.contact-list-item .subtitle {
  text-align: center;
  font-weight: 500;
}

.contact-form {
  background-color: var(--background-color);
  box-shadow: 0 10px 52px 0 rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  border-radius: var(--border-radius-primary);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group:nth-child(4) {
  margin-bottom: 60px;
}

.form-group label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  color: #d3d3d3;
  margin-bottom: 10px;
}

.form-group textarea,
.form-group input {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  padding-bottom: 5px;
  color: var(--text-primary);
  border: none;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--text-primary);
  border-radius: var(--border-radius-primary);
  padding: 15px;
  transition: 0.3s all ease;
}

.form-group textarea:hover,
.form-group input:hover {
  border: 1px solid var(--primary-hover);
}

.form-group textarea:focus,
.form-group input:focus {
  border: 1px solid var(--primary-color);
}

.contact-map {
  height: auto;
  border-radius: var(--border-radius-primary);
  border: none;
  width: calc((100% - 70px) / 2);
  min-height: 600px;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .contact-content,
  .contact-form,
  .contact-map {
    width: 100%;
  }

  .contact-list-item {
    width: calc((100% - 40px) / 2);
  }

  .contact-list-item:nth-child(3) {
    width: 100%;
  }
}

/* === Footer === */

.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 80px 0 40px;
}

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

.footer-section h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  font-family: var(--second-family);
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav-list a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-primary);
}

.footer-nav-list a:hover {
  color: white;
  padding-left: 20px;
}

.footer-nav-list a:hover::before {
  opacity: 1;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-newsletter h4 {
  margin-bottom: 20px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-form-group {
  margin-bottom: 20px;
}

.footer-form-group input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
}

.footer-form-group input:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.footer-form-group input::placeholder {
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  text-align: center;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* === Cookie Popup === */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-popup h2 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cookie-popup p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
}

.cookie-popup a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-popup a:hover {
  color: var(--primary-hover);
}

@media screen and (max-width: 768px) {
  .cookie-popup-content {
    flex-direction: column;
    text-align: center;
  }
}

/* === Mobile Menu === */

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: left 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-list li {
  margin-bottom: 30px;
}

.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 0;
}

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

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover::after {
  left: 0;
  right: 0;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-nav .close-btn:hover {
  background: var(--background-secondary);
}

.mobile-nav .close-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

/* Убрал дублирующие стили для .close-btn */

/* === Contact Form === */

.contact {
  padding: 100px 0;
  background: var(--background-secondary);
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-content .section-name {
  color: var(--accent-gold);
}

.contact-list {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--background-color);
  border-radius: var(--border-radius-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.contact-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-list-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.contact-list-item .subtitle {
  margin: 0;
}

.contact-list-item a {
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-list-item a:hover {
  color: var(--primary-hover);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--background-color);
  padding: 48px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.form-group,
.footer-form-group {
  margin-bottom: 24px;
}

.form-group label,
.footer-form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-family);
}

.form-group input,
.footer-form-group input {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-primary);
  font-family: var(--font-family);
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.form-group input:focus,
.footer-form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--overlay-color);
}

.form-group input:hover,
.footer-form-group input:hover {
  border-color: var(--primary-color);
}

/* === Swiper Styles === */

.swiper {
  padding-bottom: 60px;
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--border-color);
  opacity: 0.6;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
  background: var(--primary-color);
  opacity: 0.8;
}

/* === Media Queries === */

@media screen and (max-width: 1240px) {
  .header {
    padding: 16px 30px;
  }

  .header-active {
    padding: 12px 30px;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-title {
    font-size: 48px;
  }

  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 28px;
  }

  .descr {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 40px;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 26px;
  }

  .our-services-list,
  .plans-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

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

@media screen and (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 22px;
  }

  .descr {
    font-size: 15px;
  }

  .our-services-list,
  .plans-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-group input {
    padding: 14px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

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

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 20px;
  }

  .descr {
    font-size: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Адаптивность для about-us */
@media (max-width: 1024px) {
  .about-us {
    padding: 100px 0;
  }
  
  .about-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .about-us-card {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 80px 0;
  }
  
  .about-us-header {
    margin-bottom: 60px;
  }
  
  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-us-card {
    padding: 32px 20px;
  }
  
  .about-us-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }
  
  .about-icon {
    width: 30px;
    height: 30px;
  }
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-choose-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--background-secondary);
  border-radius: var(--border-radius-primary);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.why-choose-feature:hover {
  border-color: var(--accent-gold);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--overlay-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-feature:hover .feature-icon {
  background: var(--accent-gold);
  transform: scale(1.1);
}

.feature-svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.why-choose-feature:hover .feature-svg {
  color: var(--text-inverted);
}

.feature-content h4 {
  font-family: var(--second-family);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Адаптивность для why-choose */
@media (max-width: 1024px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-choose-text {
    max-width: none;
    text-align: center;
  }
  
  .why-choose-features {
    max-width: 600px;
    margin: 32px auto 0;
  }
}

@media (max-width: 768px) {
  .why-choose-features {
    gap: 20px;
  }
  
  .why-choose-feature {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  
  .feature-svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-content h4 {
    font-size: 18px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}

/* === Thank You Page === */

.thank-you-section {
  padding: 120px 0;
  background: var(--background-secondary);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon svg {
  width: 60px;
  height: 60px;
  color: var(--text-inverted);
}

.thank-you-title {
  font-size: 48px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.thank-you-description {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.thank-you-info {
  background: var(--background-color);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.thank-you-info h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.thank-you-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.thank-you-info li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  position: relative;
  padding-left: 30px;
}

.thank-you-info li:last-child {
  border-bottom: none;
}

.thank-you-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

/* Адаптивность для thank-you */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 80px 0;
  }
  
  .thank-you-title {
    font-size: 36px;
  }
  
  .thank-you-description {
    font-size: 18px;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .thank-you-info {
    padding: 24px;
  }
  
  .thank-you-icon {
    width: 80px;
    height: 80px;
  }
  
  .thank-you-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

.hero-text {
  width: 100%;
  max-width: 600px;
  color: white;
}

.hero-visual {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 18px;
}

.hero-main-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: var(--second-family);
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: scale(1.2);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}



.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;
  min-height: 500px;
  width: 100%;
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 50px 40px 40px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .hero-image-overlay {
  transform: translateY(0);
}

.overlay-content {
  text-align: center;
}

.overlay-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.overlay-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.overlay-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.our-services {
  padding: 100px 0;
  background: var(--background-primary);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-showcase {
  margin-bottom: 80px;
}

.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.service-hero-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.service-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.service-cta {
  display: inline-block;
  background: white;
  color: var(--accent-primary);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.service-hero-image {
  text-align: center;
}

.service-hero-image img {
  max-width: 100%;
  height: auto;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

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

.service-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-badge {
  background: var(--accent-primary);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.service-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* ===== BLOG SECTION ===== */
.our-blog {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

.blog-header {
  text-align: center;
  margin-bottom: 80px;
}

.blog-featured {
  margin-bottom: 80px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
  position: relative;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-featured-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-featured-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--second-family);
}

.blog-featured-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.blog-featured-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-featured-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 30px;
}

.blog-card-content .blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
  color: var(--text-secondary);
}

.blog-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--second-family);
}

.blog-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-secondary);
}

.blog-newsletter {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  color: white;
}

.newsletter-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.newsletter-btn {
  background: white;
  color: var(--accent-primary);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-links a svg {
  width: 24px;
  height: 24px;
  z-index: 1;
  position: relative;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .about-us-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-us-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .service-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  
  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .blog-featured-content {
    padding: 30px 25px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 60px 0;
  }
  
  .our-services {
    padding: 60px 0;
  }
  
  .our-blog {
    padding: 60px 0;
  }
  
  .service-hero {
    padding: 30px 20px;
  }
  
  .blog-featured-content {
    padding: 25px 20px;
  }
  
  .blog-newsletter {
    padding: 40px 25px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* ===== GOOGLE ADS DISCLAIMER ===== */
.google-ads-disclaimer {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.google-ads-disclaimer strong {
  font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}


.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 100px 0;
  background: var(--background-primary);
}

.why-choose .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-choose-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-choose-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.why-choose-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.why-choose-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.why-choose-item p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

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

.achievements-showcase {
  margin-bottom: 80px;
}

.achievement-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.achievement-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.achievement-hero-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.achievement-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.achievement-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.achievement-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.achievement-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.achievement-stat .stat-label {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

.achievement-hero-image {
  text-align: center;
}

.achievement-hero-image img {
  max-width: 100%;
  height: auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
  transform: scale(1.05);
}

.plan-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: var(--second-family);
}

.period {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 35px;
}

.plan-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
  font-size: 18px;
}

.plan-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial {
  padding: 100px 0;
  background: var(--background-primary);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 60px;
  color: var(--accent-primary);
  font-family: serif;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-primary);
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-family: var(--second-family);
}

.author-info span {
  font-size: 14px;
  color: var(--text-secondary);
}

.testimonial-disclaimer {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-disclaimer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-disclaimer strong {
  color: var(--accent-primary);
  font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.contact-details p {
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-us-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-us-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .service-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  
  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .blog-featured-content {
    padding: 30px 25px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .about-us,
  .our-services,
  .our-blog,
  .achievements,
  .testimonial,
  .contact {
    padding: 60px 0;
  }
  
  .service-hero {
    padding: 30px 20px;
  }
  
  .blog-featured-content {
    padding: 25px 20px;
  }
  
  .blog-newsletter {
    padding: 40px 25px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* ===== BUTTONS ===== */
.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent-primary);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-primary);
}

.secondary-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--second-family);
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.about-us,
.our-services,
.our-blog,
.achievements,
.testimonial,
.contact {
  animation: fadeInUp 0.8s ease-out;
}

.about-us-content,
.contact-content {
  animation: slideInLeft 0.8s ease-out;
}

.about-us-visual,
.contact-form {
  animation: slideInRight 0.8s ease-out;
}

/* ===== HOVER EFFECTS ===== */
.about-feature:hover,
.service-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===== FOCUS STATES ===== */
.primary-btn:focus,
.secondary-btn:focus,
.service-btn:focus,
.blog-featured-link:focus {
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--accent-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== FOOTER ADDITIONAL STYLES ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

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

.footer-logo h3 {
  font-family: var(--second-family);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-contact .contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 15px;
  border-left: 4px solid #ff6b6b;
}

.disclaimer-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-text strong {
  color: #ff6b6b;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

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

.achievements-showcase {
  margin-bottom: 80px;
}

.achievement-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.achievement-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.achievement-hero-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.achievement-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.achievement-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.achievement-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.achievement-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.achievement-stat .stat-label {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

.achievement-hero-image {
  text-align: center;
}

.achievement-hero-image img {
  max-width: 100%;
  height: auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.achievement-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.achievement-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.achievement-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.achievement-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.achievement-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.achievement-badge {
  background: var(--accent-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievements-testimonials {
  text-align: center;
}

.testimonial-highlight {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  margin-bottom: 30px;
}

.testimonial-quote p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.testimonial-quote p::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 60px;
  color: var(--accent-primary);
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author-highlight img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-primary);
}

.author-info-highlight h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-family: var(--second-family);
}

.author-info-highlight span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== ACHIEVEMENTS RESPONSIVE ===== */
@media (max-width: 768px) {
  .achievement-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  
  .achievement-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-highlight {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .achievements {
    padding: 60px 0;
  }
  
  .achievement-hero {
    padding: 30px 20px;
  }
  
  .achievement-hero-content h3 {
    font-size: 24px;
  }
  
  .testimonial-highlight {
    padding: 25px 20px;
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.section-intro {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.intro-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.intro-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.intro-badge:hover::before {
  left: 100%;
}

.intro-title {
  font-size: 56px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
}

.intro-subtitle {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.features-showcase {
  position: relative;
  z-index: 2;
}

.feature-main {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 30px;
  padding: 60px;
  color: white;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-number {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  font-family: var(--second-family);
}

.feature-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.feature-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.feature-highlights {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.highlight-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-visual {
  text-align: center;
}

.tech-circle {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.circle-inner {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon {
  width: 60px;
  height: 60px;
  color: white;
}

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

.feature-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981, #059669);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.feature-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-badge {
  background: #10b981;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  max-width: 600px;
}

.content-header {
  margin-bottom: 60px;
}

.content-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.feature-marker {
  position: relative;
  flex-shrink: 0;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  margin-bottom: 10px;
}

.marker-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  margin: 0 auto;
}

.feature-item:last-child .marker-line {
  display: none;
}

.feature-details h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.feature-details p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
}

.main-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(5deg);
  transition: all 0.4s ease;
}

.main-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 20%;
  left: -20px;
  animation-delay: 2s;
}

.card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.card-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  font-family: var(--second-family);
}

.card-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.services-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.header-title {
  font-size: 56px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--second-family);
}

.header-description {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.services-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.mosaic-main {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: white;
}

.mosaic-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.main-content {
  position: relative;
  z-index: 2;
}

.main-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.main-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.mosaic-main h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.mosaic-main p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.main-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.main-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.main-visual {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.visual-element {
  position: relative;
}

.element-circle {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.element-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.mosaic-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex: 1;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.item-icon svg {
  width: 25px;
  height: 25px;
  color: white;
}

.sidebar-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  font-family: var(--second-family);
}

.sidebar-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

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

.service-card.premium::before {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.premium .card-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.card-badge {
  background: #fbbf24;
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.service-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-features {
  list-style: none;
  margin-bottom: 30px;
}

.card-features li {
  padding: 10px 0;
  color: #64748b;
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
  font-size: 18px;
}

.service-card.premium .card-features li::before {
  color: #fbbf24;
}

.card-button {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.service-card.premium .card-button {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.service-card.premium .card-button:hover {
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  position: relative;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.achievements-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.achievements-showcase {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.showcase-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.showcase-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

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

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

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.hero-visual {
  text-align: center;
  width: 100%;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.achievement-card.featured {
  border-color: #fbbf24;
}

.achievement-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.achievement-card.featured .card-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.achievement-card .card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.achievement-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.achievement-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: #10b981;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.achievement-card.featured .badge {
  background: #fbbf24;
  color: #1e293b;
}

.achievements-testimonial {
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  margin-bottom: 30px;
}

.testimonial-quote p {
  font-size: 20px;
  color: #1e293b;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
  font-family: var(--second-family);
}

.author-info span {
  font-size: 14px;
  color: #64748b;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981, #059669);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-quote {
  margin-bottom: 30px;
  position: relative;
}

.quote-icon {
  font-size: 48px;
  color: #10b981;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
}

.card-quote p {
  font-size: 18px;
  color: #1e293b;
  line-height: 1.6;
  padding-left: 30px;
  margin-top: 20px;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
  font-family: var(--second-family);
}

.author-details span {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
  display: block;
}

.author-rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 16px;
  color: #fbbf24;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.blog-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.blog-hero {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero-article {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.article-image {
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-article:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.article-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1e293b;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
}

.article-meta span {
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 15px;
  color: #6366f1;
  font-weight: 500;
}

.article-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--second-family);
}

.article-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 35px;
}

.article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.article-link {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.article-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.article-stats {
  display: flex;
  gap: 15px;
}

.stat {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.blog-categories {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-tab {
  background: white;
  color: #64748b;
  border: 2px solid transparent;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-tab:hover,
.category-tab.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.blog-article {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  color: #1e293b;
}

.blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.blog-article .article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-article .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-article:hover .article-image img {
  transform: scale(1.05);
}

.blog-article .article-content {
  padding: 30px;
}

.blog-article .article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 12px;
  color: #64748b;
}

.blog-article h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--second-family);
}

.blog-article p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.article-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: #059669;
}

.article-engagement {
  display: flex;
  gap: 12px;
}

.engagement {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.blog-newsletter {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.blog-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.form-input-group {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.form-input-group input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input-group input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #10b981;
}

.newsletter-submit {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 18px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.newsletter-submit svg {
  width: 20px;
  height: 20px;
}

.newsletter-disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

.contact-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
  animation: float 8s ease-in-out infinite;
}

.contact-shape.shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.contact-shape.shape-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.contact-shape.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.contact-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 18px;
}

.contact-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: var(--second-family);
}

.contact-title .title-line {
  display: block;
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.contact-title .title-line:nth-child(1) { animation-delay: 0.2s; }
.contact-title .title-line:nth-child(2) { animation-delay: 0.4s; }
.contact-title .title-line:nth-child(3) { animation-delay: 0.6s; }

.contact-title .title-line.highlight {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

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

.info-hero {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.info-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
}

.info-hero-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.info-hero h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.info-hero p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card-icon svg {
  width: 25px;
  height: 25px;
  color: white;
}

.info-card-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-family: var(--second-family);
}

.info-main {
  font-size: 16px;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: block;
}

.info-action {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.info-action:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.contact-stats .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.contact-stats .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.contact-form-panel {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #1e293b;
}

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

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: var(--second-family);
}

.form-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

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

.form-section {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 30px;
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: var(--second-family);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  font-family: var(--second-family);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #10b981;
  border-color: #10b981;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.checkbox-label a {
  color: #10b981;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.btn-text {
  z-index: 2;
  position: relative;
}

.btn-icon {
  z-index: 2;
  position: relative;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-content,
  .about-layout,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-mosaic {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-article {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .article-image {
    height: 300px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .why-choose-section,
  .about-section,
  .services-section,
  .achievements-section,
  .testimonials-section,
  .blog-section,
  .contact-section {
    padding: 80px 0;
  }
  
  .hero-main-title,
  .intro-title,
  .header-title,
  .content-title {
    font-size: 36px;
  }
  
  .services-cards,
  .achievements-grid,
  .testimonials-grid,
  .blog-articles {
    grid-template-columns: 1fr;
  }
  
  .category-tabs {
    justify-content: center;
  }
  
  .blog-newsletter {
    padding: 40px 30px;
  }
  
  .form-input-group {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .feature-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .showcase-hero {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section,
  .why-choose-section,
  .about-section,
  .services-section,
  .achievements-section,
  .testimonials-section,
  .blog-section,
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 36px;
  }
  
  .contact-info-panel {
    gap: 30px;
  }
  
  .info-hero {
    padding: 30px 25px;
  }
  
  .contact-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-form-panel {
    padding: 30px 25px;
  }
  
  .hero-main-title,
  .intro-title,
  .header-title,
  .content-title {
    font-size: 28px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .feature-main {
    padding: 30px 25px;
  }
  
  .showcase-hero {
    padding: 30px 25px;
  }
  
  .blog-newsletter {
    padding: 30px 25px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay.active .mobile-nav-list {
  display: block !important;
  visibility: visible !important;
}

.mobile-menu-overlay.active .mobile-nav-list li {
  display: block !important;
  visibility: visible !important;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.mobile-logo img {
  width: 40px;
  height: 40px;
}

.mobile-logo span {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--second-family);
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  flex: 1;
  padding: 30px 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block !important;
  visibility: visible !important;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block !important;
  padding: 20px 25px;
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  visibility: visible !important;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 35px;
}

.mobile-menu-footer {
  padding: 30px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-contact-info {
  margin-bottom: 25px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.mobile-contact-item svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.mobile-social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.mobile-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-social-link:hover {
  background: #10b981;
  transform: translateY(-3px);
}

.mobile-social-link svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu responsive */
@media (max-width: 480px) {
  .mobile-menu-container {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 25px 20px;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 15px;
  }
  
  .mobile-menu-footer {
    padding: 25px 20px;
  }
}
