@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --primary: #4f6ef7;
  --primary-dark: #3454e6;
  --secondary: #0f172a;
  --accent: #eaf0ff;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #e8efff;
  --text-main: #0f172a;
  --text-soft: #475569;
  --border-light: rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 16px 42px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 20px 56px rgba(15, 23, 42, 0.12);
  --font-heading: 'Manrope', sans-serif;
  --radius-sm: 0.25rem;
  --radius: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 0.875rem;
}

body {
  background: #ffffff;
  color: var(--text-main);
}

body::before,
body::after {
  display: none;
}

#cursor-trail {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.14), transparent 72%);
  opacity: 0.9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-family: var(--font-heading);
}

.site-header {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.logo-badge {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(79, 110, 247, 0.28);
}

.logo-crest > div strong {
  font-size: 1.05rem;
}

.logo-crest small {
  letter-spacing: 0.18em;
  color: #777777;
}

.site-nav {
  gap: 0.15rem;
}

.site-nav a {
  position: relative;
  color: #3d3d3d;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: transparent;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.primary-btn,
.ghost-btn {
  padding: 0.78rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.1;
  border: 1px solid transparent;
}

.primary-btn {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 110, 247, 0.2);
}

.primary-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(79, 110, 247, 0.25);
  transform: translateY(-1px);
}

.ghost-btn {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.ghost-btn:hover {
  background: #f8fafc;
  color: var(--primary-dark);
  border-color: rgba(79, 110, 247, 0.35);
  transform: translateY(-1px);
}

.site-footer {
  background: #ffffff;
  color: #4b4b4b;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer .container {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.footer-brand-name,
.footer-col-title,
.footer-links a,
.footer-brand p,
.footer-contact p,
.copyright,
.copyright span {
  color: inherit;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--primary-dark);
}

.footer-logo-badge {
  background: var(--primary);
}

.footer-badge {
  background: rgba(79, 110, 247, 0.1);
  color: #2748d8;
}

.tek-home {
  position: relative;
  overflow: hidden;
}

.tek-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tek-home > section:not(.tek-hero):not(.tek-partners-strip) {
  padding: 7rem 0;
}

.tek-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #2748d8;
  background: rgba(79, 110, 247, 0.09);
  border: 1px solid rgba(79, 110, 247, 0.18);
  padding: 0.48rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.4rem;
}

.tek-section-heading {
  margin-bottom: 3.2rem;
}

.tek-section-heading.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tek-section-heading h2 {
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 900px;
}

.tek-section-heading p {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 620px;
  margin-top: 1rem;
}

.tek-section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.tek-home > section.tek-hero {
  padding: 0 0 5.5rem;
}

.tek-hero {
  min-height: 840px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.tek-hero-socials {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transform: translateY(-50%);
}

.tek-hero-socials-label {
  order: 4;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5d5d5d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.tek-hero-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: #1e293b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.tek-hero-socials a::first-letter {
  font-size: 0.86rem;
}

.tek-hero-socials a:hover {
  background: var(--primary);
  color: #ffffff;
}

.tek-hero-slider {
  position: relative;
  min-height: 780px;
  background: #f8fafc;
}

.tek-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.tek-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.58) 63%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(180deg, rgba(79, 110, 247, 0.08) 0%, rgba(255, 255, 255, 0) 38%);
  z-index: 1;
}

.tek-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center right;
  border-radius: 0;
  z-index: 0;
}

.tek-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tek-hero-grid {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.35fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-top: 1.25rem;
}

.tek-hero-copy {
  max-width: 820px;
  padding-bottom: 3.8rem;
}

.tek-hero-copy h1 {
  font-size: 6.25rem;
  line-height: 0.93;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
}

.tek-hero-copy p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #525252;
  max-width: 600px;
  margin-bottom: 2.2rem;
}

.tek-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.tek-hero-side {
  display: none;
}

.tek-hero-actions .ghost-btn {
  display: none;
}

.tek-hero-actions .primary-btn {
  min-height: 62px;
  padding: 0.86rem 0.92rem 0.86rem 1.65rem;
  gap: 1rem;
}

.tek-hero-actions .primary-btn::after {
  content: '↗';
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.tek-hero-panel,
.tek-metric,
.tek-highlight-card,
.tek-about-image-wrap,
.tek-about-metric,
.tek-process-card,
.tek-service-panel,
.tek-price-card,
.tek-case-item,
.tek-testimonial-card,
.tek-news-card,
.tek-contact-form,
.tek-contact-card,
.tek-faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.tek-hero-panel {
  max-width: 360px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.tek-hero-panel-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4d4d4d;
}

.tek-hero-panel strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.tek-hero-panel p {
  color: #606060;
}

.tek-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(100%, 520px);
}

