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

:root {
  /* Brand Colors */
  --primary-orange: #f14e23;
  --primary-light-blue: #abcee1; /* Used for backgrounds/cards */
  --primary-dark-blue: #34617f; /* Used for headings & text */
  --text-dark: #2A3B47;
  --text-muted: #556B7A;
  
  --bg-color: #F8FBFE;
  --white: #FFFFFF;
  --border-color: #E2ECF2;

  /* Typography */
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 10px rgba(52, 97, 127, 0.05);
  --shadow-md: 0 10px 30px rgba(52, 97, 127, 0.1);
  --shadow-hover: 0 15px 35px rgba(52, 97, 127, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400; /* Regular */
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark-blue);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(241, 78, 35, 0.25);
}

.btn-primary:hover {
  background: #D94017;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 78, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark-blue);
  border: 1px solid var(--primary-light-blue);
}

.btn-outline:hover {
  background: var(--primary-light-blue);
}

/* Link with Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.95rem;
}

.link-arrow:hover {
  gap: 12px;
}

/* Base Sections */
section {
  padding: 80px 0;
}

.bg-muted {
  background-color: var(--bg-color);
}

/* Base Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--primary-dark-blue);
  font-size: 0.9rem;
}

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

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