/*
  File: main.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Main SCSS import file for JAM Systems
*/
/*
  File: _variables.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Design system variables for JAM Systems
*/
/*
  File: _functions.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Custom SCSS functions for JAM Systems
*/
/*
  File: _mixins.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Reusable mixins for JAM Systems
*/
/*
  File: _reset.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: CSS reset and normalize for JAM Systems
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&family=Poppins:wght@700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus {
  outline: 2px solid #7A5FB9;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*
  File: _typography.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Typography styles for JAM Systems
*/
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

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

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

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

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-primary {
  color: #000000;
}

.text-secondary {
  color: #2D2D2D;
}

.text-light {
  color: #8C9299;
}

.text-muted {
  color: #B0B4BA;
}

.text-brand {
  color: #7A5FB9;
}

.gradient-text {
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
  File: _global.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Global styles for JAM Systems
*/
main {
  margin-top: 80px;
  min-height: calc(100vh - 160px);
}

.section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.cta-button:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #7A5FB9;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #7A5FB9;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1070;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 6px;
}

/*
  File: _header.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Header and navigation styles for JAM Systems - XD Design Match
*/
header {
  background: #7A5FB9;
  padding: 1.5rem 0;
  position: fixed;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}
header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header-container {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .header-container {
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }
}

.logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
nav a {
  color: white;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
nav a.active {
  background-color: white;
  color: #7A5FB9;
  font-weight: 600;
}

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

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #7A5FB9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: white;
  text-decoration: none;
}
.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav a.active {
  background-color: white;
  color: #7A5FB9;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }
  .logo {
    height: 40px;
  }
}
@media (min-width: 1024px) {
  nav {
    gap: 3rem;
  }
}
@media (min-width: 1200px) {
  .header-container {
    padding: 0 4rem;
  }
}
/*
  File: _footer.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Footer styles for JAM Systems - XD Design Match
*/
footer {
  background: #000000;
  color: white;
  padding: 3rem 0 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-content {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  position: relative;
}
@media (min-width: 1200px) {
  .footer-content {
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer-content {
    padding: 0 1rem;
  }
}

.footer-main {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}
.footer-brand p {
  color: #8C9299;
  line-height: 1.6;
  margin: 0;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-links-section {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  max-width: 50%;
  margin-left: auto;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer-column a {
  display: block;
  color: #8C9299;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: white;
}

.footer-bottom {
  width: 100%;
  text-align: right;
}
.footer-bottom p {
  color: #8C9299;
  margin: 0;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: #8C9299;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-links-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-links-section {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 2.5fr;
  }
  .footer-links-section {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (min-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 3fr;
  }
}
/*
  File: _grid.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Grid and layout utilities for JAM Systems
*/
.grid {
  display: grid;
}

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

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gap-xs {
  gap: 0.5rem;
}

.gap-sm {
  gap: 1rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2rem;
}

.gap-xl {
  gap: 3rem;
}

.gap-2xl {
  gap: 4rem;
}

.gap-3xl {
  gap: 6rem;
}

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.space-y-xs > * + * {
  margin-top: 0.5rem;
}

.space-y-sm > * + * {
  margin-top: 1rem;
}

.space-y-md > * + * {
  margin-top: 1.5rem;
}

.space-y-lg > * + * {
  margin-top: 2rem;
}

.space-x-xs > * + * {
  margin-left: 0.5rem;
}

.space-x-sm > * + * {
  margin-left: 1rem;
}

.space-x-md > * + * {
  margin-left: 1.5rem;
}

.space-x-lg > * + * {
  margin-left: 2rem;
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  .grid-auto-fit,
  .grid-auto-fill {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .flex-row {
    flex-direction: column;
  }
}
/*
  File: _buttons.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Button components for JAM Systems
*/
button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
  color: white;
}
button:hover {
  background: linear-gradient(135deg, #5E47A1 0%, #7A5FB9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
button:active {
  transform: translateY(0);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(122, 95, 185, 0.3);
}
.cta-button.primary:hover {
  background: linear-gradient(135deg, #5E47A1 0%, #7A5FB9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 95, 185, 0.4);
}
.cta-button.secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  color: #7A5FB9;
  border: 2px solid #7A5FB9;
}
.cta-button.secondary:hover {
  background: #E2DAF6;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

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

.btn-outline {
  background: transparent;
  color: #7A5FB9;
  border: 2px solid #7A5FB9;
}
.btn-outline:hover {
  background: #7A5FB9;
  color: white;
}

.btn-ghost {
  background: transparent;
  color: #7A5FB9;
}
.btn-ghost:hover {
  background: #E2DAF6;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}
.btn-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}
.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-disabled,
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.btn-disabled:hover,
button:disabled:hover {
  transform: none !important;
}

.btn-loading {
  position: relative;
  color: transparent;
}
.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 480px) {
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}
/*
  File: _cards.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Card components for JAM Systems
*/
.content-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E8EAED;
  transition: all 0.3s ease;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}
.feature-section.reverse {
  direction: rtl;
}
.feature-section.reverse > * {
  direction: ltr;
}

.feature-badge {
  display: inline-block;
  background: #E2DAF6;
  color: #7A5FB9;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.feature-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.feature-content p {
  font-size: 1.125rem;
  color: #2D2D2D;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}
.feature-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #2D2D2D;
}

.feature-cta {
  color: #7A5FB9;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.feature-cta:hover {
  color: #5E47A1;
  text-decoration: underline;
}

.feature-image-placeholder,
.testimonial-photo-placeholder,
.product-image-placeholder,
.decoration-placeholder {
  background: #F1F2F3;
  border: 2px dashed #D2D5D9;
  border-radius: 0.75rem;
  padding: 3rem;
  text-align: center;
  color: #B0B4BA;
  transition: all 0.3s ease;
}

.feature-image-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.feature-image-placeholder:hover {
  background: #E2DAF6;
  border-color: #7A5FB9;
}
.feature-image-placeholder p {
  font-weight: 600;
  margin-bottom: 0;
}
.feature-image-placeholder small {
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .feature-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .feature-section.reverse {
    direction: ltr;
  }
}
/*
  File: _forms.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Form components for JAM Systems
*/
input,
textarea,
select {
  width: 100%;
  padding: 1.5rem 1rem;
  border: 2px solid #D2D5D9;
  border-radius: 0.5rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #7A5FB9;
  box-shadow: 0 0 0 3px rgba(122, 95, 185, 0.1);
}
input.error,
textarea.error,
select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #000000;
}
.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-group.checkbox input[type=checkbox] {
  width: auto;
}
.form-group.checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-inline {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: white;
}

.form-subtext {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success-message {
  background: #7A5FB9;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.demo-form-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-group-inline {
    flex-direction: column;
  }
}
/*
  File: _hero.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Hero section components for JAM Systems - XD Design Match
*/
.hero-main {
  background: #E6D9F5;
  padding: 6rem 0;
  min-height: 600px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-image-placeholder {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-text .cta-button {
  background: white;
  color: #2D2D2D;
  border: 2px solid #2D2D2D;
  border-radius: 25px;
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.hero-text .cta-button:hover {
  background: #2D2D2D;
  color: white;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }
  .hero-logo {
    max-width: 250px;
    max-height: 350px;
  }
}
@media (max-width: 480px) {
  .hero-main {
    padding: 3rem 0;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  .hero-logo {
    max-width: 200px;
    max-height: 280px;
  }
}
/*
  File: _jam-jars.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-27
  Description: Enhanced Mason jar components for JAM Systems divisions
*/
.jam-jars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.jam-jar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.jam-jar:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.jar-lid {
  width: 90%;
  height: 35px;
  background: linear-gradient(145deg, #d4af37, #b8941f);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1060;
  border: 2px solid #a67c00;
}

.lid-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  color: #7A5FB9;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #7A5FB9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255, 255, 255, 0.15) 4px, rgba(255, 255, 255, 0.15) 8px);
  border-radius: inherit;
}

.jar-neck {
  width: 85%;
  height: 25px;
  background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
  border: 2px solid #d0d0d0;
  border-bottom: none;
  position: relative;
  z-index: 1020;
}
.jar-neck::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(to bottom, transparent 0px, rgba(0, 0, 0, 0.1) 1px, rgba(0, 0, 0, 0.1) 2px, transparent 3px, transparent 6px);
}

.jar-body {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.8) 100%), radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.8), transparent 50%);
  border: 3px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 25px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.08), inset 3px 0 10px rgba(0, 0, 0, 0.05), inset -3px 0 10px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(1px);
}
.jar-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
  border-radius: 0 0 15px 0;
  pointer-events: none;
  z-index: 1;
}
.jar-body::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 15%;
  height: 40%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.mason-text {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%) rotate(-90deg);
  font-family: serif;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  font-weight: bold;
  pointer-events: none;
  z-index: 1;
}

