:root {
  --twh-primary: #15161b;
  --twh-purple: #5d56f1;
  --twh-purple-dark: #4b43df;
  --twh-purple-soft: #f4f3ff;
  --twh-muted: #646b7a;
  --twh-bg: #ffffff;
  --twh-bg-soft: #f9f9fc;
  --twh-line: #e3e6f0;
  --twh-shadow: 0 16px 48px rgba(21, 22, 27, 0.06);
  --twh-shadow-hover: 0 24px 64px rgba(93, 86, 241, 0.12);
}

.twh-page * {
  box-sizing: border-box;
}

.twh-page {
  background: var(--twh-bg);
  color: var(--twh-muted);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}

.twh-page h1,
.twh-page h2,
.twh-page h3,
.twh-page h4 {
  color: var(--twh-primary);
  font-weight: 800;
  margin: 0;
}

.twh-page a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.twh-page img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.twh-section-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.twh-section-pad {
  padding: 100px 0;
}

/* Custom Header styles moved to global style.css */

/* Hero Section */
.twh-hero {
  position: relative;
  background: radial-gradient(120% 120% at 50% -20%, rgba(93, 86, 241, 0.08) 0%, rgba(255, 255, 255, 0) 100%), var(--twh-bg-soft);
  border-bottom: 1px solid var(--twh-line);
  padding: 80px 0;
}

.twh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.twh-hero-content {
  max-width: 620px;
}

.twh-kicker-capsule {
  display: inline-block;
  background: var(--twh-purple-soft);
  color: var(--twh-purple);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.twh-hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.twh-hero-content h1 span {
  color: var(--twh-purple);
}

.twh-hero-content p {
  font-size: 18px;
  color: var(--twh-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.twh-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.twh-hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--twh-line);
  padding-top: 32px;
}

.twh-hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--twh-primary);
}

.twh-hero-bullet-item svg {
  width: 18px;
  height: 18px;
  color: var(--twh-purple);
  flex-shrink: 0;
}

.twh-hero-visual {
  position: relative;
}

.twh-hero-visual img {
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--twh-line);
}

/* Intellectual Property Section */
.twh-section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.twh-section-title span.twh-overline {
  color: var(--twh-purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.twh-section-title h2 {
  font-size: 40px;
  line-height: 1.2;
}

.twh-ip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.twh-ip-card {
  background: var(--twh-bg);
  border: 1px solid var(--twh-line);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.twh-ip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--twh-shadow-hover);
  border-color: rgba(93, 86, 241, 0.3);
}

.twh-ip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--twh-purple-soft);
  color: var(--twh-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.twh-ip-icon svg {
  width: 24px;
  height: 24px;
}

.twh-ip-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.twh-ip-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--twh-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.twh-ip-card .twh-card-btn {
  font-size: 13px;
  font-weight: 800;
  color: var(--twh-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.twh-ip-card .twh-card-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.twh-ip-card:hover .twh-card-btn svg {
  transform: translateX(3px);
}

/* Service Boxes */
.twh-service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--twh-line);
  padding-top: 60px;
}

.twh-service-box {
  background: var(--twh-bg-soft);
  border-radius: 16px;
  border: 1px solid var(--twh-line);
  padding: 34px;
}

.twh-service-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.twh-service-box-header span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--twh-purple-soft);
  color: var(--twh-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.twh-service-box h3 {
  font-size: 18px;
}

.twh-service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.twh-service-box li {
  font-size: 14px;
  color: var(--twh-muted);
  position: relative;
  padding-left: 20px;
}

.twh-service-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--twh-purple);
}

/* Why Choose Us Section */
.twh-why-section {
  background: var(--twh-bg-soft);
  border-top: 1px solid var(--twh-line);
  border-bottom: 1px solid var(--twh-line);
}

.twh-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.twh-why-card {
  background: var(--twh-bg);
  border: 1px solid var(--twh-line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--twh-shadow);
  display: flex;
  flex-direction: column;
}

.twh-why-card.large {
  grid-column: span 1;
}

.twh-why-card-metric {
  font-size: 64px;
  font-weight: 900;
  color: var(--twh-purple);
  line-height: 1;
  margin-bottom: 18px;
}

.twh-why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.twh-why-badge {
  padding: 8px;
  border-radius: 50%;
  background: var(--twh-purple-soft);
  color: var(--twh-purple);
}

.twh-why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.twh-why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--twh-muted);
  margin: 0;
}

/* Stepper / Timeline Section */
.twh-timeline-container {
  position: relative;
  margin-top: 60px;
}

