/* Complete redesign with turquoise colors and varied layouts */

/* Mobile Touch Target Enhancements */
button,
a,
input,
textarea,
select,
.cta-button-modern,
.testimonial-read-more,
.hexagon-item,
.bento-item {
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(64, 224, 208, 0.3);
}

button,
a {
  touch-action: manipulation;
}

/* Diagonal Hero Section */
.page-hero-diagonal {
  position: relative;
  padding: 3rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../assets/pexels-neo-2653362-1024x683.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-diagonal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 1;
}

.page-hero-diagonal::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(64, 224, 208, 0.15) 50%, transparent 60%);
  transform: skewY(-3deg);
  z-index: 1;
}

.hero-diagonal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-text-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-modern {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  text-align: center;
}

.hero-description-modern {
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.hero-visual-side {
  display: none;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 5s ease-in-out infinite;
  animation-fill-mode: both;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.3), rgba(32, 178, 170, 0.2));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.3), rgba(64, 224, 208, 0.2));
  top: 50%;
  right: 20%;
  animation-delay: 1.5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.4), rgba(32, 178, 170, 0.3));
  bottom: 20%;
  left: 40%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
  row-gap: 1.5rem;
}

.bento-item {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(64, 224, 208, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.3);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-large h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #40e0d0;
}

.bento-large p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #94a3b8;
}

.bento-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(32, 178, 170, 0.1));
  border: 3px solid #40e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-number-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: #40e0d0;
}

.stat-label-modern {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bento-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bento-icon {
  font-size: 3rem;
  color: #40e0d0;
  margin-bottom: 1rem;
}

.bento-highlight h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.bento-highlight p {
  color: #94a3b8;
}

/* Zigzag Layout */
.zigzag-section {
  margin: 5rem auto;
  max-width: 900px;
}

.section-title-center {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zigzag-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.zigzag-left {
  flex-direction: row;
}

.zigzag-right {
  flex-direction: row-reverse;
}

.zigzag-visual {
  flex: 0 0 100px;
}

.icon-bubble {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(32, 178, 170, 0.1));
  border: 3px solid #40e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #40e0d0;
  transition: all 0.4s ease;
}

.zigzag-item:hover .icon-bubble {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.4);
}

.zigzag-content {
  flex: 1;
}

.zigzag-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #40e0d0;
}

.zigzag-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #94a3b8;
}

/* Vertical Timeline */
.timeline-section {
  margin: 5rem 0;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #40e0d0, #20b2aa);
  transform: translateX(-50%);
}

/* Restructured timeline items to support left/right alternating layout */
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  /* Initial state for scroll animation - will be set by JavaScript */
}

.timeline-left .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-left .timeline-marker {
  grid-column: 2;
}

.timeline-left .timeline-spacer {
  grid-column: 3;
}

.timeline-right .timeline-spacer {
  grid-column: 1;
}

.timeline-right .timeline-marker {
  grid-column: 2;
}

.timeline-right .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  border: 4px solid #0f172a;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(64, 224, 208, 0.2);
  border-radius: 16px;
  padding: 1.3rem;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 15px 30px rgba(64, 224, 208, 0.3);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #40e0d0;
}

.timeline-content p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.timeline-spacer {
  /* Empty spacer for grid layout */
}

/* Hexagon Grid for Industries */
.industries-hexagon-section {
  margin: 8rem 0;
}

/* Updated grid to display 4 columns on desktop for 8 items (4 up, 4 down) */
.hexagon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  row-gap: 1.5rem;
}

.hexagon-item {
  text-align: center;
  padding: 0.5rem;
  min-height: 44px;
}

.hexagon-shape {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(32, 178, 170, 0.1));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #40e0d0;
  transition: all 0.4s ease;
  border: 3px solid #40e0d0;
}

.hexagon-item:hover .hexagon-shape {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.4);
}

.hexagon-item h4 {
  font-size: 0.75rem;
  color: #e2e8f0;
}

/* Compact Hexagon Variant */
.hexagon-grid.compact {
  gap: 1.2rem;
}

.hexagon-grid.compact .hexagon-shape {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
}

.hexagon-grid.compact .hexagon-item h4 {
  font-size: 0.75rem;
}

/* Staggered Testimonials */
.testimonials-staggered {
  margin: 8rem 0;
}

.testimonials-stagger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.testimonial-stagger {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(64, 224, 208, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.testimonial-stagger-1 {
  transform: translateY(0);
}

.testimonial-stagger-2 {
  transform: translateY(2rem);
}

.testimonial-stagger-3 {
  transform: translateY(1rem);
}

.testimonial-stagger:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.3);
}

.testimonial-quote-mark {
  font-size: 5rem;
  color: rgba(64, 224, 208, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.testimonial-text-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  max-height: calc(1.125rem * 1.8 * 7);
}

.testimonial-stagger.expanded .testimonial-text {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  max-height: none;
}

.testimonial-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.6));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.testimonial-stagger.expanded .testimonial-fade {
  opacity: 0;
}