.jam-content {
  padding: 3rem;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.strawberry-jam {
  background: radial-gradient(ellipse at center bottom, rgba(255, 182, 193, 0.4) 0%, rgba(255, 160, 180, 0.3) 30%, rgba(255, 140, 160, 0.2) 60%, rgba(255, 120, 140, 0.1) 85%, transparent 100%), linear-gradient(to top, rgba(255, 160, 180, 0.3) 0%, transparent 40%);
}

.grape-jam {
  background: radial-gradient(ellipse at center bottom, rgba(147, 112, 219, 0.4) 0%, rgba(138, 100, 200, 0.3) 30%, rgba(128, 90, 180, 0.2) 60%, rgba(118, 80, 160, 0.1) 85%, transparent 100%), linear-gradient(to top, rgba(138, 100, 200, 0.3) 0%, transparent 40%);
}

.tech-jam {
  background: radial-gradient(ellipse at center bottom, rgba(122, 95, 185, 0.8) 0%, rgba(122, 95, 185, 0.6) 30%, rgba(122, 95, 185, 0.4) 60%, rgba(122, 95, 185, 0.2) 85%, transparent 100%), linear-gradient(to top, rgba(122, 95, 185, 0.6) 0%, transparent 40%);
}

.jar-base {
  width: 95%;
  height: 15px;
  background: linear-gradient(145deg, #f5f5f5, #d0d0d0);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  margin-top: -8px;
  z-index: 1;
}

.jam-jar .division-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
  z-index: 3;
  position: relative;
}
.jam-jar h3 {
  color: #7A5FB9;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  z-index: 3;
  position: relative;
}
.jam-jar .division-tagline {
  color: #8C9299;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
  z-index: 3;
  position: relative;
}
.jam-jar p {
  color: #2D2D2D;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  z-index: 3;
  position: relative;
}
.jam-jar .division-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 3;
  position: relative;
}
.jam-jar .highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #2D2D2D;
  font-weight: 500;
}
.jam-jar .highlight-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.jam-jar .division-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(122, 95, 185, 0.3);
  margin-top: auto;
  z-index: 3;
  position: relative;
}
.jam-jar .division-cta:hover {
  background: linear-gradient(135deg, #5E47A1 0%, #7A5FB9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 95, 185, 0.4);
}

@media (max-width: 768px) {
  .jam-jars-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 1.5rem 0;
  }
  .jam-jar {
    max-width: 100%;
  }
  .jar-body {
    min-height: 450px;
  }
  .jam-content {
    padding: 2rem;
  }
  .jam-jar .division-highlights {
    padding: 1.5rem;
  }
}
.hero-jam-jar {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.2rem;
  color: #2D2D2D;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.tech-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circuit-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
}
.circuit-line.horizontal {
  width: 60%;
  height: 3px;
  top: 40%;
  left: 20%;
}
.circuit-line.vertical {
  width: 3px;
  height: 40%;
  top: 30%;
  left: 50%;
}

