:root {
  --dark-navy: #1a1d23;
  --electric-blue: #3498db;
  --cyan: #87ceeb;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
}

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

body {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--white);
  background-color: var(--dark-navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.bg-electric-blue-dark {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.text-white-90 {
  color: var(--white-90);
}

.text-white-80 {
  color: var(--white-80);
}

.text-white-70 {
  color: var(--white-70);
}

.text-white-50 {
  color: var(--white-50);
}

.text-electric-blue {
  color: var(--electric-blue);
}

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

.logo-img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

.geometric-nav {
  background-color: var(--dark-navy);
  border-bottom: 4px solid var(--electric-blue);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--white-80);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--electric-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--white);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-geometric {
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-electric-blue {
  background-color: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
}

.btn-electric-blue:hover {
  background-color: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.4);
}

.btn-outline-electric-blue {
  background-color: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}

.btn-outline-electric-blue:hover {
  background-color: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-cyan {
  background-color: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-outline-cyan:hover {
  background-color: var(--cyan);
  color: var(--dark-navy);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 79px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1e293b 100%);
}

.geometric-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, transparent 70%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -200px;
  right: -103px;
  opacity: 0.15;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(225deg, var(--cyan) 0%, transparent 70%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: -99px;
  left: -48px;
  opacity: 0.15;
}

.shape-3 {
  width: 300px;
  height: 300px;
  border: 3px solid var(--electric-blue);
  border-radius: 0;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.1;
  pointer-events: none;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0 var(--electric-blue);
}

.hero-lead {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--electric-blue);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 51px;
  background-color: var(--white-50);
}

.hero-image-container {
  position: relative;
  margin-top: 4rem;
}

.hero-image {
  border-radius: 0;
  box-shadow: 0 23px 61px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.image-geometric-frame {
  position: absolute;
  top: -17px;
  left: -19px;
  right: 21px;
  bottom: 19px;
  border: 4px solid var(--electric-blue);
  z-index: 1;
  pointer-events: none;
}

.section-title {
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  font-weight: 300;
}

.geometric-card {
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(7px);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 0;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.geometric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.geometric-card:hover {
  border-color: var(--electric-blue);
  transform: translateX(11px);
  box-shadow: -13px 8px 0 var(--electric-blue);
}

.geometric-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 83px;
  height: 78px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.feature-icon {
  font-size: 2rem;
  color: var(--white);
}

.feature-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
}

.bg-split-diagonal {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy) 50%, #1e3a8a 50%, #1e40af 100%);
}

.service-card {
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-card-body {
  padding: 1.5rem;
}

.service-icon-wrapper {
  width: 58px;
  height: 61px;
  background-color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--white);
}

.service-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--white-70);
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-featured {
  border-color: var(--cyan);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.pricing-header {
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.3);
  margin-bottom: 2rem;
}

.pricing-plan {
  font-size: 1.5rem;
  color: var(--white);
}

.pricing-description {
  font-size: 0.875rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--electric-blue);
  font-weight: 700;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--electric-blue);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--white-70);
}

.price-amount-custom {
  font-size: 2rem;
  font-weight: 700;
  color: var(--electric-blue);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-80);
}

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

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--white-80);
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--electric-blue);
  position: absolute;
  top: -22px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-avatar {
  width: 61px;
  height: 57px;
  border-radius: 0;
  object-fit: cover;
  border: 3px solid var(--electric-blue);
  margin-right: 1rem;
}

.author-name {
  color: var(--white);
  font-size: 1rem;
}

.author-role {
  font-size: 0.875rem;
}

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

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.team-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-image-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.team-social-link {
  width: 39px;
  height: 43px;
  background-color: var(--white);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.team-social-link:hover {
  background-color: var(--cyan);
  color: var(--white);
  transform: translateY(-5px);
}

.team-name {
  color: var(--white);
}

.team-role {
  font-weight: 600;
}

.team-bio {
  font-size: 0.875rem;
}

.bg-split-geometric {
  background: var(--dark-navy);
  position: relative;
}

.bg-split-geometric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--dark-navy) 100%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  pointer-events: none;
}

.stat-card {
  position: relative;
  z-index: 1;
}

