/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --background: #0a0a0f;
  --background-secondary: #12121a;
  --background-card: #1a1a24;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --border: #2a2a3a;
  --whatsapp: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: var(--background-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--text-primary);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
 
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img{
height: auto;
width: 250px;
}

/*.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}*/

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

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

.header-cta {
  padding: 10px 20px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.hero-feature svg {
  color: var(--primary);
}

/* Mockup Styles */
.hero-mockup {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-mockup img{
  width: 150%;
  height: auto;
}

.mockup-laptop {
  background: #1a1a24;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.mockup-screen {
  background: #0d0d12;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.mockup-content {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mockup-logo {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-nav-dots {
  display: flex;
  gap: 4px;
}

.mockup-nav-dots span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
}

.mockup-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mockup-hero h3 {
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.mockup-hero h3 span {
  color: var(--primary);
}

.mockup-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.625rem;
  width: fit-content;
  cursor: pointer;
}

.mockup-phone {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  background: #1a1a24;
  border-radius: 16px;
  padding: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.mockup-phone-screen {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4c1d95 100%);
  border-radius: 10px;
  padding: 16px;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mockup-phone-content p {
  font-size: 0.5rem;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
}

.mockup-phone-content span {
  color: var(--primary-light);
}

.mockup-btn-small {
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.375rem;
  cursor: pointer;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.section-header h2 , .feature-card h3{
  color: #000 ;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color:#000;
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 100px 0;
}
.services h2{
  color: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: var(--background-secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.portfolio-badge {
  background: rgba(10, 10, 15, 0.8);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  text-align: center;
  backdrop-filter: blur(5px);
}

.portfolio-overlay.light .portfolio-badge.dark {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a24;
}

.portfolio-info {
  padding: 20px;
  background: var(--background-card);
}

.portfolio-info h3 {
  margin-bottom: 4px;
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* Process Section */
.process {
  padding: 100px 0;
  background: #fff;
}

.process-timeline {
  position: relative;
  padding-top: 40px;
}

.process-line {
  position: absolute;
  top: 75px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--background-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating span {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  padding: 80px 0 24px;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 16px 0 24px;
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid,
  .services-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav.active {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-mockup {
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid,
  .services-grid,
  .portfolio-grid,
  .testimonials-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-mockup img{
  width:90vw;
  height: auto;
}
}

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

.feature-card,
.service-card,
.portfolio-card,
.testimonial-card,
.process-step {
  animation: fadeInUp 0.6s ease forwards;
}
