/* ========================================
   MODERN TECH STARTUP TEMPLATE - VERTICAL TIMELINE
   Design: Vertical Timeline with Alternating Content
   Colors: Dark (#0f172a), Electric Blue (#3b82f6), Cyan (#06b6d4)
   ======================================== */

:root {
  --primary-color: #2f4f4f;
  --accent-blue: #34c759;
  --accent-cyan: #8bc34a;
  --bg-light: #f7f7f7;
  --text-dark: #212121;
  --white: #ffffff;
  --spacing-section: 120px;
  --spacing-element: 21px;
  --container-max: 1000px;
}

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

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-element);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-cyan);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 103px;
}

/* ========================================
   NAVIGATION
   ======================================== */

#mainNav {
  background-color: var(--primary-color);
  padding: 1rem 0;
  box-shadow: 0 2px 13px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.site-name {
  color: var(--white);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
}

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-cyan) !important;
}

.dropdown-menu {
  background-color: var(--primary-color);
  border: none;
  box-shadow: 0 4px 22px rgba(0,0,0,0.15);
}

.dropdown-item {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(59,130,246,0.2);
  color: var(--accent-cyan);
}

/* ========================================
   VERTICAL TIMELINE HERO (CRITICAL)
   ======================================== */

.hero-timeline {
  min-height: auto;
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  position: relative;
}

.timeline-header {
  margin-bottom: 77px;
}

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

.timeline-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.timeline-start-node {
  position: relative;
  text-align: center;
  margin-bottom: 61px;
}

.node-circle {
  width: 82px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 11px 31px rgba(59,130,246,0.4);
  position: relative;
  z-index: 2;
}

.node-circle i {
  font-size: 2rem;
  color: var(--white);
}

.timeline-spine {
  position: absolute;
  left: 50%;
  top: 77px;
  width: 4px;
  height: 103px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan));
  transform: translateX(-50%);
  pointer-events: none;
}

/* TIMELINE CONTENT - CENTER SPINE WITH ALTERNATING NODES */

.timeline-content {
  position: relative;
  padding-bottom: 61px;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan));
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  margin-bottom: var(--spacing-section);
  position: relative;
}

/* LEFT ALIGNED NODES */
.timeline-left .timeline-card {
  grid-column: 1;
  text-align: right;
}

.timeline-left .timeline-date-badge {
  grid-column: 2;
  justify-self: start;
  margin-left: 39px;
}

/* RIGHT ALIGNED NODES */
.timeline-right .timeline-card {
  grid-column: 2;
  text-align: left;
}

.timeline-right .timeline-date-badge {
  grid-column: 1;
  justify-self: end;
  margin-right: 43px;
}

.timeline-date-badge {
  background: var(--accent-blue);
  color: var(--white);
  padding: 8px 17px;
  border-radius: 53px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  display: inline-block;
  align-self: center;
  box-shadow: 0 4px 13px rgba(59,130,246,0.3);
  position: relative;
  z-index: 2;
}

.timeline-card {
  background: var(--white);
  border-radius: 8px;
  padding: 41px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.2);
}

.timeline-card::before {
  content: '';
  position: absolute;
  pointer-events: none;
}

.timeline-left .timeline-card::before {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 12px solid transparent;
}

.timeline-right .timeline-card::before {
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 22px solid var(--white);
  border-top: 18px solid transparent;
  border-bottom: 15px solid transparent;
}

.card-icon {
  width: 62px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-element);
}

.timeline-left .card-icon {
  margin-right: 0;
}

.timeline-right .card-icon {
  margin-left: 0;
}

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

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-element);
}

.card-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-element);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

.timeline-end-node {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: 82px 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  padding: 97px 0 82px;
  margin-top: 76px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.section-header {
  margin-bottom: 63px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-dark {
  background-color: var(--primary-color) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)) !important;
}

/* ========================================
   FEATURES
   ======================================== */

.feature-card {
  text-align: center;
  padding: 41px 29px;
  border-radius: 8px;
  background: var(--white);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 7px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.15);
}

