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

:root {
  /* Bizlek Brand Colors */
  --primary-green: #72BF44;
  --primary-green-dark: #5A9A35;
  --primary-green-light: #E8F5E0;
  --accent-blue: #4694D0;
  --accent-blue-dark: #3A7AB0;
  --accent-blue-light: #E3F2FC;
  --accent-teal: #00D4AA;
  --success-green: #72BF44;
  --warning-red: #E74C3C;
  --warning-orange: #F39C12;
  --neutral-white: #FFFFFF;
  --neutral-50: #F8F9FA;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  --text-primary: #2C3E50;
  --text-secondary: #7F8C8D;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
  --space-20: 160px;
  --space-24: 192px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Containers */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 960px;
  --container-text: 720px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--neutral-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Typography Classes */
.h1 {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.body-large {
  font-size: 20px;
  line-height: 32px;
}

.body-regular {
  font-size: 18px;
  line-height: 28px;
}

.body-small {
  font-size: 16px;
  line-height: 24px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--neutral-white);
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(114, 191, 68, 0.3);
}

.btn-white {
  background-color: var(--neutral-white);
  color: var(--primary-purple);
}

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

/* Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section-padding {
  padding: var(--space-15) 0;
  /* Custom spacing helper */
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

/* Section Specific Styles (Expanding as we go) */

/* Banner */
.top-banner {
  height: 56px;
  background-color: var(--primary-green);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 var(--space-3);
  font-size: 16px;
  font-weight: 500;
}

.top-banner .btn-banner {
  background: #FFFFFF;
  color: #72BF44;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 16px;
}

/* Header */
.main-header {
  height: 88px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 56px;
  z-index: 999;
}

.header-container {
  max-width: var(--container-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: var(--space-1);
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 500;
}

.nav-item-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 1000px;
  background: #FFFFFF;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.nav-item-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

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

.mega-column h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--neutral-600);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.mega-link {
  display: block;
  padding: 8px 0;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.mega-link:hover {
  color: var(--primary-purple);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

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

.hero-image-container {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  width: 110%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(2deg);
  border: 1px solid var(--neutral-200);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mockup:hover {
  transform: rotateY(-10deg) rotateX(5deg) rotateZ(1deg) scale(1.02);
}

.floating-ui {
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  border: 1px solid var(--neutral-100);
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 32px;
  align-items: center;
  margin-top: 40px;
}

.logo-item {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Service Overview */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F0FF 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.service-card {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Feature Showcase */
.feature-showcase {
  padding: 120px 0;
  background-color: var(--neutral-white);
}

.feature-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 100px;
}

.feature-header h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-primary);
}

.feature-header p {
  font-size: 20px;
  margin-top: 24px;
  line-height: 1.6;
  color: var(--neutral-600);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-bottom: 60px;
  /* Reduced from 120px */
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image-container {
  flex: 1.6;
  /* Exact ratio to match visual balance */
  position: relative;
  padding: 50px;
  background-color: #A3F3EB;
  /* Authentic Cyan background */
  background-image: radial-gradient(#6B7280 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  border-radius: 12px;
}

.feature-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  border: none;
  background: white;
  display: block;
}

.feature-content {
  flex: 1;
}

.feature-icon-wrapper {
  position: relative;
  width: 140px;
  /* Slightly larger to account for badge overhang */
  height: 120px;
  margin-bottom: 24px;
  margin-left: -20px;
  /* Pull left to keep text alignment */
}

.feature-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.feature-icon-wrapper .badge-circle {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: var(--accent-blue-light);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0F2E;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  z-index: 2;
}

.feature-content h3 {
  font-size: 44px;
  /* Larger, bolder as per screenshot */
  font-weight: 850;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-content p {
  font-size: 22px;
  /* Balanced size */
  color: var(--neutral-600);
  line-height: 1.5;
  font-weight: 400;
}

.tagline-handwritten {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: var(--primary-green);
  text-align: center;
  padding: 40px 0 40px;
  /* Reduced bottom padding from 80px */
  background: var(--neutral-white);
  font-weight: 500;
  position: relative;
  display: inline-block;
  width: 100%;
}

.tagline-handwritten::after {
  content: '';
  position: absolute;
  bottom: 20px;
  /* Adjusted position */
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #A3F3EB 20%, #A3F3EB 80%, transparent);
  border-radius: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .h1 {
    font-size: 48px;
  }

  .h2 {
    font-size: 36px;
  }

  .hero-grid {
    gap: 40px;
  }

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

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {

  /* Typography */
  .h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .h2 {
    font-size: 28px;
  }

  .h3 {
    font-size: 20px;
  }

  .body-large {
    font-size: 16px;
  }

  /* Header */
  .main-header {
    padding: 16px 0;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    display: none;
    /* Hide on mobile, would need hamburger menu */
  }

  .header-actions {
    gap: 12px !important;
  }

  .header-actions a:first-child {
    display: none;
    /* Hide phone number on mobile */
  }

  /* Hero Section */
  .hero>div>div:first-child {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .hero .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero image container - mobile adjustments */
  .hero>div>div:first-child>div:nth-child(2) {
    height: 350px !important;
  }

  .hero>div>div:first-child>div:nth-child(2)>img {
    height: 320px !important;
    margin-right: 0 !important;
  }

  /* Dashboard card positioning for mobile */
  .hero>div>div:first-child>div:nth-child(2)>div:nth-child(3) {
    left: 10px !important;
    width: 140px !important;
    top: 10px !important;
  }

  /* Chat bubble positioning for mobile */
  .hero>div>div:first-child>div:nth-child(2)>div:nth-child(4) {
    right: 10px !important;
    bottom: 20px !important;
    max-width: 150px !important;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  /* Feature Showcase */
  .feature-row {
    flex-direction: column !important;
    gap: 32px !important;
    text-align: center;
  }

  .feature-row:nth-child(even) {
    flex-direction: column !important;
  }

  .feature-row img {
    max-width: 100%;
  }

  .feature-content {
    max-width: 100% !important;
  }

  .feature-header h2 {
    font-size: 28px;
  }

  /* Insights Section - target by structure */
  section>div>div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA Section - purple gradient section */
  section[style*="linear-gradient(135deg, #4694D0"]>div>div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  footer>div>div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
}

@media (max-width: 768px) {
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }

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

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

  .container {
    padding: 0 var(--space-3);
  }

  .section-padding {
    padding: var(--space-10) 0;
  }
} 
 