.elementor-8910 .elementor-element.elementor-element-6cecf35{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8910 .elementor-element.elementor-element-6cecf35.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-8910 .elementor-element.elementor-element-641071f{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-8910 .elementor-element.elementor-element-641071f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-8910 .elementor-element.elementor-element-6cecf35{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-641071f *//* L&D Solutions Design System - Professional, Colorful, Interactive */

/* CSS Variables - Design System */
:root {
  /* Brand Colors - Professional L&D Theme */
  --background: hsl(240, 10%, 98%);
  --foreground: hsl(215, 25%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(215, 25%, 15%);
  
  /* Primary - Professional Blue for Trust & Leadership */
  --primary: hsl(217, 91%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(217, 91%, 65%);
  
  /* Secondary - Growth Green for Development */
  --secondary: hsl(142, 76%, 36%);
  --secondary-foreground: hsl(0, 0%, 100%);
  
  /* Accent - Innovation Orange for Energy */
  --accent: hsl(25, 95%, 53%);
  --accent-foreground: hsl(0, 0%, 100%);
  
  /* Learning Purple for Training */
  --learning: hsl(260, 77%, 60%);
  --learning-foreground: hsl(0, 0%, 100%);
  
  --muted: hsl(215, 15%, 95%);
  --muted-foreground: black;
  
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 100%);
  
  --border: hsl(215, 15%, 90%);
  --input: hsl(215, 15%, 90%);
  --ring: hsl(217, 91%, 50%);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(217, 91%, 50%), hsl(260, 77%, 60%));
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(215, 15%, 98%));
  --gradient-accent: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(35, 100%, 60%));
  --gradient-success: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(152, 76%, 45%));
  
  /* Shadows */
  --shadow-card: 0 4px 6px -1px hsla(215, 25%, 15%, 0.1), 0 2px 4px -1px hsla(215, 25%, 15%, 0.06);
  --shadow-elevated: 0 10px 15px -3px hsla(215, 25%, 15%, 0.1), 0 4px 6px -2px hsla(215, 25%, 15%, 0.05);
  --shadow-glow: 0 0 30px hsla(180, 91%, 50%, 0.3);
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  --radius: 0.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: var(--background);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background-color: hsla(240, 10%, 98%, 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
}

/* Icons */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Button Variants */
.btn-professional {
  background-color: var(--background);
  color: var(--foreground);
  border: 2px solid #008080;
}

.btn-professional:hover {
  background: linear-gradient(90deg,rgba(13, 181, 181, 1) 0%, rgba(14, 194, 194, 1) 48%, rgba(5, 227, 227, 1) 100%);
  color: var(--primary-foreground);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-elevated);
  transform: scale(1);
  transition: var(--transition-bounce);
}

.btn-accent:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-hero {
  background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%);
  color: white;
  font-weight: 600;
  transform: scale(1);
  transition: var(--transition-bounce);
}

.btn-hero:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #008080;
background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.2);
}

.hero-container {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 8rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white !important;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  display: block;
  padding-top: 20px;
  color: hsl(25, 95%, 53%);
  font-size: 2.5rem
}

.hero-description {
  font-size: 1.25rem !important;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-credibility {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

.credibility-main {
  font-weight: 500;
}

.credibility-text {
  margin: 0;
}

.credibility-highlight {
  color: var(--accent);
  padding-top: 10px;
  
  font-weight: 500;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  width: 100%;
  height: auto;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-elevated);
}

.hero-badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* Section Styles */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-muted {
  background-color: hsla(215, 15%, 95%, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Introduction Section */
.intro-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intro-card {
  background: var(--gradient-card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.intro-card:hover {
  box-shadow: var(--shadow-elevated);
}

.intro-card-content {
  padding: 1.5rem;
}

.intro-icon {
  margin-bottom: 1rem;
}

.intro-text {
  color: var(--foreground);
  line-height: 1.5;
}

/* Programs Section */
.programs-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-0.25rem);
}

.program-card.featured {
  border: 2px solid #008080;
  box-shadow: 0 0 30px hsla(180, 91%, 50%, 0.3);
}

.program-header {
  padding: 1.5rem 1.5rem 1rem;
}

.program-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.program-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.featured-title {
  color: var(--primary);
}

.program-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.program-content {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.program-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--secondary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-card {
  background: var(--gradient-card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  box-shadow: var(--shadow-elevated);
}

.benefit-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Outcomes Section */
.outcomes-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.outcomes-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.outcomes-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.outcome-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outcome-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-icon {
  color: var(--secondary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.kpi-badge {
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  color: var(--foreground);
}

.outcomes-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.outcomes-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  width: 100%;
}

.roi-card {
  background: #008080;
background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%);
  color: var(--secondary-foreground);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.roi-title {
  font-size: 1.25rem;
  font-weight: 700;
  color:white !important;
  margin-bottom: 1rem;
}

.roi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.trend-icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.roi-item span {
  font-size: 0.875rem;
}

/* Why Choose Section */
.why-choose-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon-lg {
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.differentiator-item span {
  color: var(--foreground);
  line-height: 1.5;
}

.trusted-by-card {
  background: var(--gradient-card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
}

.trusted-content {
  padding: 2rem;
}

.trusted-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.trusted-list {
  color: var(--muted-foreground);
}

.trusted-list p {
  margin: 0.25rem 0;
}

.accreditation-badge {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.badge-learning {
  background: #008080;
background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%);
  color: var(--learning-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: flex;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  height: 100%;
  background: var(--gradient-card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-elevated);
}

.testimonial-content {
  padding: 1.5rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  color: var(--accent);
}

.testimonial-quote {
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
   background: #008080;
background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-initials {
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
}

.pricing-card.featured-pricing {
  border: 2px solid #008080;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #008080;
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
}

.pricing-header {
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-check {
  color: var(--secondary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-feature span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: black !important;
  background: none !important;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: #008080;
  background: none !important;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
  background: none !important;
}

.faq-content.expanded {
  max-height: 200px;
  background: none !important;
  padding-bottom: 1rem;
}

.faq-content p {
  color: var(--muted-foreground);
  line-height: 1.5;
  background: none !important;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #008080;
background: linear-gradient(90deg,rgba(0, 128, 128, 1) 0%, rgba(4, 186, 186, 1) 48%, rgba(5, 227, 227, 1) 100%); 
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.2);
}

.cta-container {
  position: relative;
  text-align: center;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white !important
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: hsla(0, 0%, 100%, 0.9);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .cta-contact {
    flex-direction: row;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  color: var(--primary);
}

.footer-brand-name {
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: hsla(240, 10%, 98%, 0.8);
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: hsla(240, 10%, 98%, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(240, 10%, 98%, 0.8);
}

.contact-icon-sm {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid hsla(240, 10%, 98%, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsla(240, 10%, 98%, 0.6);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive utilities */
@media (max-width: 640px) {
  .hero-buttons {
    align-items: stretch;
  }
  
  .cta-buttons {
    align-items: stretch;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}/* End custom CSS */