@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Variables & Reset (from main website) */
:root {
  --color-bg: #FDFDFD;
  --color-bg-alt: #F3F4F6;
  --color-text: #111827;
  --color-text-light: #4B5563;
  --color-primary: #0056FF;
  --color-primary-hover: #0046CC;
  --color-accent: #00E5FF;
  --font-main: 'Inter', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --radius-md: 12px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation (from main website) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  background-color: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(253, 253, 253, 0.95);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo span {
  color: var(--color-primary);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 86, 255, 0.1);
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-nav svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-nav:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

/* Header Styles */
.header {
  text-align: center;
  padding: 140px 20px 50px; /* Padding top adjusted for fixed navbar */
  max-width: 850px;
  margin: 0 auto;
}

.header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.header p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-text-light);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
  margin-bottom: 80px;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Light & Clean Styles */
.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle mouse spotlight in light mode */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(0, 86, 255, 0.035), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 86, 255, 0.06);
}

/* Card Image Styles */
.card-image-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-top {
  display: flex;
  flex-direction: column;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-sky {
  background-color: rgba(0, 86, 255, 0.06);
  color: var(--color-primary);
  border: 1px solid rgba(0, 86, 255, 0.15);
}

.badge-slate {
  background-color: rgba(75, 85, 99, 0.06);
  color: var(--color-text-light);
  border: 1px solid rgba(75, 85, 99, 0.15);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Card CTA Button (matches .btn-outline) */
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  background: transparent;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.card-cta svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
  fill: currentColor;
}

.card-cta:hover {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(0, 86, 255, 0.25);
}

.card-cta:hover svg {
  transform: translateX(4px);
}

/* Conversion Section (alt background) */
.cta-section {
  text-align: center;
  padding: 90px 24px;
  max-width: 850px;
  margin: 20px auto 100px;
  position: relative;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Monumental WhatsApp Button */
.btn-monumental {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
  animation: pulse 2.5s infinite;
}

.btn-monumental svg {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-monumental:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px -5px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px -10px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 10px 30px -10px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px -10px rgba(37, 211, 102, 0.4);
  }
}

/* Footer Styles (from main website) */
.footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-bg-alt);
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.footer-logo span {
  color: var(--color-primary);
}

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

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  opacity: 0.8;
}