.feature-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-element);
}

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

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-text {
  color: #666;
  line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */

.services-section {
  background-color: var(--bg-light);
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 19px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 27px rgba(59,130,246,0.2);
}

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

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

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

.service-content {
  padding: 33px;
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 71px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 19px;
  position: relative;
  z-index: 2;
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.btn-service {
  margin-top: auto;
}

/* ========================================
   STATS
   ======================================== */

.stats-section {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--white);
}

.stat-item {
  text-align: center;
  padding: 19px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   INTEGRATIONS
   ======================================== */

.integration-logo {
  text-align: center;
  padding: 28px 23px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.integration-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 23px rgba(59,130,246,0.15);
}

.integration-logo i {
  color: var(--accent-blue);
}

.integration-logo p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* ========================================
   PRICING
   ======================================== */

.pricing-card {
  background: var(--white);
  border-radius: 8px;
  padding: 39px 29px;
  box-shadow: 0 4px 21px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.2);
}

.pricing-card.featured {
  border: 3px solid var(--accent-blue);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: var(--white);
  padding: 5px 17px;
  border-radius: 47px;
  font-size: 0.875rem;
  font-weight: 700;
  pointer-events: none;
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  color: var(--accent-blue);
}

.period {
  font-size: 1rem;
  color: #666;
}

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

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

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

.pricing-features i {
  margin-right: 13px;
  width: 18px;
}

.btn-block {
  width: 100%;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
  background-color: var(--primary-color);
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 37px 32px;
  text-align: center;
  backdrop-filter: blur(11px);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.125rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-image {
  width: 59px;
  height: 61px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
}

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

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.author-role {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ========================================
   TEAM
   ======================================== */

.team-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 21px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

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

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

.team-overlay {
  position: absolute;
  inset: 0;
  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;
}

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

.team-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 42px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  transition: all 0.3s ease;
  pointer-events: all;
}

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

.team-info {
  padding: 22px 20px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: #666;
  margin: 0;
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
  background-color: var(--bg-light);
}

.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-button {
  background: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  padding: 22px 26px;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--white);
}

.accordion-button::after {
  filter: brightness(0) invert(0);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 21px 23px;
  background: var(--white);
}

/* ========================================
   CTA
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #1e293b);
  color: var(--white);
  padding: 100px 0;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  padding: 9px 33px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.3);
}

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

.btn-outline-primary:hover {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--accent-blue);
}

.btn-light:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--accent-blue);
}

.btn-lg {
  padding: 13px 41px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 17px;
  font-size: 0.875rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-dark {
  background-color: var(--primary-color);
  color: rgba(255,255,255,0.8);
  padding: 63px 0 33px;
}

.footer-brand {
  margin-bottom: 17px;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  margin-bottom: 21px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

.social-link {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-cyan);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 21px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 5px;
}

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

.footer-contact li {
  color: rgba(255,255,255,0.7);
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent-cyan);
  width: 17px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 41px 0 17px;
}

.footer-copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-wrapper,
.contact-form-wrapper {
  background: var(--white);
  padding: 41px;
  border-radius: 8px;
  box-shadow: 0 4px 17px rgba(0,0,0,0.1);
}

.contact-info-title,
.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 27px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.contact-details h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: #666;
  margin: 0;
}

.contact-details a:hover {
  color: var(--accent-blue);
}

.contact-registration {
  margin-top: 27px;
  padding-top: 17px;
  border-top: 1px solid #eee;
}

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

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 13px 13px;
  transition: all 0.3s ease;
}

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

/* ========================================
   BLOG
   ======================================== */

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 23px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 29px rgba(59,130,246,0.2);
}

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

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

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

.blog-category {
  position: absolute;
  top: 17px;
  left: 13px;
  background: var(--accent-blue);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 51px;
  font-size: 0.875rem;
  font-weight: 700;
  pointer-events: none;
}

.blog-content {
  padding: 33px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 17px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: #666;
}

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

.blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--accent-blue);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

/* ARTICLE PAGE */

.article-page {
  margin-top: 77px;
}

