:root {
  --color-dark: #212121;
  --color-blue: #2f855a;
  --color-cyan: #34c759;
  --color-white: #ffffff;
  --color-light-gray: #f7f7f7;
  --color-bg-alt: #3e8e41;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.logo-img {
  max-height: 48px;
  width: auto;
}

.geometric-nav {
  background: var(--color-dark);
  padding: 1rem 0;
  box-shadow: 0 4px 23px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.geometric-nav .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-white);
}

.geometric-nav .nav-link {
  color: var(--color-light-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  position: relative;
}

.geometric-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-blue);
  transition: width 0.3s ease;
  pointer-events: none;
}

.geometric-nav .nav-link:hover,
.geometric-nav .nav-link.active {
  color: var(--color-white);
}

.geometric-nav .nav-link:hover::before {
  width: 100%;
}

.btn-geometric-primary {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

.btn-geometric-outline {
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

.btn-geometric-light {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-geometric-light:hover {
  background: var(--color-cyan);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-geometric-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-geometric-outline-light:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-arrow {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.btn-arrow:hover {
  gap: 1rem;
  color: var(--color-cyan);
}

.hero-geometric {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 180px 0 102px;
  position: relative;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  opacity: 0.1;
  pointer-events: none;
}

.geometric-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -102px;
  right: -100px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: rotate 20s linear infinite;
}

.geometric-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -52px;
  left: -52px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: rotate 15s linear infinite reverse;
}

.geometric-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: float 10s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-31px); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-light-gray);
  margin-bottom: 2rem;
}

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

.hero-stats {
  margin-top: 4rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(59, 130, 246, 0.3);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 13px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-blue);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  margin-top: 3rem;
}

.hero-image {
  width: 100%;
  border: 4px solid var(--color-blue);
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 18px) 100%, 0 100%, 0 23px);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.5);
}

.section-geometric {
  padding: 98px 0;
  background: var(--color-white);
}

.section-geometric-alt {
  padding: 101px 0;
  background: var(--color-bg-alt);
  color: var(--color-white);
  position: relative;
}

.diagonal-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 102px;
  background: var(--color-white);
  pointer-events: none;
}

.diagonal-divider.top {
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.diagonal-divider.bottom {
  bottom: 0;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-light-gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-geometric-alt .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card-geometric {
  background: var(--color-white);
  padding: 2.5rem;
  height: 100%;
  border: 3px solid var(--color-dark);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 14px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card-geometric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  pointer-events: none;
}

.feature-card-geometric:hover::before {
  opacity: 0.1;
}

.feature-card-geometric:hover {
  border-color: var(--color-blue);
  transform: translateY(-13px);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 78px;
  height: 78px;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 12px) 100%, 0 100%, 0 13px);
  transition: all 0.3s ease;
}

