/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #3DDC84;
  --black: #000000;
  --white: #FFFFFF;
  --muted: rgba(0,0,0,0.6);
  --shadow: 6px 6px 0px 0px rgba(0,0,0,1);
  --shadow-hover: 3px 3px 0px 0px rgba(0,0,0,1);
  --shadow-green: 6px 6px 0px 0px #3DDC84;
  --border: 4px solid #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; height: auto; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--border);
  padding: 16px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
}

.navbar-logo .logo-img {
  height: 40px;
  width: auto;
}

.navbar-logo .footer-logo-img {
  filter: brightness(0) invert(1);
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border: 3px solid var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.navbar-links a {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--green);
}

.navbar-cta {
  background: var(--green);
  color: var(--black);
  padding: 10px 24px;
  border: var(--border);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  cursor: pointer;
}

.navbar-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 80px 0;
  border-bottom: var(--border);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  padding: 6px 16px;
  border: 3px solid var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--green);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  padding: 16px 32px;
  border: var(--border);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  border: var(--border);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-hover);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 900;
}

.hero-stat p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 500px;
  background: var(--black);
  border: var(--border);
  border-radius: 32px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-inner {
  width: 90%;
  height: 92%;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.phone-mockup-inner svg {
  width: 64px;
  height: 64px;
  color: var(--green);
}

.phone-mockup-inner .phone-text {
  color: var(--green);
  font-weight: 800;
  font-size: 1.2rem;
}

.hero-float {
  position: absolute;
  background: var(--green);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
  width: 56px;
  height: 56px;
  top: 20px;
  right: 20px;
  transform: rotate(12deg);
}

.hero-float-2 {
  width: 48px;
  height: 48px;
  bottom: 60px;
  left: 10px;
  transform: rotate(-12deg);
  animation-delay: 1s;
}

.hero-float-3 {
  width: 40px;
  height: 40px;
  top: 100px;
  left: 30px;
  transform: rotate(6deg);
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 12deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 12deg)); }
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: #f9f9f9;
  border-bottom: var(--border);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  padding: 6px 16px;
  border: 3px solid var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.service-card {
  background: var(--white);
  border: var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  position: relative;
}

.service-card:nth-child(1) { transform: rotate(-1deg); }
.service-card:nth-child(2) { transform: rotate(1deg); }
.service-card:nth-child(3) { transform: rotate(-1deg); }
.service-card:nth-child(4) { transform: rotate(2deg); }
.service-card:nth-child(5) { transform: rotate(1deg); }
.service-card:nth-child(6) { transform: rotate(-2deg); }
.service-card:nth-child(7) { transform: rotate(1deg); }
.service-card:nth-child(8) { transform: rotate(-1deg); }

.service-card:hover {
  transform: translate(3px, 3px) rotate(0deg);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s;
}

.service-card:hover .service-icon {
  transform: rotate(12deg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-price {
  display: inline-block;
  background: #f0f0f0;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--black);
}

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

/* ===== FEATURES (Why Choose Us) ===== */
.features {
  padding: 80px 0;
  background: var(--white);
  border-bottom: var(--border);
}

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

.feature-card {
  background: var(--white);
  border: var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  position: relative;
}

.feature-card:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-hover);
}

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s;
}

.feature-card:hover .feature-icon {
  transform: rotate(12deg);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
  padding: 80px 0;
  background: #f9f9f9;
  border-bottom: var(--border);
}

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

.process-line {
  display: none;
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 4px;
  background: var(--black);
}

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

.process-number {
  width: 80px;
  height: 80px;
  background: var(--green);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--green);
}

.testimonials .section-badge {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-desc {
  color: rgba(255,255,255,0.6);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 32px;
  transition: all 0.2s;
}

.testimonial-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translate(-3px, -3px);
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
  color: #FFD700;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--green);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--black);
  font-size: 1rem;
}

.testimonial-author-info h4 {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  background: var(--white);
  border-bottom: var(--border);
}

.contact-box {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border: var(--border);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-dark:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-hover);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
  border-top: 4px solid var(--green);
}

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

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--green);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--black);
  color: var(--green);
}

.footer-col h4 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--green);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 { font-size: 2.8rem; }

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

  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }

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

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

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

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-cta.desktop { display: none; }
  .hamburger { display: flex; }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: var(--border);
    padding: 24px;
    gap: 16px;
  }

  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }

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

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

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

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

  .contact-box {
    padding: 24px;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) {
  .process-line {
    display: block;
  }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
