/* Mangisdream Business Solutions - Global CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
  --blue: #0A66C2;
  --green: #22C55E;
  --black: #0F172A;
  --white: #FFFFFF;
  --gray-light: #F3F4F6;
  --gray-dark: #6B7280;
  --radius: 12px;
  --max-width: 1200px;
  --gap: 24px;
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--white);
  line-height: 1.6;
}

/* SPLASH SCREEN */
.splash-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0A1930 0%, #0E2E5C 50%, #0A2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  animation: splashFadeIn 0.4s ease-out;
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.splash-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(245, 158, 11, 0.2);
  animation: splashLogoPulse 1.5s ease-in-out infinite;
}

@keyframes splashLogoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
  }
}

.splash-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.splash-text {
  color: white;
}

.splash-text h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.splash-text p {
  margin: 8px 0 0;
  font-size: 1.1rem;
  color: rgba(245, 158, 11, 0.9);
  letter-spacing: 2px;
  font-weight: 600;
}

.splash-loader {
  width: 140px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #F97316, #F59E0B);
  border-radius: 2px;
  animation: loadingAnimation 2s ease-in-out infinite;
}

@keyframes loadingAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* TYPOGRAPHY */
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

p {
  margin: 0 0 12px;
  line-height: 1.6;
}

p:last-child {
  margin-bottom: 0;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background: transparent;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 16px;
}

.brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 200ms;
}

.brand:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a, .nav-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 200ms;
  position: relative;
  padding: 4px 0;
}

.nav a::after, .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 250ms ease-out;
  border-radius: 2px;
}

.nav a:hover::after, .nav-links a:hover::after {
  width: 100%;
}

.nav a:hover, .nav-links a:hover {
  color: #fff;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(20px);
}

.nav.scrolled .nav a,
.nav.scrolled .nav-links a {
  color: var(--black);
}

.nav.scrolled .nav a:hover,
.nav.scrolled .nav-links a:hover {
  color: var(--blue);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 200ms;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav.scrolled .menu-btn {
  color: var(--black);
  background: rgba(10, 102, 194, 0.08);
  border-color: rgba(10, 102, 194, 0.15);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  padding-top: 72px;
  margin-top: -72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.85), rgba(34, 197, 94, 0.5));
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero h1 {
  color: var(--white);
  margin: 0 0 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.hero-side {
  text-align: center;
}

.hero-side-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-side-card strong {
  display: block;
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 200ms;
}

.hero-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-side a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 600;
}

/* PROBLEMS WE SOLVE */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(10, 102, 194, 0.08);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 102, 194, 0.15);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--black);
}

.problem-card p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.text-center {
  text-align: center;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.3);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--gray-dark);
  margin: 0;
}

/* CLIENT LOGOS */
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.client-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: all 300ms;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.08);
  position: relative;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(10, 102, 194, 0.15);
}

.testimonial-logo {
  margin-bottom: 24px;
}

.testimonial-logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
}

/* CTA / BUTTONS */
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::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 600ms ease-out;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #1ea550);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1ea550, #1a8f44);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue), #0850a0);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0850a0, #064080);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* SECTIONS */
section {
  padding: 80px 0;
  position: relative;
}

section.alt {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.03), rgba(34, 197, 94, 0.03));
}

.underline {
  width: 64px;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 100px;
  margin: 14px 0 32px;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-top: 72px;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* GRIDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin: 32px 0;
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 102, 194, 0.08);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 102, 194, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img img {
  transform: scale(1.1);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card .btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
}

/* PRICING CARDS */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.08);
  border: 2px solid transparent;
  transition: transform 220ms, box-shadow 220ms, border-color 220ms;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--green);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.16);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin: 16px 0 4px;
}

.pricing-card .price-period {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 16px;
}

/* SERVICE ITEMS (All Services Grid) */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-item {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(10, 102, 194, 0.15);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform 300ms ease-out;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(34, 197, 94, 0.1));
}

.service-item h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.service-item p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  flex-grow: 1;
}

.service-item .from-price {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-item .btn {
  font-size: 0.95rem;
  padding: 12px 20px;
  width: 100%;
  margin-top: auto;
}

/* CONTACT CARDS */
.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.08);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.contact-list div {
  font-size: 0.95rem;
}

.contact-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 50%;
  transition: background 200ms, transform 200ms;
}

.social-links a:hover {
  background: var(--blue);
  transform: scale(1.1);
}

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row .full {
  grid-column: 1 / -1;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 200ms;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  background: #F9FAFB;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 200ms;
}

button[type="submit"]:hover {
  background: #0850a0;
}

.form-status {
  color: var(--green);
  font-weight: 700;
  margin-left: 12px;
  display: none;
}

.form-status.show {
  display: inline-block;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check svg {
  flex: 0 0 28px;
  margin-top: 2px;
}

/* ABOUT IMAGE */
.about-img img {
  width: 100%;
  border-radius: var(--radius);
  height: auto;
  object-fit: cover;
  display: block;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0a1930, #0f172a);
  color: var(--white);
  padding: 64px 0 32px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
}

footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 200ms;
}

footer a:hover {
  border-color: var(--green);
  color: var(--green);
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 50;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: whpulse 2.5s ease-in-out infinite;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whpulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
  }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid > * {
    text-align: center;
  }

  .hero .container {
    padding-top: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 32px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
    z-index: 39;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 102, 194, 0.1);
    color: var(--black) !important;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.popular {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .all-services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    flex-direction: column;
  }

  .cta .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: 80px;
    margin-top: 0;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-side-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    height: 70px;
    padding: 0 12px;
  }

  .logo-img {
    height: 40px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