.twh-timeline-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--twh-line);
  z-index: 1;
}

.twh-timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.twh-timeline-step {
  text-align: center;
  flex: 1;
  padding: 0 15px;
}

.twh-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--twh-bg);
  border: 2px solid var(--twh-line);
  color: var(--twh-muted);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.twh-timeline-step:hover .twh-step-num,
.twh-timeline-step.active .twh-step-num {
  border-color: var(--twh-purple);
  background: var(--twh-purple);
  color: #fff;
  box-shadow: 0 0 0 6px var(--twh-purple-soft);
}

.twh-timeline-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.twh-timeline-step p {
  font-size: 13px;
  color: var(--twh-muted);
  margin: 0;
}

/* Success Stories */
.twh-success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.twh-success-card {
  background: var(--twh-bg);
  border: 1px solid var(--twh-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--twh-shadow);
  transition: all 0.3s ease;
}

.twh-success-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--twh-shadow-hover);
}

.twh-success-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.twh-success-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.twh-success-card:hover .twh-success-img img {
  transform: scale(1.05);
}

.twh-success-info {
  padding: 30px;
}

.twh-success-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.twh-success-info p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--twh-muted);
  margin-bottom: 20px;
}

.twh-success-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.twh-success-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--twh-muted);
  background: var(--twh-bg-soft);
  border: 1px solid var(--twh-line);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Interactive CTA Section */
.twh-cta-section {
  background: var(--twh-bg-soft);
  border-top: 1px solid var(--twh-line);
  border-bottom: 1px solid var(--twh-line);
}

.twh-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.twh-cta-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.twh-cta-content p {
  font-size: 16px;
  color: var(--twh-muted);
  margin-bottom: 36px;
}

.twh-cta-actions {
  display: flex;
  gap: 16px;
}

/* Calendar widget mock styling */
.twh-calendar-card {
  background: var(--twh-bg);
  border: 1px solid var(--twh-line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--twh-shadow);
}

.twh-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.twh-cal-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--twh-primary);
}

.twh-cal-meta {
  font-size: 12px;
  color: var(--twh-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.twh-cal-meta svg {
  width: 14px;
  height: 14px;
}

.twh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.twh-cal-day-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--twh-muted);
  text-transform: uppercase;
}

.twh-cal-day {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--twh-primary);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.twh-cal-day.inactive {
  color: #c0c5d0;
  cursor: not-allowed;
}

.twh-cal-day.active {
  background: var(--twh-purple);
  color: #fff;
  font-weight: 800;
}

.twh-cal-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.twh-cal-slot {
  border: 1px solid var(--twh-line);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--twh-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twh-cal-slot:hover {
  border-color: var(--twh-purple);
  color: var(--twh-purple);
  background: var(--twh-purple-soft);
}

/* Technical Insights (Blog) */
.twh-insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.twh-insights-header .twh-section-title {
  margin: 0;
  text-align: left;
}

.twh-view-all {
  font-size: 14px;
  font-weight: 800;
  color: var(--twh-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.twh-view-all svg {
  width: 14px;
  height: 14px;
}

.twh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.twh-blog-card {
  display: flex;
  flex-direction: column;
}

.twh-blog-img {
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--twh-line);
  margin-bottom: 20px;
}

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

.twh-blog-card:hover .twh-blog-img img {
  transform: scale(1.04);
}

.twh-blog-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--twh-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.twh-blog-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.twh-blog-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--twh-muted);
  margin: 0;
}

/* Custom Footer moved to global style.css */

/* Mobile & Responsive Breakpoints */
@media (max-width: 1024px) {
  .twh-hero-content h1 {
    font-size: 46px;
  }
  
  .twh-ip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .twh-service-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .twh-why-grid {
    grid-template-columns: 1fr;
  }
  
  .twh-success-grid {
    grid-template-columns: 1fr;
  }
  
  .twh-blog-grid {
    grid-template-columns: 1fr;
  }
  
  .twh-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .twh-timeline-line {
    display: none;
  }
  
  .twh-timeline-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .twh-timeline-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }
  
  .twh-step-num {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .twh-section-pad {
    padding: 60px 0;
  }
  
  /* Header mobile styles moved to global style.css */
  
  .twh-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .twh-hero-content h1 {
    font-size: 38px;
  }
  
  .twh-hero-actions {
    flex-direction: column;
  }
  
  .twh-hero-actions .twh-btn {
    width: 100%;
  }
  
  .twh-ip-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer mobile styles moved to global style.css */
}

