/* FirmAware - Sovereign AI Operating System */
/* Global Styles */

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

:root {
  --mw-green: #006241;
  --mw-green-light: #00a86b;
  --mw-silver: #E2E8F0;
  --mw-teal: #00D2BE;
  --mw-purple: #5D3FD3;
  --mw-grey: #1A202C;
  --mw-gold: #D4AF37;
  --mw-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #E2E8F0;
  color: #1A202C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #E2E8F0;
}

::-webkit-scrollbar-thumb {
  background: #006241;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #004d33;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--mw-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--mw-green);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.6rem;
  color: var(--mw-teal);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mw-grey);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--mw-green);
  background: rgba(226, 232, 240, 0.5);
}

.nav-link.active {
  color: var(--mw-green);
  background: rgba(226, 232, 240, 0.5);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--mw-silver);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(226, 232, 240, 0.5);
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--mw-grey);
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: rgba(26, 32, 44, 0.5);
  margin-top: 0.125rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--mw-teal);
  color: var(--mw-grey);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #00bfad;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(0, 210, 190, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--mw-green);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #004d33;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--mw-green);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 2px solid var(--mw-green);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--mw-green);
  color: white;
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white-outline:hover {
  background: white;
  color: var(--mw-green);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--mw-green);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 1.5rem;
  background: white;
  border-top: 1px solid var(--mw-silver);
}

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

.mobile-menu-section {
  margin-bottom: 1rem;
}

.mobile-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(26, 32, 44, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--mw-grey);
  transition: all 0.2s;
}

.mobile-menu-link:hover {
  background: rgba(226, 232, 240, 0.5);
}

/* Main Content */
.main-content {
  padding-top: 80px;
}

/* Masthead */
.masthead {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.masthead-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.masthead-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masthead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--mw-grey), rgba(26, 32, 44, 0.85), rgba(26, 32, 44, 0.4));
}

.masthead-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

.pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(0, 210, 190, 0.2);
  color: var(--mw-teal);
  border: 1px solid rgba(0, 210, 190, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.masthead-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.masthead-title span {
  color: var(--mw-teal);
}

.masthead-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.masthead-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--mw-grey);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 98, 65, 0.9) 0%, rgba(26, 32, 44, 0.95) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: var(--mw-teal);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--mw-teal);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.hero-text strong {
  color: white;
  font-size: 1.25rem;
}

.hero-highlight {
  color: var(--mw-teal);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-form {
  position: relative;
}

.hero-form-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(0, 210, 190, 0.2);
  border-radius: 1.5rem;
  filter: blur(20px);
}

.hero-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mw-green);
  margin-bottom: 0.5rem;
}

.hero-form-subtitle {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.6);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mw-silver);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  background: rgba(226, 232, 240, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: var(--mw-teal);
  box-shadow: 0 0 0 3px rgba(0, 210, 190, 0.2);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mw-silver);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  background: white;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--mw-teal);
  box-shadow: 0 0 0 3px rgba(0, 210, 190, 0.2);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mw-silver);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--mw-teal);
  box-shadow: 0 0 0 3px rgba(0, 210, 190, 0.2);
}

/* Sovereign Strip */
.sovereign-strip {
  background: var(--mw-green);
  padding: 1rem 0;
}

.sovereign-strip-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.sovereign-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.sovereign-item svg {
  width: 16px;
  height: 16px;
  color: var(--mw-teal);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(226, 232, 240, 0.3);
}

.section-dark {
  background: var(--mw-grey);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--mw-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(26, 32, 44, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--mw-teal);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Feature Cards */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  background: rgba(226, 232, 240, 0.5);
  border: 1px solid var(--mw-silver);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--mw-purple);
  box-shadow: 0 20px 40px -12px rgba(0, 98, 65, 0.25);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--mw-green);
  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 600;
  color: var(--mw-grey);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
  line-height: 1.6;
}

/* Product Cards */
.products-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 98, 65, 0.1);
  transition: all 0.3s;
  border-top: 4px solid var(--mw-green);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 98, 65, 0.25);
}

.product-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.product-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--mw-teal);
  color: var(--mw-grey);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mw-green);
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mw-green);
  font-weight: 600;
  font-size: 0.875rem;
}

.product-card-link:hover {
  color: var(--mw-teal);
}

/* Solution Cards */
.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

.solution-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.solution-card:hover {
  border-color: rgba(0, 210, 190, 0.4);
  box-shadow: 0 0 40px rgba(0, 210, 190, 0.1);
}

.solution-icon {
  width: 40px;
  height: 40px;
  color: var(--mw-teal);
  margin-bottom: 1rem;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.solution-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mw-teal);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 98, 65, 0.1);
  position: relative;
}

.pricing-card-popular {
  border: 2px solid var(--mw-teal);
  box-shadow: 0 0 40px rgba(0, 210, 190, 0.2);
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.75rem;
  background: var(--mw-teal);
  color: var(--mw-grey);
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom-left-radius: 0.5rem;
}

.pricing-card-header {
  padding: 2rem;
  border-bottom: 1px solid var(--mw-silver);
}

.pricing-card-tier {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--mw-silver);
  color: rgba(26, 32, 44, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pricing-card-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--mw-green);
  line-height: 1;
}

.pricing-card-period {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.5);
}

.pricing-card-body {
  padding: 2rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mw-silver);
  font-size: 0.875rem;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item-label {
  color: rgba(26, 32, 44, 0.7);
}

.pricing-item-value {
  font-weight: 600;
  color: var(--mw-grey);
}

/* Code Block */
.code-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #334155;
}

.code-block-dark {
  background: #0f1419;
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 98, 65, 0.1);
}

.comparison-table th {
  background: var(--mw-grey);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-table th:nth-child(4) {
  text-align: center;
  color: var(--mw-teal);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--mw-silver);
}

.comparison-table tr:nth-child(even) {
  background: #f8fafc;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--mw-green);
}

.x-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
}

/* Calendar Styles */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.calendar-date {
  padding: 1rem;
  border: 1px solid var(--mw-silver);
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.calendar-date:hover {
  border-color: var(--mw-green);
  background: rgba(0, 98, 65, 0.05);
}

.calendar-date.selected {
  background: var(--mw-green);
  border-color: var(--mw-green);
  color: white;
}

.calendar-date-day {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.calendar-date-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.calendar-date-month {
  font-size: 0.75rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.time-slot {
  padding: 0.75rem;
  border: 1px solid var(--mw-silver);
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.time-slot:hover {
  border-color: var(--mw-green);
  background: rgba(0, 98, 65, 0.05);
}

.time-slot.selected {
  background: var(--mw-green);
  border-color: var(--mw-green);
  color: white;
}

/* Footer */
.footer {
  background: var(--mw-grey);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--mw-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.footer-logo-subtitle {
  font-size: 0.6rem;
  color: var(--mw-teal);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: var(--mw-teal);
  color: var(--mw-grey);
}

.footer-title {
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--mw-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-badge-separator {
  color: var(--mw-teal);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .masthead-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .masthead-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .masthead-title {
    font-size: 4rem;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: var(--mw-grey);
  color: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--mw-teal);
  z-index: 9999;
  display: none;
}

.toast.show {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}