.article-hero {
  padding: 81px 0 41px;
  background: var(--bg-light);
}

.article-meta {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.875rem;
  color: #666;
}

.article-category {
  background: var(--accent-blue);
  color: var(--white);
  padding: 5px 17px;
  border-radius: 47px;
  font-weight: 700;
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.article-lead {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-featured-image {
  padding: 43px 0;
  background: var(--bg-light);
}

.article-content {
  padding: 63px 0;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.article-list {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-list li {
  margin-bottom: 1rem;
}

.article-quote {
  border-left: 4px solid var(--accent-blue);
  padding: 22px 28px;
  margin: 3rem 0;
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-color);
}

.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.article-tags {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 49px;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.article-share {
  display: flex;
  gap: 7px;
  align-items: center;
}

.share-label {
  font-weight: 600;
  color: var(--primary-color);
}

.share-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.share-icon:hover {
  background: var(--accent-cyan);
  transform: translateY(-3px);
}

.related-articles {
  background-color: var(--bg-light);
  padding: 82px 0;
}

.related-card {
  background: var(--white);
  padding: 31px;
  border-radius: 8px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(59,130,246,0.15);
}

.related-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-title a:hover {
  color: var(--accent-blue);
}

.related-excerpt {
  color: #666;
  margin: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 102px 0;
  margin-top: 76px;
}

.legal-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-date {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.legal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-list li {
  margin-bottom: 1rem;
}

/* ========================================
   SERVICE PAGES
   ======================================== */

.service-hero {
  padding: 98px 0 78px;
  margin-top: 73px;
}

.service-features,
.service-tech {
  padding: 77px 0;
}

.tech-badge {
  text-align: center;
  padding: 28px 23px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 17px rgba(59,130,246,0.15);
}

.tech-badge i {
  color: var(--accent-blue);
}

.tech-badge p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* ========================================
   CASE STUDIES
   ======================================== */

.case-study-card {
  background: var(--white);
  padding: 58px 41px;
  border-radius: 8px;
  box-shadow: 0 4px 23px rgba(0,0,0,0.1);
}

.case-study-badge {
  display: inline-block;
  background: var(--accent-blue);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 52px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.case-study-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.case-study-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.case-study-results {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
}

.result-item {
  flex: 1;
  min-width: 150px;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   PRICING COMPARISON
   ======================================== */

.comparison-table {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 19px rgba(0,0,0,0.1);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--white);
}

.comparison-table th {
  padding: 19px;
  font-weight: 700;
  border: none;
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-step {
  text-align: center;
  padding: 27px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 7px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 23px rgba(59,130,246,0.15);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-text {
  color: #666;
}

/* ========================================
   MISSION SECTION
   ======================================== */

.mission-card {
  text-align: center;
  padding: 38px 33px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 21px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.2);
}

.mission-icon {
  width: 83px;
  height: 77px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-element);
}

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

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-text {
  color: #666;
  line-height: 1.7;
}

.story-section {
  padding: 80px 0;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.consulting-areas {
  padding: 82px 0;
}

.area-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 19px rgba(59,130,246,0.15);
}

.area-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.area-title i {
  color: var(--accent-blue);
}

.area-text {
  color: #666;
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
  .container {
    padding: 0 47px;
  }

  .timeline-node {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .timeline-left .timeline-card,
  .timeline-right .timeline-card {
    grid-column: 1;
    text-align: center;
  }

  .timeline-left .timeline-date-badge,
  .timeline-right .timeline-date-badge {
    grid-column: 1;
    justify-self: center;
    margin: 0 0 17px;
  }

  .timeline-content::before {
    left: 29px;
  }

  .timeline-card::before {
    display: none;
  }

  .timeline-left .card-icon,
  .timeline-right .card-icon {
    margin: 0 auto var(--spacing-element);
  }

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

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

@media (max-width: 767px) {
  .container {
    padding: 0 33px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

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

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

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

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-results {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 21px;
  }

  .btn-lg {
    padding: 13px 31px;
    font-size: 1rem;
  }

  .timeline-node {
    margin-bottom: 60px;
  }
}