.tek-metric {
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  min-height: 124px;
}

.tek-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0.55rem;
}

.tek-metric-label {
  font-size: 0.9rem;
  color: #626262;
}

.tek-hero-bottom {
  margin-top: -170px;
  display: grid;
  grid-template-columns: 160px minmax(0, 770px);
  gap: 1.25rem;
  align-items: end;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.tek-hero-nav {
  display: flex;
  gap: 0.65rem;
}

.tek-hero-nav button {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tek-hero-nav button:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.tek-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.tek-highlight-card {
  position: relative;
  min-height: 168px;
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem 1.7rem 6.1rem;
  overflow: hidden;
}

.tek-highlight-card::before {
  content: '';
  position: absolute;
  left: 1.55rem;
  top: 1.55rem;
  width: 66px;
  height: 66px;
  border-radius: var(--radius-md);
  background: var(--primary);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.tek-highlight-card::after {
  content: '✓';
  position: absolute;
  left: 1.55rem;
  top: 1.55rem;
  width: 66px;
  height: 66px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 800;
}

.tek-highlight-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
}

.tek-highlight-card p {
  color: #626262;
}

.tek-partners-strip {
  padding: 1.35rem 0;
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.tek-partners-track {
  display: flex;
  width: max-content;
  animation: tek-marquee 24s linear infinite;
}

.tek-partners-group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.tek-partners-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #2a2a2a;
}

@keyframes tek-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tek-about {
  background:
    radial-gradient(circle at top left, rgba(79, 110, 247, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tek-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.tek-about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tek-about-image-wrap img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
}

.tek-review-card {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 320px;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.tek-review-avatars {
  display: flex;
  margin-bottom: 0.85rem;
}

.tek-review-avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #ffffff;
  margin-right: -0.55rem;
}

.tek-about-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.tek-check-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.tek-check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #2f2f2f;
  font-weight: 500;
}

.tek-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.tek-about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tek-about-metric {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tek-about-metric-value span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.tek-about-metric h3 {
  font-size: 1.1rem;
  margin: 0.9rem 0 0.6rem;
}

.tek-about-metric p {
  color: #666666;
}

.tek-process {
  background: #f8fafc;
}

.tek-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tek-process-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.tek-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.tek-process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.tek-process-card p {
  color: #666666;
}

.tek-services-wrap {
  display: grid;
  gap: 1.6rem;
}

.tek-service-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.tek-service-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #1c1c1c;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tek-service-tab span {
  font-size: 0.86rem;
  color: #6a6a6a;
}

.tek-service-tab:hover,
.tek-service-tab.is-active {
  background: #edf3ff;
  border-color: rgba(79, 110, 247, 0.22);
  transform: translateY(-2px);
}

.tek-service-tab-indicator {
  display: none;
}

.tek-service-panels {
  position: relative;
}

.tek-service-panel {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.tek-service-panel.is-active {
  display: grid;
}

.tek-service-index {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: #5f5f5f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tek-service-copy h3 {
  font-size: 2.3rem;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.tek-service-copy p {
  font-size: 1.04rem;
  line-height: 1.8;
  color: #5f5f5f;
  margin-bottom: 1.4rem;
}

.tek-service-feature-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.tek-service-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #2c2c2c;
}

.tek-service-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.tek-service-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 460px;
}

.tek-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tek-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

.tek-text-link::after {
  content: '→';
}

.tek-pricing {
  background: #f8fafc;
}

.tek-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tek-price-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.tek-price-card.is-featured {
  background: linear-gradient(180deg, rgba(79, 110, 247, 0.14) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(79, 110, 247, 0.2);
  transform: translateY(-8px);
}

.tek-price-header {
  margin-bottom: 1.4rem;
}

.tek-price-badge {
  display: inline-flex;
  margin-bottom: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(79, 110, 247, 0.09);
  color: #2748d8;
  font-size: 0.8rem;
  font-weight: 700;
}

.tek-price-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.65rem;
}

.tek-price-header p {
  color: #646464;
  margin-bottom: 1rem;
}

.tek-price-header strong {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  letter-spacing: 0;
}

.tek-price-features {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.tek-price-features li {
  position: relative;
  padding-left: 1.5rem;
  color: #323232;
}

.tek-price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.tek-cases-list {
  display: grid;
  gap: 1rem;
}

.tek-case-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 72px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.55rem 1.6rem;
  border-radius: var(--radius-lg);
}

.tek-case-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #6a6a6a;
}

.tek-case-copy h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.tek-case-copy p {
  color: #666666;
}

.tek-icon-link {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: #edf3ff;
  color: #2748d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.tek-testimonials {
  background: #f8fafc;
}

.tek-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tek-testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.tek-testimonial-stars {
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: 0.2em;
}

.tek-testimonial-card p {
  color: #555555;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.tek-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tek-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
}

.tek-testimonial-footer span {
  display: block;
  color: #6b6b6b;
  font-size: 0.92rem;
}

.tek-tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tek-tech-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-heading);
  font-weight: 700;
}