.feature-card-geometric:hover .feature-icon {
  background: var(--color-cyan);
  transform: rotate(5deg) scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-text {
  color: #64748b;
  font-size: 1rem;
}

.service-card-geometric {
  background: var(--color-white);
  overflow: hidden;
  border: 3px solid var(--color-dark);
  clip-path: polygon(19px 0, 100% 0, 100% calc(100% - 21px), calc(100% - 23px) 100%, 0 100%, 0 21px);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-geometric:hover {
  border-color: var(--color-blue);
  transform: translateY(-11px);
  box-shadow: 0 23px 41px rgba(0, 0, 0, 0.2);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(6, 182, 212, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card-geometric:hover .service-overlay {
  opacity: 1;
}

.service-number {
  font-size: 6rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-text {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.testimonial-card-geometric {
  background: var(--color-white);
  padding: 2.5rem;
  height: 100%;
  border: 3px solid var(--color-dark);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 17px) 100%, 0 100%, 0 14px);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card-geometric:hover {
  border-color: var(--color-blue);
  transform: translateY(-10px);
  box-shadow: 0 18px 41px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 57px;
  height: 57px;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  object-fit: cover;
  border: 2px solid var(--color-blue);
}

.author-name {
  font-weight: 700;
  color: var(--color-dark);
}

.author-role {
  font-size: 0.9rem;
  color: var(--color-light-gray);
}

.team-card-geometric {
  background: var(--color-white);
  overflow: hidden;
  border: 3px solid var(--color-dark);
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: all 0.3s ease;
}

.team-card-geometric:hover {
  border-color: var(--color-blue);
  transform: translateY(-12px);
  box-shadow: 0 22px 37px rgba(0, 0, 0, 0.2);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

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

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(6, 182, 212, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card-geometric:hover .team-overlay {
  opacity: 1;
}

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

.team-social a {
  width: 47px;
  height: 51px;
  background: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.team-social a:hover {
  background: var(--color-cyan);
  color: var(--color-white);
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--color-light-gray);
  font-size: 0.9rem;
}

.stats-geometric {
  background: var(--color-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stat-card-geometric {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(59, 130, 246, 0.3);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 10px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.stat-card-geometric:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-blue);
  transform: translateY(-7px);
}

.stat-icon {
  font-size: 3rem;
  color: var(--color-cyan);
  margin-bottom: 1rem;
}

.stat-number-lg {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-lg {
  font-size: 1rem;
  color: var(--color-light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card-geometric {
  background: var(--color-white);
  padding: 2.5rem;
  height: 100%;
  border: 3px solid var(--color-dark);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 18px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-geometric.featured {
  border-color: var(--color-blue);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
  transform: scale(1.05);
}

.pricing-card-geometric:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-geometric.featured:hover {
  transform: translateY(-9px) scale(1.08);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 20px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--color-light-gray);
}

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

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.pricing-features li i {
  color: var(--color-blue);
  font-size: 1.2rem;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled i {
  color: var(--color-light-gray);
}

.accordion-geometric .accordion-item {
  background: var(--color-white);
  border: 3px solid var(--color-dark);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 14px) 100%, 0 100%, 0 10px);
  margin-bottom: 1rem;
}

.accordion-geometric .accordion-button {
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 15px) 100%, 0 100%, 0 11px);
}

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

.accordion-geometric .accordion-button:focus {
  box-shadow: none;
}

.accordion-geometric .accordion-body {
  padding: 1.5rem;
  color: #64748b;
}

.cta-geometric {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: var(--color-white);
  padding: 103px 0;
  position: relative;
  overflow: hidden;
}

.geometric-shape.shape-cta-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
}

.geometric-shape.shape-cta-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -101px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.page-hero-geometric {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 180px 0 82px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-light-gray);
  max-width: 700px;
  margin: 0 auto;
}

.rounded-geometric {
  border: 4px solid var(--color-blue);
  clip-path: polygon(23px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 19px);
}

.list-geometric {
  list-style: none;
  padding: 0;
}

.list-geometric li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.list-geometric li i {
  color: var(--color-blue);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.footer-geometric {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-top {
  padding: 77px 0 37px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

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

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

.footer-links a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-contact i {
  color: var(--color-blue);
  font-size: 1.2rem;
}

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

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

.text-light-gray {
  color: var(--color-light-gray);
}

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

.social-link {
  width: 42px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light-gray);
}

.contact-form-card {
  background: var(--color-white);
  padding: 3rem;
  border: 3px solid var(--color-dark);
  clip-path: polygon(23px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 23px) 100%, 0 100%, 0 19px);
}

.form-geometric {
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-geometric:focus {
  border-color: var(--color-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-info-card {
  background: var(--color-white);
  padding: 2.5rem;
  border: 3px solid var(--color-dark);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 16px) 100%, 0 100%, 0 18px);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-content p,
.contact-info-content a {
  color: #64748b;
  margin: 0;
  text-decoration: none;
}

.contact-info-content a:hover {
  color: var(--color-blue);
}

.contact-social-card {
  background: var(--color-white);
  padding: 2rem;
  border: 3px solid var(--color-dark);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 16px) 100%, 0 100%, 0 14px);
}

.social-links-large {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link-lg {
  width: 52px;
  height: 49px;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.25rem;
}

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

.blog-card-geometric {
  background: var(--color-white);
  overflow: hidden;
  border: 3px solid var(--color-dark);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card-geometric:hover {
  border-color: var(--color-blue);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.blog-category {
  position: absolute;
  top: 19px;
  left: 17px;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-light-gray);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.article-hero-geometric {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 180px 0 83px;
}

.article-category {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.article-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
  color: var(--color-light-gray);
  justify-content: center;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content-section {
  padding: 102px 0;
  background: var(--color-white);
}

.article-featured-img {
  border: 4px solid var(--color-blue);
  clip-path: polygon(23px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 22px) 100%, 0 100%, 0 20px);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-dark);
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.article-content .lead {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.article-cta {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  color: var(--color-white);
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 19px), calc(100% - 20px) 100%, 0 100%, 0 18px);
}

.article-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-card {
  background: var(--color-white);
  border: 3px solid var(--color-dark);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 19px), calc(100% - 19px) 100%, 0 100%, 0 17px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-11px);
  box-shadow: 0 18px 43px rgba(0, 0, 0, 0.2);
}

.case-study-image-wrapper {
  height: 300px;
  overflow: hidden;
}

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

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

.case-study-content {
  padding: 2.5rem;
}

.case-study-tag {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.case-study-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-text {
  color: #64748b;
  margin-bottom: 2rem;
}

.case-study-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

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

.case-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.case-stat-label {
  font-size: 0.9rem;
  color: var(--color-light-gray);
  text-transform: uppercase;
}

.integration-logo {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.integration-logo i {
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.section-geometric-alt .integration-logo i {
  color: var(--color-white);
}

.integration-logo:hover i {
  color: var(--color-blue);
  transform: scale(1.2);
}

.service-detail-card {
  background: var(--color-white);
  padding: 3rem;
  border: 3px solid var(--color-dark);
  clip-path: polygon(19px 0, 100% 0, 100% calc(100% - 21px), calc(100% - 17px) 100%, 0 100%, 0 18px);
  height: 100%;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-13px);
  box-shadow: 0 21px 43px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
  width: 78px;
  height: 77px;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 10px);
}

.service-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail-text {
  color: #64748b;
  margin-bottom: 2rem;
}

.process-step-card {
  background: var(--color-white);
  padding: 2.5rem;
  border: 3px solid var(--color-dark);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 13px) 100%, 0 100%, 0 16px);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-11px);
  box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
}

.process-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-text {
  color: #64748b;
  font-size: 0.95rem;
}

.table-geometric {
  background: var(--color-white);
  border: 3px solid var(--color-dark);
}

.table-geometric thead {
  background: var(--color-dark);
  color: var(--color-white);
}

.table-geometric th,
.table-geometric td {
  padding: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
  vertical-align: middle;
}

.table-geometric tbody tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: #64748b;
}

.legal-content a {
  color: var(--color-blue);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--color-cyan);
  text-decoration: underline;
}

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

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .article-title {
    font-size: 2.5rem;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .geometric-nav .nav-link {
    margin: 0.5rem 0;
  }
}

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

  .section-title {
    font-size: 1.75rem;
  }

  .hero-geometric,
  .page-hero-geometric {
    padding: 140px 0 58px;
  }

  .section-geometric,
  .section-geometric-alt {
    padding: 59px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 1rem;
  }
}