.testimonial-read-more {
  background: transparent;
  border: 2px solid #40e0d0;
  color: #40e0d0;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  font-family: 'Tomorrow', sans-serif;
  position: relative;
  padding-right: 2.5rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-read-more::after {
  content: '▼';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  opacity: 0;
}

.testimonial-read-more.animate-down::after {
  animation: bounceDown 0.6s ease-in-out;
  opacity: 1;
}

.testimonial-read-more.animate-up::after {
  transform: translateY(-50%) rotate(180deg);
  animation: bounceUp 0.6s ease-in-out;
  opacity: 1;
}

.testimonial-stagger.expanded .testimonial-read-more::after {
  transform: translateY(-50%) rotate(180deg);
}

@keyframes bounceDown {
  0% {
    transform: translateY(-50%) rotate(0deg) translateY(-5px);
  }
  25% {
    transform: translateY(-50%) rotate(0deg) translateY(3px);
  }
  50% {
    transform: translateY(-50%) rotate(0deg) translateY(-2px);
  }
  75% {
    transform: translateY(-50%) rotate(0deg) translateY(1px);
  }
  100% {
    transform: translateY(-50%) rotate(0deg) translateY(0px);
  }
}

@keyframes bounceUp {
  0% {
    transform: translateY(-50%) rotate(180deg) translateY(5px);
  }
  25% {
    transform: translateY(-50%) rotate(180deg) translateY(-3px);
  }
  50% {
    transform: translateY(-50%) rotate(180deg) translateY(2px);
  }
  75% {
    transform: translateY(-50%) rotate(180deg) translateY(-1px);
  }
  100% {
    transform: translateY(-50%) rotate(180deg) translateY(0px);
  }
}

.testimonial-read-more:hover {
  background: rgba(64, 224, 208, 0.1);
  transform: translateY(-2px);
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
}

.testimonial-author-modern strong {
  display: block;
  color: #40e0d0;
  font-size: 1.125rem;
}

.testimonial-author-modern span {
  display: block;
  color: #94a3b8;
  font-size: 0.875rem;
}

.testimonial-stars-modern {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* Icon Feature Grid */
.icon-grid-section {
  margin: 8rem 0;
}

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.icon-feature-card {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(64, 224, 208, 0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.icon-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(64, 224, 208, 0.6);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.3);
}

.icon-feature-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(32, 178, 170, 0.1));
  border: 3px solid #40e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #40e0d0;
  transition: all 0.4s ease;
}

.icon-feature-card:hover .icon-feature-circle {
  transform: scale(1.1) rotate(360deg);
}

.icon-feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}

.icon-feature-card p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Gradient Banner */
.gradient-banner {
  margin: 8rem 0;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.15) 0%, rgba(32, 178, 170, 0.08) 100%),
              rgba(15, 23, 42, 0.4);
  border-radius: 30px;
  border: 2px solid rgba(64, 224, 208, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gradient-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.gradient-banner::before {
  animation-fill-mode: both;
}

.gradient-banner-content {
  position: relative;
  z-index: 1;
}

.gradient-banner-icon {
  font-size: 3rem;
  color: #40e0d0;
  margin-bottom: 1.5rem;
}

.gradient-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #40e0d0;
}

.gradient-banner p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
}

/* Split CTA */
.cta-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 8rem 0;
  padding: 4rem;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(64, 224, 208, 0.3);
  border-radius: 24px;
}

.cta-split-left {
  flex: 1;
}

.cta-split-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-split-left p {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.8;
}

.cta-split-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-button-modern {
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  min-width: 44px;
  min-height: 44px;
}

.cta-button-modern.primary {
  background: linear-gradient(135deg, #40e0d0, #20b2aa);
  color: #0f172a;
}

.cta-button-modern.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(64, 224, 208, 0.5);
}

.cta-button-modern.secondary {
  background: transparent;
  border: 2px solid #40e0d0;
  color: #40e0d0;
}

