/* Renewal Radar Marketing Website - Bold Asymmetric Design */

:root {
  /* Brand Colors */
  --primary: #1e90ff;
  --primary-dark: #3b86d1;
  --secondary: #00c6ae;
  --secondary-alt: #38ce3c;
  --accent-red: #ff4d6b;
  --accent-fuschia: #ea4c89;
  --accent-purple: #844fc1;
  --success: #21bf06;
  --warning: #ffde73;
  --text: #181824;
  --text-muted: #6c7293;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f7f7f7;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography - Bold & Oversized */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--secondary), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Rotation Utilities */
.rotate-minus-3 { transform: rotate(-3deg); }
.rotate-minus-2 { transform: rotate(-2deg); }
.rotate-minus-1 { transform: rotate(-1deg); }
.rotate-0 { transform: rotate(0deg); }
.rotate-1 { transform: rotate(1deg); }
.rotate-2 { transform: rotate(2deg); }
.rotate-3 { transform: rotate(3deg); }

/* Header / Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Buttons - Bold & Animated */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  font-size: 1.125rem;
  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 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-alt));
  color: white;
  box-shadow: 0 8px 20px rgba(0, 198, 174, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 198, 174, 0.4);
}

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

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

/* Hero Section - Asymmetric & Bold */
.hero {
  min-height: 90vh;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.03) 0%, var(--bg) 50%, rgba(0, 198, 174, 0.03) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.15), transparent);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 198, 174, 0.12), transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--warning), rgba(255, 222, 115, 0.6));
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 222, 115, 0.4);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 222, 115, 0.4); }
  50% { box-shadow: 0 6px 25px rgba(255, 222, 115, 0.6); }
}

.hero-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-bg-skew {
  background: var(--bg-light);
  transform: skewY(-2deg);
  transform-origin: top left;
  padding: 8rem 0;
  margin: 4rem 0;
}

.section-bg-skew > * {
  transform: skewY(2deg);
}

/* Feature Cards - Asymmetric Grid */
.features-grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .features-grid-asymmetric {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid-asymmetric {
    grid-template-columns: 1fr;
  }
}

.feature-card-bold {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card-bold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-bold:hover::before {
  transform: scaleX(1);
}

.feature-card-bold:hover {
  transform: translateY(-15px) rotate(0deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card-bold:nth-child(3n+1) {
  transform: rotate(-1deg);
}

.feature-card-bold:nth-child(3n+2) {
  transform: translateY(20px) rotate(1deg);
}

.feature-card-bold:nth-child(3n+3) {
  transform: rotate(-1deg);
}

.feature-icon-bold {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-icon-bold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  opacity: 0.15;
}

/* Stats Grid - Staggered */
.stats-grid-staggered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .stats-grid-staggered {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat-card-bold {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.stat-card-bold:nth-child(2) {
  transform: translateY(30px);
}

.stat-card-bold:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

.stat-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: bounce-in 0.6s ease-out;
}

@keyframes bounce-in {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1;
}

/* CTA Section - Bold Gradient */
.cta-section-bold {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-fuschia) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 6rem 0;
  border-radius: 40px;
}

.cta-section-bold::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-section-bold::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-section-bold h2 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section-bold p {
  color: rgba(255,255,255,0.95);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Pricing Cards - Offset & Rotated */
.pricing-grid-bold {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.pricing-card-bold {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(-1deg);
}

.pricing-card-bold:nth-child(2) {
  transform: scale(1.08) rotate(0deg);
  border: 4px solid var(--primary);
}

.pricing-card-bold:nth-child(3) {
  transform: rotate(1deg);
}

.pricing-card-bold:hover {
  transform: translateY(-20px) rotate(0deg);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.price-bold {
  font-size: 4rem;
  font-weight: 800;
  margin: 2rem 0;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--text);
  transform: skewY(-2deg);
  transform-origin: top left;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-8 { padding: 4rem 0; }