.tek-faq {
  background: #f8fafc;
}

.tek-faq-list {
  display: grid;
  gap: 1rem;
}

.tek-faq-item {
  border-radius: var(--radius-lg);
  padding: 0 1.5rem;
}

.tek-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
}

.tek-faq-item summary::-webkit-details-marker {
  display: none;
}

.tek-faq-item summary::after {
  content: '+';
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: #edf3ff;
  color: #2748d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}

.tek-faq-item[open] summary::after {
  content: '−';
}

.tek-faq-item p {
  padding: 0 0 1.35rem;
  color: #646464;
}

.tek-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tek-news-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tek-news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.tek-news-card.is-empty {
  display: flex;
  align-items: stretch;
}

.tek-news-body {
  padding: 1.45rem;
}

.tek-news-body span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: #6a6a6a;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tek-news-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.tek-news-body p {
  color: #666666;
  margin-bottom: 1rem;
}

.tek-contact {
  background:
    radial-gradient(circle at top right, rgba(79, 110, 247, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tek-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.tek-contact-copy h2 {
  max-width: 560px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.tek-contact-copy p {
  max-width: 520px;
  color: #5f5f5f;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.tek-contact-card {
  width: min(100%, 420px);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.9rem;
}

.tek-contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.tek-contact-card span {
  color: #5b5b5b;
}

.tek-contact-form {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.tek-contact-form label {
  color: #2d2d2d;
  font-weight: 700;
}

.tek-contact-form input,
.tek-contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.tek-contact-form input:focus,
.tek-contact-form textarea:focus {
  border-color: rgba(79, 110, 247, 0.8);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.16);
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .tek-hero-socials {
    display: none;
  }

  .tek-hero-grid,
  .tek-about-grid,
  .tek-contact-grid {
    grid-template-columns: 1fr;
  }

  .tek-hero-side {
    justify-items: start;
  }

  .tek-hero-metrics,
  .tek-service-tabs,
  .tek-pricing-grid,
  .tek-testimonial-grid,
  .tek-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tek-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .tek-home > section:not(.tek-hero):not(.tek-partners-strip) {
    padding: 5.5rem 0;
  }

  .tek-hero-slider,
  .tek-hero-grid {
    min-height: auto;
  }

  .tek-home > section.tek-hero {
    padding: 0 0 4rem;
  }

  .tek-hero {
    min-height: auto;
  }

  .tek-hero-slide {
    position: relative;
    display: none;
  }

  .tek-hero-slide.is-active {
    display: block;
  }

  .tek-hero-grid {
    padding: 5.5rem 0 2rem;
  }

  .tek-hero-copy h1 {
    font-size: 4.2rem;
  }

  .tek-hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    align-items: start;
    justify-content: stretch;
  }

  .tek-hero-highlights,
  .tek-about-metrics,
  .tek-pricing-grid,
  .tek-testimonial-grid,
  .tek-news-grid,
  .tek-hero-metrics {
    grid-template-columns: 1fr;
  }

  .tek-service-panel {
    grid-template-columns: 1fr;
  }

  .tek-case-item {
    grid-template-columns: 72px 1fr;
  }

  .tek-icon-link {
    display: none;
  }
}

@media (max-width: 768px) {
  .tek-shell {
    padding: 0 1.25rem;
  }

  .site-header {
    padding: 0.8rem 1.25rem;
  }

  .tek-section-heading h2,
  .tek-contact-copy h2 {
    font-size: 2.6rem;
  }

  .tek-hero-copy h1 {
    font-size: 3.2rem;
  }

  .tek-section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tek-service-tabs {
    grid-template-columns: 1fr;
  }

  .tek-service-panel,
  .tek-contact-form {
    padding: 1.5rem;
  }

  .tek-about-image-wrap img {
    min-height: 460px;
  }

  .tek-price-card.is-featured {
    transform: none;
  }
}
