* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo-brand:hover {
  opacity: 0.8;
}

.logo-brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-brand .tagline {
  font-size: 0.75rem;
  color: #00d4ff;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: #00d4ff;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #00d4ff;
  transition: width 0.3s;
}

.nav-menu a:hover:after {
  width: 100%;
}

.cta-nav {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0f0f0f !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.cta-nav:hover {
  color: #0f0f0f !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.cta-nav:after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #00d4ff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero-full {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-full:before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  flex: 1;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0f0f0f;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  touch-action: manipulation;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
  outline: none;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #00d4ff;
  padding: 15px 40px;
  border: 2px solid #00d4ff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
  outline: none;
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* SERVICES */
.services-modern {
  padding: 100px 20px;
  background: #0f0f0f;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #b0b0b0;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.price {
  display: inline-block;
  color: #00d4ff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* WHY US */
.why-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 15, 15, 0) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-content h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #b0b0b0;
}

.benefits-list i {
  color: #00d4ff;
  font-size: 1.3rem;
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-box {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border-radius: 20px;
  opacity: 0.3;
}

/* PRICING */
.pricing {
  padding: 100px 20px;
  background: #0f0f0f;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-10px);
}

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0f0f0f;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.price-big {
  font-size: 2.5rem;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card li {
  color: #b0b0b0;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

/* REVIEWS */
.reviews {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 15, 15, 0) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
}

.stars {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-card p {
  color: #b0b0b0;
  margin-bottom: 15px;
  font-style: italic;
}

.reviewer {
  color: #00d4ff;
  font-weight: 600;
  font-style: normal !important;
}

/* PROCESS */
.process {
  padding: 100px 20px;
  background: #0f0f0f;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0f0f0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-step p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.process-arrow {
  color: #00d4ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-arrow {
    display: none;
  }
}

/* BLOG */
.blog {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 15, 15, 0) 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-10px);
}

.blog-card h3 {
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d4ff;
  margin: 0;
}

.blog-card p {
  padding: 0 20px;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.blog-card .btn-primary {
  display: block;
  margin: 20px;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 100px 20px;
  background: #0f0f0f;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.contact-item i {
  font-size: 2rem;
  color: #00d4ff;
}

.contact-item.big {
  padding: 30px;
}

.contact-item p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.contact-item span {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.btn-large {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 20px 40px;
}

/* FOOTER */
.footer {
  background: rgba(0, 212, 255, 0.05);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
  color: #b0b0b0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content h2,
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-box {
    display: none;
  }

  .nav-menu {
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 15px;
  }

  .services-grid {
    gap: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .navbar-content {
    justify-content: space-between;
  }

  .hero-full {
    padding: 80px 20px;
    min-height: 400px;
  }

  .hero-content h2,
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    width: 100%;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar-content {
    padding: 12px 15px;
  }

  .logo-brand h1 {
    font-size: 1.2rem;
  }

  .logo-brand .tagline {
    font-size: 0.65rem;
  }

  .hero-full {
    padding: 60px 15px;
    min-height: 350px;
  }

  .hero-content h2,
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .service-card,
  .pricing-card,
  .review-card,
  .contact-item {
    padding: 20px 15px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .price-big {
    font-size: 1.8rem;
  }

  .nav-menu {
    gap: 15px;
  }

  .services-grid {
    gap: 15px;
  }

  .pricing-cards {
    gap: 15px;
  }

  .reviews-grid {
    gap: 15px;
  }

  .contact-box {
    gap: 15px;
  }
}

/* ULTRA MOBILE - Extra small devices */
@media (max-width: 360px) {
  .logo-brand h1 {
    font-size: 1rem;
  }

  .logo-brand .tagline {
    font-size: 0.6rem;
  }

  .hero-full {
    padding: 50px 10px;
    min-height: 300px;
  }

  .hero-content h2,
  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .service-card,
  .pricing-card,
  .review-card {
    padding: 15px 12px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .price-big {
    font-size: 1.5rem;
  }

  .contact-item {
    gap: 12px;
    padding: 12px;
  }

  .contact-item.big {
    padding: 15px;
  }

  .contact-item i {
    font-size: 1.5rem;
  }
}