.circuit-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
}
.circuit-node:first-child {
  top: 36%;
  left: 18%;
}
.circuit-node.node-2 {
  top: 36%;
  right: 18%;
}
.circuit-node.node-3 {
  top: 25%;
  left: 47%;
}

.tech-face {
  position: relative;
  z-index: 10;
}
.tech-face .eye {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.tech-face .eye.left-eye {
  top: 0;
  left: -15px;
}
.tech-face .eye.right-eye {
  top: 0;
  right: -15px;
}
.tech-face .smile {
  width: 25px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-top: none;
  border-radius: 0 0 25px 25px;
  margin-top: 15px;
  margin-left: -12px;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 3rem;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
}
/*
  File: _app-showcase.scss
  Author: Aiden Rubbo
  Date Created: 2025-08-27
  Date Last Modified: 2025-08-28
  Description: FIRST Nevada App showcase component styles with automatic carousel functionality
*/
.first-nevada-showcase {
  background: #7A5FB9;
  padding: 6rem 0;
}

.app-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.app-link {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.app-link:hover {
  transform: translateY(-5px);
}
.app-link:hover .app-placeholder {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.app-placeholder {
  width: 300px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.app-placeholder p {
  margin: 0;
  line-height: 1.6;
}
.app-placeholder.large {
  width: 400px;
  height: 600px;
  background: #B19CD9;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

@media (max-width: 768px) {
  .app-placeholder {
    width: 250px;
    height: 400px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .first-nevada-showcase {
    padding: 3rem 0;
  }
  .app-placeholder {
    width: 200px;
    height: 350px;
    font-size: 0.95rem;
  }
  .app-placeholder.large {
    width: 250px;
    height: 400px;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #7A5FB9;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card p {
  color: #2D2D2D;
  line-height: 1.6;
  margin: 0;
}

.app-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.app-buttons .app-store-btn {
  flex: 1;
  min-width: 200px;
}

.app-store-badge {
  display: inline-block;
  transition: all 0.3s ease;
}
.app-store-badge img {
  height: 60px;
  width: 200px;
  object-fit: contain;
  display: block;
}
.app-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.app-store-badge.apple-store img {
  height: 60px;
  width: 200px;
  object-fit: contain;
}
.app-store-badge.google-play img {
  height: 87px;
  width: 260px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .app-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .app-buttons .app-store-btn {
    width: 100%;
  }
  .app-buttons .app-store-badge {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card {
    padding: 2rem;
  }
}
.app-carousel {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 25px;
  background: #1a1a1a;
  padding: 2px;
}
.app-carousel:hover {
  transform: translateY(-5px);
}
.large .app-carousel {
  width: 350px;
  height: 700px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 23px;
  overflow: hidden;
  background: #000;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 23px;
}
.app-screenshot.large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 23px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}
.dot.active {
  background: rgb(255, 255, 255);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .app-carousel {
    width: 250px;
    height: 400px;
  }
  .large .app-carousel {
    width: 350px;
    height: 500px;
  }
}
@media (max-width: 480px) {
  .app-carousel {
    width: 200px;
    height: 350px;
  }
  .large .app-carousel {
    width: 250px;
    height: 400px;
  }
}
/*
  File: _cta.scss
  Author: Aiden Rubbo  
  Date Created: 2025-08-15
  Date Last Modified: 2025-08-15
  Description: Call-to-action components for JAM Systems
*/
.cta-section {
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.simple-cta {
  text-align: center;
  margin-top: 2rem;
}
.simple-cta .cta-button {
  font-size: 1.125rem;
  padding: 1.5rem 3rem;
}

.cta-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.link-button {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}
.link-button:hover {
  opacity: 0.8;
}

.cta-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  opacity: 0.1;
}

.decoration-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-info {
  margin: 3rem 0;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  max-width: 400px;
  margin: 0 auto;
}
.contact-method .contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details {
  text-align: left;
}
.contact-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: white;
}

.contact-email-link {
  color: white;
  font-family: monospace;
  font-size: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.contact-email-link:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .contact-details {
    text-align: center;
  }
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.division-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E8EAED;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.division-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.division-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #7A5FB9 0%, #A18DD6 100%);
}
.division-card h3 {
  color: #7A5FB9;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.division-card p {
  color: #2D2D2D;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.division-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.division-tagline {
  color: #8C9299;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.division-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  background: #F1F2F3;
  padding: 2rem;
  border-radius: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #2D2D2D;
  font-weight: 500;
}

.highlight-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.division-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7A5FB9;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
}
.division-cta:hover {
  background: #E2DAF6;
  border-color: #7A5FB9;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .division-card {
    padding: 2rem;
  }
  .division-highlights {
    padding: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