.stat-number-oversized {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-label-large {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-description {
  font-size: 0.875rem;
}

.integration-logo-card {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.integration-logo-card:hover {
  transform: scale(1.1);
  border-color: var(--cyan);
}

.integration-icon {
  font-size: 3rem;
  color: var(--electric-blue);
  transition: color 0.3s ease;
}

.integration-logo-card:hover .integration-icon {
  color: var(--cyan);
}

.integration-name {
  color: var(--white-80);
  font-size: 0.875rem;
  font-weight: 600;
}

.geometric-accordion .accordion-item {
  background-color: rgba(30, 41, 59, 0.6);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 0;
  margin-bottom: 1rem;
}

.geometric-accordion .accordion-button {
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem;
  border-radius: 0;
  border: none;
}

.geometric-accordion .accordion-button:not(.collapsed) {
  background-color: var(--electric-blue);
  color: var(--white);
  box-shadow: none;
}

.geometric-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--electric-blue);
}

.geometric-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  color: var(--electric-blue);
}

.geometric-accordion .accordion-button:not(.collapsed)::after {
  color: var(--white);
  transform: rotate(-180deg);
}

.geometric-accordion .accordion-collapse {
  border-top: 2px solid rgba(59, 130, 246, 0.3);
}

.geometric-accordion .accordion-body {
  background-color: rgba(15, 23, 42, 0.8);
  color: var(--white-80);
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.bg-electric-blue-gradient {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan) 100%);
  position: relative;
  overflow: hidden;
}

.bg-electric-blue-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
  pointer-events: none;
}

.cta-card-geometric {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-features {
  color: var(--white-90);
  font-size: 1rem;
}

.footer {
  position: relative;
  padding-top: 4rem;
}

.footer-geometric-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan), var(--electric-blue));
  pointer-events: none;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 12px;
}

.footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--electric-blue), var(--cyan));
  pointer-events: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--white-70);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--electric-blue);
  padding-left: 7px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--white-70);
}

.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-contact a {
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--electric-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 47px;
  height: 44px;
  background-color: rgba(59, 130, 246, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--electric-blue);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 2rem;
}

.tech-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-badge {
  background-color: rgba(59, 130, 246, 0.2);
  color: var(--electric-blue);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--electric-blue);
}

.contact-form {
  background-color: rgba(30, 41, 59, 0.6);
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 3rem;
}

.form-control {
  background-color: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 0;
  color: var(--white);
  padding: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: var(--electric-blue);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-control::placeholder {
  color: var(--white-50);
}

.form-label {
  color: var(--white-80);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background-color: rgba(30, 41, 59, 0.6);
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.contact-icon {
  font-size: 3rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.blog-card {
  overflow: hidden;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

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

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--white-70);
}

.blog-title {
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--electric-blue);
}

.blog-excerpt {
  color: var(--white-70);
  line-height: 1.6;
}

.case-study-card {
  overflow: hidden;
  height: 100%;
}

.case-study-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.1);
}

.case-study-body {
  padding: 2rem;
}

.case-study-tag {
  display: inline-block;
  background-color: var(--electric-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.case-study-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.case-study-description {
  color: var(--white-70);
  margin-bottom: 1.5rem;
}

.case-study-results {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(59, 130, 246, 0.3);
}

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

.result-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--electric-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.75rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-header {
  padding: 150px 0 83px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
  pointer-events: none;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: var(--white-70);
}

.breadcrumb-item.active {
  color: var(--electric-blue);
}

.breadcrumb-item a {
  color: var(--white-80);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-50);
}

.content-section {
  padding: 83px 0;
}

.article-content {
  color: var(--white-80);
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-content h2 {
  color: var(--white);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  color: var(--white);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.article-meta {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 2px solid rgba(59, 130, 246, 0.3);
  border-bottom: 2px solid rgba(59, 130, 246, 0.3);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-70);
}

.meta-icon {
  color: var(--electric-blue);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1.25rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-number-oversized {
    font-size: 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .geometric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 30px rgba(59, 130, 246, 0.3);
  }
}

@media (max-width: 767.96px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.125rem;
  }

  .btn-geometric {
    width: 100%;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .stat-divider {
    display: none;
  }
}
