/* TCOM Solutions — Professional Trust-Building Theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1b2a;
  --bg-2: #132337;
  --bg-3: #1a2e45;
  --fg: #f0f4ff;
  --fg-muted: #8899aa;
  --accent: #f5a623;
  --accent-warm: #e8930a;
  --blue: #4a90d9;
  --green: #34d399;
  --border: rgba(240, 244, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #0d1b2a;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}
.nav-links a.nav-cta {
  background: var(--accent);
  color: #0d1b2a;
  font-weight: 600;
}
.nav-links a.nav-cta:hover {
  background: var(--accent-warm);
  color: #0d1b2a;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: background 0.2s;
}
.hamburger:hover span { background: var(--fg); }

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline .accent {
  display: block;
  background: linear-gradient(135deg, #f5a623, #e8930a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d1b2a;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(240,244,255,0.2);
}

/* ── TRUST SIGNALS BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 32px 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  max-width: 140px;
}

/* ── WIZARDS ── */
.wizards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.wizard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wizard-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.2s;
  text-decoration: none;
}
.wizard-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-3px);
}
.wizard-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--fg);
}
.wizard-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}
.wizard-card-footer {
  margin-top: auto;
  padding-top: 8px;
}
.btn-wizard {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.btn-wizard:hover { gap: 10px; }
.btn-wizard svg {
  transition: transform 0.2s;
}
.wizard-card:hover .btn-wizard svg {
  transform: translateX(3px);
}

/* ── SERVICES ── */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(245, 166, 35, 0.2); }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── WHY TCOM ── */
.why-tcom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-left {}
.why-left h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.why-left p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principle-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.principle-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.principle-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.principle-text p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.cta-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
}
.cta-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.cta-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Instrument Sans', sans-serif;
}
.cta-input::placeholder { color: var(--fg-muted); }
.cta-input:focus { border-color: rgba(245, 166, 35, 0.4); }
.cta-success {
  font-size: 15px;
  color: var(--green);
  margin-top: 12px;
  display: none;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--fg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wizard-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 14px; }
  .hamburger { display: flex; }
  .hero { padding: 64px 24px 56px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .trust-bar-inner { flex-direction: column; gap: 24px; }
  .trust-item { border-right: none; padding: 0; }
  .cta-inner { padding: 40px 24px; }
  .cta-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── ABOUT PAGE ── */

/* About Hero */
.about-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: center;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
}
.about-hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.about-hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.about-hero-sub strong {
  color: var(--fg);
  font-weight: 600;
}

/* About History / Timeline */
.about-history {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}
.about-history-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.timeline {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}
.timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
  padding-right: 40px;
  padding-top: 4px;
  position: relative;
}
.timeline-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.timeline-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* About Principles */
.about-principles {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
  background: var(--bg-2);
}
.about-principles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-principles-left {
  padding-top: 8px;
}
.about-principles-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.about-principles-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-principles-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.principle-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.principle-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.principle-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.principle-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* About Partners */
.about-partners {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}
.about-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.partner-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.partner-category {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.partner-category h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.partner-category p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.partner-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  text-align: center;
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* About Team */
.about-team {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
  background: var(--bg-2);
}
.about-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.team-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card-placeholder {
  background: var(--bg-3);
  border: 1px dashed rgba(240, 244, 255, 0.15);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}
.team-avatar-placeholder {
  width: 72px;
  height: 72px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--fg-muted);
}
.team-card-placeholder h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.team-card-placeholder p {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}
.team-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}
.team-note a {
  color: var(--accent);
  text-decoration: none;
}
.team-note a:hover { text-decoration: underline; }

/* About Page Responsive */
@media (max-width: 900px) {
  .about-principles-grid { grid-template-columns: 1fr; gap: 48px; }
  .partner-categories { grid-template-columns: 1fr; }
  .team-placeholder { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .timeline::before { left: 40px; }
  .timeline-year { font-size: 13px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .about-hero { padding: 72px 24px 48px; }
  .timeline-item { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { display: none; }
  .timeline-year { text-align: left; padding-right: 0; padding-bottom: 4px; }
  .timeline-year::after { display: none; }
}