.nav-links a:hover::after,
header {
  width: 100%;
}

.cta-button,
.nav-links a,
body {
  color: var(--white);
}

body,
footer {
  background: var(--dark-bg);
}

.hero,
.hero-service,
.nav-links a {
  position: relative;
}

.cta-section,
.cta-seo,
.results-grid,
.section-header,
.sources,
footer {
  text-align: center;
}

.breadcrumb a:hover,
.nav-links a:hover,
.problem-item p strong {
  color: var(--accent-color);
}

.problem-item::before,
.step::before {
  content: '';
  top: 0;
  right: 0;
  height: 4px;
  position: absolute;
  left: 0;
}

.nav-links,
.step-content ul {
  list-style: none;
}

.faq-item,
.faq-item p,
.hero,
.hero-service,
.problem-item {
  overflow: hidden;
}

.breadcrumb a,
.cta-button,
.nav-links a,
.service-link {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a365d;
  --secondary-color: #3182ce;
  --accent-color: #00d4ff;
  --dark-bg: #0f1419;
  --gray-dark: #1a202c;
  --gray-medium: #2d3748;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

body {
  font-family: Inter,sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  background: rgba(15, 20, 25, .95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: .3s;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  min-height: 70px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width .3s;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: .3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-service::before,
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(49, 130, 206, .3) 0, transparent 70%), radial-gradient(circle at 70% 80%, rgba(0, 212, 255, .2) 0, transparent 70%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-service h1,
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-button,
.section-header h2,
.service-icon {
  background: var(--gradient-accent);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: .3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 212, 255, .3);
}

.hero-service p,
.result-text,
.section-header p,
.sources small {
  color: var(--gray-light);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, .4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.results,
.seo-process {
  padding: 8rem 0;
  background: var(--gray-dark);
}

.faq h2,
.problems-solved h2,
.result-number,
.seo-process h2 {
  background: var(--gradient-accent);
  -webkit-text-fill-color: transparent;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.result-item {
  padding: 2rem 1.5rem;
}

.result-number {
  font-size: 4rem;
  font-weight: 800;
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.result-text {
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-section,
.cta-seo {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: .9;
}

footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: .8s;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer-links a:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
  transition: .3s;
}

.cta-gmb {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.sources {
  margin-top: 3rem;
  opacity: .7;
}

.sources small {
  font-size: .9rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  header {
    min-height: 55px;
  }

  nav {
    padding: .7rem 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: .95rem;
  }

  .container {
    padding: 0 15px;
  }

  .cta-section h2,
  .hero-service h1,
  .section-header h2 {
    font-size: 2rem;
  }

  .cta-seo,
  .faq,
  .problems-solved,
  .seo-process {
    padding: 4rem 0;
  }

  .faq-item,
  .problem-item,
  .step {
    padding: 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.hero-service {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  padding-top: 100px;
}

.hero-service p {
  font-size: 1.3rem;
  max-width: 800px;
  line-height: 1.6;
}

.problems-solved {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--dark-bg), var(--gray-dark));
}

.problem-item,
.step {
  background: rgba(255, 255, 255, .05);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: .3s;
}

.faq h2,
.problems-solved h2,
.seo-process h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  -webkit-background-clip: text;
  background-clip: text;
}

.problem-item h3,
.step-content h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.problem-item {
  border: 1px solid rgba(255, 255, 255, .1);
}

.problem-item::before {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  transform: scaleX(0);
  transition: transform .3s;
}

.problem-item:hover::before,
.step:hover::before {
  transform: scaleX(1);
}

.problem-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.problem-item h3 {
  font-size: 1.4rem;
  color: var(--white);
}

.problem-item p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.problem-item p strong {
  font-weight: 600;
}

.process-steps {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .1);
}

.faq-item h3,
.step-number {
  display: flex;
  align-items: center;
}

.step-number,
.step::before {
  background: var(--gradient-accent);
}

.step::before {
  transform: scaleX(0);
  transition: transform .3s;
}

.faq-item:hover,
.step:hover {
  background: rgba(255, 255, 255, .08);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.step-content p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.step-content ul li {
  color: var(--gray-light);
  margin-bottom: .8rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.step-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.faq {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--gray-dark), var(--dark-bg));
}

.faq-item {
  background: rgba(255, 255, 255, .05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 2rem;
  transition: .3s;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--white);
  justify-content: space-between;
}

.faq-item h3::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform .3s;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--gray-light);
  line-height: 1.6;
  font-size: 1.1rem;
  max-height: 0;
  opacity: 0;
  margin: 0;
  transition: .3s;
  padding-top: 0;
}

.faq-item.active p {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
}

.cta-seo h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-seo p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, .9);
}

.audit-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.audit-form input {
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.1rem;
  transition: .3s;
}

.audit-form input:focus {
  outline: 0;
  background: rgba(255, 255, 255, .15);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, .3);
}

.audit-form input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.audit-form button {
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, .9);
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: .3s;
  margin-top: 1rem;
}

.audit-form button:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.audit-form small {
  color: rgba(255, 255, 255, .8);
  font-style: italic;
  margin-top: -.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: .3s;
}

.service-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.breadcrumb {
  padding: 2rem 0 1rem;
  margin-top: 80px;
}

.breadcrumb a {
  color: var(--gray-light);
  transition: color .3s;
}

.breadcrumb span {
  color: var(--gray-medium);
  margin: 0 .5rem;
}

@media (max-width: 768px) {
  .hero-content,
  .problem-grid,
  .stats-grid,
  .step {
    grid-template-columns: 1fr;
  }

  .cta-section h2,
  .cta-seo h2,
  .faq h2,
  .hero-service h1,
  .problems-solved h2,
  .section-header h2,
  .seo-process h2 {
    font-size: 2.5rem;
  }

  .hero-service p {
    font-size: 1.1rem;
  }

  .step {
    gap: 1.5rem;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .audit-form {
    padding: 0 1rem;
  }

  header {
    background: rgba(15, 20, 25, .98);
    min-height: 60px;
  }

  nav {
    padding: .8rem 0;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .menu-toggle,
  .nav-links.active {
    display: flex;
  }

  .hero {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
  }

  .hero-content {
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-top: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .stats-grid {
    gap: 1rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-service h1,
  .hero-text h1 {
    font-size: 2rem;
  }

  .cta-seo,
  .faq,
  .problems-solved,
  .seo-process {
    padding: 4rem 0;
  }

  .faq-item,
  .problem-item,
  .step {
    padding: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-text p {
    font-size: 1.1rem;
  }
}