.cta-button-modern.secondary:hover {
  background: rgba(64, 224, 208, 0.1);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-diagonal-content {
    flex-direction: column;
    gap: 3rem;
  }

  .hero-text-side,
  .hero-visual-side {
    flex: 1 1 100%;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .zigzag-section {
    margin: 3.5rem auto;
  }

  .zigzag-item {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .zigzag-visual {
    order: 1;
    flex: 0 0 80px;
  }

  .zigzag-content {
    order: 2;
  }

  .zigzag-content h3 {
    font-size: 1.2rem;
  }

  .zigzag-content p {
    font-size: 0.9rem;
  }

  .icon-bubble {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
  }

  /* Responsive timeline for tablets */
  .timeline-section {
    margin: 3.5rem 0;
  }

  .timeline-container {
    max-width: 630px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 1.75rem;
  }

  .timeline-left .timeline-content,
  .timeline-right .timeline-content {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }

  .timeline-left .timeline-marker,
  .timeline-right .timeline-marker {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
    width: 56px;
    height: 56px;
    font-size: 1.05rem;
  }

  .timeline-left .timeline-spacer,
  .timeline-right .timeline-spacer {
    display: none;
  }

  .timeline-line {
    left: 50%;
  }

  .timeline-content {
    padding: 0.91rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.79rem;
  }

  /* Responsive hexagon grid for tablets - 3 columns */
  .hexagon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.05rem;
  }

  .hexagon-shape {
    width: 51px;
    height: 51px;
    font-size: 1.05rem;
  }

  .hexagon-item h4 {
    font-size: 0.66rem;
  }

  .hexagon-grid.compact {
    gap: 1.05rem;
  }

  .hexagon-grid.compact .hexagon-shape {
    width: 51px;
    height: 51px;
    font-size: 1.05rem;
  }

  .hexagon-grid.compact .hexagon-item h4 {
    font-size: 0.66rem;
  }

  /* Responsive icon feature grid for tablets - 2 columns */
  .icon-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-diagonal {
    padding: 4rem 0 3rem;
  }

  .hero-diagonal-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-side,
  .hero-visual-side {
    flex: 1 1 100%;
  }

  .hero-title-modern {
    font-size: 2.2rem;
  }

  .hero-description-modern {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-visual-side {
    height: 250px;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
  }

  .shape-2 {
    width: 120px;
    height: 120px;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .bento-item {
    transition: all 0.3s ease;
  }

  .section-title-center {
    font-size: 1.6rem;
  }

  .zigzag-section {
    margin: 3rem auto;
  }

  .zigzag-item {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .zigzag-visual {
    order: 1;
    flex: 0 0 70px;
  }

  .zigzag-content {
    order: 2;
  }

  .zigzag-content h3 {
    font-size: 1.1rem;
  }

  .zigzag-content p {
    font-size: 0.85rem;
  }

  .icon-bubble {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }

  .cta-split {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
  }

  .cta-split-left h2 {
    font-size: 2rem;
  }

  .cta-split-right {
    width: 100%;
  }

  .cta-button-modern {
    width: 100%;
    transition: all 0.2s ease;
  }

  /* Responsive hexagon grid for mobile - 2 columns */
  .hexagon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .hexagon-shape {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .hexagon-item h4 {
    font-size: 0.56rem;
  }

  .hexagon-grid.compact {
    gap: 0.9rem;
  }

  .hexagon-grid.compact .hexagon-shape {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  .hexagon-grid.compact .hexagon-item h4 {
    font-size: 0.56rem;
  }

  /* Responsive timeline for mobile */
  .timeline-section {
    margin: 2.5rem 0;
  }

  .timeline-container {
    max-width: 450px;
  }

  .timeline-item {
    margin-bottom: 1.25rem;
  }

  .timeline-left .timeline-marker,
  .timeline-right .timeline-marker {
    width: 42px;
    height: 42px;
    font-size: 0.84rem;
  }

  .timeline-content {
    padding: 0.65rem;
    transition: all 0.2s ease;
  }

  .timeline-content h3 {
    font-size: 0.875rem;
  }

  .timeline-content p {
    font-size: 0.63rem;
  }

  .testimonial-stagger {
    transition: all 0.3s ease;
  }

  .icon-feature-card {
    transition: all 0.2s ease;
  }

  .icon-feature-circle {
    transition: all 0.2s ease;
  }

  /* Responsive icon feature grid for mobile - 1 column */
  .icon-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-hero-diagonal {
    padding: 3rem 0 2rem;
  }

  .hero-diagonal-content {
    gap: 1.5rem;
  }

  .hero-title-modern {
    font-size: 1.8rem;
  }

  .hero-description-modern {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-visual-side {
    height: 200px;
  }

  .shape-1 {
    width: 120px;
    height: 120px;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
  }

  .shape-3 {
    width: 70px;
    height: 70px;
  }

  .cta-split {
    padding: 2rem;
  }

  .section-title-center {
    font-size: 1.4rem;
  }

  .bento-item {
    transition: all 0.2s ease;
  }

  .icon-bubble {
    transition: all 0.2s ease;
  }

  .hexagon-shape {
    transition: all 0.2s ease;
  }

  .cta-button-modern {
    transition: all 0.2s ease;
  }

  .timeline-content {
    transition: all 0.2s ease;
  }

  .testimonial-stagger {
    transition: all 0.2s ease;
  }

  .icon-feature-card {
    transition: all 0.2s ease;
  }

  .icon-feature-circle {
    transition: all 0.2s ease;
  }
}
