/* Boomerang Software - Static Website Styles */
/* Easily editable CSS - modify colors, fonts, and spacing as needed */

/* ========== CUSTOMIZABLE VARIABLES ========== */
:root {
  /* Primary Colors - Change these to match your brand */
  --primary-color: #0066cc;
  --primary-hover: #0052a3;
  --primary-light: rgba(0, 102, 204, 0.1);
  
  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #888888;
  --text-light: #ffffff;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-muted: #f3f4f6;
  --bg-card: #fafafa;
  
  /* Border Colors */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  
  /* Fonts */
  --font-primary: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}

p {
  color: var(--text-secondary);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  margin-bottom: var(--spacing-md);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

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

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background-color: var(--bg-muted);
  color: var(--text-primary);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

/* ========== CARDS ========== */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-content {
  padding: var(--spacing-lg);
}

.card-hover:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ========== BADGES ========== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: var(--bg-muted);
  color: var(--text-secondary);
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--spacing-md);
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: var(--spacing-xs);
}

@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: color 0.2s;
}

.navbar-link:hover {
  color: var(--text-primary);
  background-color: var(--bg-muted);
}

.navbar-cta {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-cta {
    display: block;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: var(--spacing-md);
  border-top: 1px solid var(--border-light);
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
}

.mobile-menu a:hover {
  background-color: var(--bg-muted);
  color: var(--text-primary);
}

/* ========== HERO SECTION ========== */
.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 50%, rgba(100, 150, 200, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: var(--spacing-lg);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.hero-feature svg {
  color: var(--primary-color);
}

/* ========== PRODUCTS SECTION ========== */
.product-card .card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

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

.product-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-sm);
}

.product-icon {
  padding: 0.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
}

.product-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.product-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.product-features svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== FEATURE BLOCKS ========== */
.feature-block {
  display: grid;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

@media (min-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }
}

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

.feature-block.reverse .feature-image {
  order: 1;
}

@media (min-width: 1024px) {
  .feature-block.reverse .feature-image {
    order: 2;
  }
  .feature-block.reverse .feature-content {
    order: 1;
  }
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.feature-content h3 {
  margin-bottom: var(--spacing-md);
}

.feature-content > p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

.feature-list {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}

.feature-list .icon-wrapper {
  padding: 0.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.feature-list span {
  padding-top: 0.25rem;
}

/* ========== RESOURCES ACCORDION ========== */
.resources-grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

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

.resource-card {
  cursor: pointer;
}

.resource-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

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

.resource-title .icon-wrapper {
  padding: 0.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
}

.resource-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.resource-title h4 {
  font-size: 1rem;
  font-weight: 600;
}

.resource-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.resource-card.open .resource-toggle svg {
  transform: rotate(180deg);
}

.resource-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.resource-items {
  display: none;
  border-top: 1px solid var(--border-light);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.resource-card.open .resource-items {
  display: block;
}

.resource-items ul {
  list-style: none;
}

.resource-items li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.resource-items svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== SUCCESS CASES ========== */
.cases-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(2, 1fr);
}

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

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

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

.case-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.case-card:hover {
  box-shadow: var(--shadow-md);
}

.case-logo {
  height: 48px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.case-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.case-industry {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========== INTEGRATIONS ========== */
.integrations-grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

.integration-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.integration-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.integration-card h4 {
  margin-bottom: var(--spacing-sm);
}

.integration-card p {
  font-size: 0.875rem;
}

/* ========== PRICING ========== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.pricing-toggle-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.pricing-toggle-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.pricing-card {
  padding: var(--spacing-xl);
}

.pricing-badge {
  margin-bottom: var(--spacing-md);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.pricing-price {
  margin-bottom: var(--spacing-lg);
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-info {
  text-align: center;
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background-color: var(--bg-muted);
  border-radius: var(--radius-lg);
}

.pricing-info p {
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-info p:last-child {
  margin-bottom: 0;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--spacing-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper h3 {
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.offices-wrapper h3 {
  margin-bottom: var(--spacing-lg);
}

.offices-grid {
  display: grid;
  gap: var(--spacing-lg);
}

.office-card {
  padding: var(--spacing-lg);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}

.office-header .icon-wrapper {
  padding: 0.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
}

.office-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.office-header h4 {
  font-size: 1.125rem;
}

.office-info {
  font-style: normal;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.office-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.office-info-item a:hover {
  color: var(--text-primary);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 40px;
  margin-bottom: var(--spacing-md);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 280px;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

/* ========== PRIVACY/ABOUT PAGES ========== */
.page-header {
  padding-top: 6rem;
  padding-bottom: var(--spacing-lg);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.back-link:hover {
  color: var(--text-primary);
}

.page-title {
  margin-bottom: var(--spacing-lg);
}

.content-section {
  margin-bottom: var(--spacing-xl);
}

.content-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.content-section p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.content-section ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content-section li {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.contact-box {
  background-color: var(--bg-muted);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
}

.contact-box p {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

.value-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.value-card h4 {
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  font-size: 0.875rem;
}

/* CTA Box */
.cta-box {
  text-align: center;
  padding: var(--spacing-2xl);
  background-color: var(--primary-light);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: var(--radius-lg);
}

.cta-box h3 {
  margin-bottom: var(--spacing-md);
}

.cta-box p {
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== UTILITIES ========== */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

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

.hidden {
  display: none;
}

/* ========== SVG ICONS (inline) ========== */
/* Icons are embedded inline as SVG in the HTML */
