/* ════════════════════════════════════════════════════════════
   tacuens — landing.css
   Landing pages: index, about, contact.
   Mirrors the design tokens from start/assets/css/theme.css
   but is fully self-contained (no dependency on that file).
════════════════════════════════════════════════════════════ */

:root {
  --tc-accent:      #00d4b4;
  --tc-accent-2:    #00c4e8;
  --tc-grad:        linear-gradient(90deg, #00d4b4, #00c4e8);
  --tc-btn-grad:    linear-gradient(135deg, #3de8c8, #00c4e8);
  --tc-btn-text:    #0f1923;
  --tc-btn-shadow:  0 6px 24px rgba(0,196,180,.34);

  --tc-bg: linear-gradient(160deg,
    #cfe0ef 0%, #ddeaf7 40%, #e4eff7 70%, #d5e8f2 100%);

  --tc-surface:       rgba(255,255,255,.60);
  --tc-surface-solid: rgba(255,255,255,.78);
  --tc-border:        rgba(255,255,255,.84);
  --tc-shadow:        0 8px 32px rgba(0,100,150,.09);
  --tc-shadow-lg:     0 24px 64px rgba(0,80,130,.14);

  --tc-text:  #0f1923;
  --tc-muted: #7a8fa0;
  --tc-dark:  #0f1923;

  --tc-radius-card: 24px;
  --tc-radius:      16px;
  --tc-radius-pill: 50px;

  --tc-font: 'Nunito', sans-serif;
}

/* ── Navbar logo: always visible on inner pages ─────── */
.tc-nav-logo {
  transition: opacity .28s ease, transform .28s ease;
}

/* Home page only: logo starts hidden; appears when hero logo scrolls away */
.page-home .tc-nav-logo {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}
.page-home .tc-nav.hero-logo-gone .tc-nav-logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ── Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--tc-font);
  color: var(--tc-text);
  background: var(--tc-bg);
  background-attachment: fixed;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout helpers ──────────────────────────────────── */
.tc-section    { padding: 96px 0; }
.tc-section-sm { padding: 64px 0; }

.tc-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.5px;
  color: var(--tc-text);
}
.tc-section-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--tc-muted);
  line-height: 1.65;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--tc-radius-pill);
  background: rgba(0,212,180,.12);
  color: var(--tc-accent);
  border: 1px solid rgba(0,212,180,.22);
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────────────── */
.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--tc-radius);
  font-family: var(--tc-font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
}
.tc-btn:hover  { opacity: .9; transform: translateY(-1px); }
.tc-btn:active { transform: scale(.97); opacity: 1; }

.tc-btn-primary {
  background: var(--tc-btn-grad);
  color: var(--tc-btn-text);
  box-shadow: var(--tc-btn-shadow);
}
.tc-btn-primary:hover { box-shadow: 0 8px 28px rgba(0,196,180,.46); color: var(--tc-btn-text); }

.tc-btn-ghost {
  background: var(--tc-surface);
  color: var(--tc-text);
  border: 1.5px solid var(--tc-border);
  backdrop-filter: blur(8px);
}
.tc-btn-ghost:hover { background: var(--tc-surface-solid); color: var(--tc-text); }

.tc-btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
}
.tc-btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.tc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .28s, backdrop-filter .28s, box-shadow .28s;
}
.tc-nav.scrolled {
  background: rgba(215,232,246,.86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(255,255,255,.55), 0 4px 24px rgba(0,80,130,.07);
}
.tc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.tc-nav-logo { display: flex; align-items: center; }
.tc-nav-logo svg { height: 32px; width: auto; }

.tc-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.tc-nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--tc-muted);
  padding: 7px 12px;
  border-radius: 10px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.tc-nav-links a:hover { color: var(--tc-text); background: rgba(255,255,255,.5); }
.tc-nav-links a.active { color: var(--tc-text); }

.tc-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 10px;
  overflow: hidden;
  gap: 2px;
  padding: 2px;
}
.lang-btn {
  padding: 5px 9px;
  font-family: var(--tc-font);
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--tc-muted);
  border-radius: 8px;
  transition: background .15s, color .15s;
  line-height: 1;
}
.lang-btn.active { background: #fff; color: var(--tc-text); }

/* Mobile toggler */
.tc-nav-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--tc-text);
  font-size: 24px;
  line-height: 1;
}

/* Mobile nav */
@media (max-width: 900px) {
  .tc-nav-links { display: none; }
  .tc-nav-cta   { display: none; }
  .tc-nav-toggler { display: flex; }

  .tc-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(215,232,246,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 8px 28px rgba(0,80,130,.1);
    gap: 2px;
  }
  .tc-nav-links.open li { width: 100%; }
  .tc-nav-links.open a  { display: block; padding: 12px 14px; font-size: 16px; }
  .tc-nav-links.open .tc-nav-mobile-cta {
    display: flex;
    gap: 10px;
    padding: 16px 14px 4px;
    flex-wrap: wrap;
  }
  .tc-nav-links.open .tc-nav-mobile-cta a { padding: 12px 22px; font-size: 15px; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.tc-hero {
  padding: 128px 0 72px;
  overflow: hidden;
}
/* Prominent logo above the hero headline */
.tc-hero-logo {
  margin-bottom: 22px;
}
.tc-hero-logo svg {
  height: 130px;
  width: auto;
}
@media (max-width: 991px) {
  .tc-hero-logo svg { height: 100px; }
}
@media (max-width: 575px) {
  .tc-hero-logo svg { height: 80px; }
}

.tc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tc-accent);
  margin-bottom: 18px;
}
.tc-hero-eyebrow::before {
  content: '';
  width: 30px; height: 2.5px;
  background: var(--tc-btn-grad);
  border-radius: 2px;
}
.tc-hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--tc-text);
  margin-bottom: 20px;
}
.tc-hero-title .accent {
  background: var(--tc-btn-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--tc-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}
.tc-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tc-hero-free {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tc-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-hero-free::before {
  content: '✓';
  color: var(--tc-accent);
  font-weight: 900;
  font-size: 14px;
}

/* Phone mockup */
.tc-hero-phones {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.tc-phone {
  background: #111827;
  border-radius: 30px;            /* proportional to 250px width; was 36px */
  padding: 4px 6px 6px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 40px 90px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.10);
}
.tc-phone-island {
  width: 52px;
  height: 12px;
  background: #000;
  border-radius: 7px;
  margin: 0 auto 3px;
}
.tc-phone-screen {
  border-radius: 0 0 22px 22px;  /* flat top, moderate rounded bottom */
  overflow: hidden;
  line-height: 0;
}
.tc-phone-screen img { width: 100%; display: block; }

.tc-phone-primary {
  width: 250px;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 2;
}
.tc-phone-secondary {
  width: 228px;
  position: absolute;
  left: 10px;
  top: 70px;
  z-index: 1;
  transform: rotate(-5deg);
  opacity: .78;
  filter: brightness(.95);
}

@media (max-width: 991px) {
  .tc-hero          { padding-top: 100px; }
  .tc-hero-text     { text-align: center; order: 2; }
  .tc-hero-sub      { margin-left: auto; margin-right: auto; }
  .tc-hero-btns     { justify-content: center; }
  .tc-hero-free     { justify-content: center; }
  .tc-hero-eyebrow  { justify-content: center; }
  .tc-hero-phones   { height: 480px; order: 1; margin-bottom: 24px; }
  .tc-phone-primary { width: 210px; right: 8px; }
  .tc-phone-secondary { width: 190px; left: 8px; }
}
@media (max-width: 575px) {
  .tc-hero-phones   { height: 420px; }
  .tc-phone-primary { width: 190px; right: 50%; transform: translateX(50%); }
  .tc-phone-secondary { display: none; }
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.tc-how { background: rgba(255,255,255,.32); }

.tc-step-card {
  background: var(--tc-surface-solid);
  border: 1px solid var(--tc-border);
  border-radius: var(--tc-radius-card);
  padding: 30px 26px;
  box-shadow: var(--tc-shadow);
  height: 100%;
  transition: transform .22s, box-shadow .22s;
}
.tc-step-card:hover { transform: translateY(-5px); box-shadow: var(--tc-shadow-lg); }

.tc-step-num {
  width: 46px; height: 46px;
  border-radius: 15px;
  background: var(--tc-btn-grad);
  color: var(--tc-btn-text);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0,196,180,.30);
}
.tc-step-icon  { font-size: 26px; color: var(--tc-accent); margin-bottom: 10px; }
.tc-step-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.tc-step-sub   { font-size: 14px; color: var(--tc-muted); line-height: 1.62; font-weight: 500; }

/* ══════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════ */
.tc-features-wrap { padding: 80px 0 40px; }

.tc-feat-row {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(200,218,232,.28);
}
.tc-feat-row:last-child { border-bottom: none; }
.tc-feat-row.tc-feat-reverse { flex-direction: row-reverse; }

.tc-feat-text { flex: 1; min-width: 0; }
.tc-feat-visual { flex: 0 0 auto; }

/* feature phone is slightly smaller than hero */
.tc-feat-visual .tc-phone { width: 240px; }

.tc-feat-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}
.tc-feat-sub {
  font-size: 16px;
  color: var(--tc-muted);
  line-height: 1.72;
  font-weight: 500;
  max-width: 430px;
}

@media (max-width: 768px) {
  .tc-feat-row,
  .tc-feat-row.tc-feat-reverse {
    flex-direction: column;
    gap: 32px;
    padding: 44px 0;
  }
  .tc-feat-visual .tc-phone { width: 210px; margin: 0 auto; }
  .tc-feat-sub { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   USE CASES
══════════════════════════════════════════════════════ */
.tc-uses { background: rgba(255,255,255,.32); }

.tc-use-card {
  background: var(--tc-surface-solid);
  border: 1px solid var(--tc-border);
  border-radius: var(--tc-radius-card);
  padding: 30px 26px;
  box-shadow: var(--tc-shadow);
  height: 100%;
  transition: transform .22s, box-shadow .22s;
}
.tc-use-card:hover { transform: translateY(-5px); box-shadow: var(--tc-shadow-lg); }

.tc-use-icon {
  width: 54px; height: 54px;
  border-radius: 17px;
  background: rgba(0,212,180,.12);
  border: 1px solid rgba(0,212,180,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--tc-accent);
  margin-bottom: 18px;
}
.tc-use-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.tc-use-sub   { font-size: 14px; color: var(--tc-muted); line-height: 1.62; font-weight: 500; }

/* ══════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════ */
.tc-plan {
  background: var(--tc-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--tc-border);
  border-radius: var(--tc-radius-card);
  padding: 34px 30px;
  box-shadow: var(--tc-shadow);
  height: 100%;
  transition: transform .22s;
  display: flex;
  flex-direction: column;
}
.tc-plan:hover { transform: translateY(-5px); }

.tc-plan-featured {
  background: var(--tc-dark);
  border-color: rgba(0,212,180,.28);
  box-shadow: 0 0 0 2px rgba(0,212,180,.22), var(--tc-shadow-lg);
  color: #e2eaf2;
}
.tc-plan-featured-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--tc-btn-grad);
  color: var(--tc-btn-text);
  margin-bottom: 14px;
}

.tc-plan-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--tc-muted);
  margin-bottom: 12px;
}
.tc-plan-featured .tc-plan-name { color: var(--tc-accent); }

.tc-plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1;
}
.tc-plan-currency {
  font-size: 20px;
  font-weight: 800;
  color: var(--tc-muted);
  padding-bottom: 6px;
}
.tc-plan-featured .tc-plan-currency { color: rgba(255,255,255,.4); }

.tc-plan-amount {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--tc-text);
}
.tc-plan-featured .tc-plan-amount { color: #fff; }

.tc-plan-period {
  font-size: 14px;
  font-weight: 600;
  color: var(--tc-muted);
  padding-bottom: 8px;
}
.tc-plan-sub {
  font-size: 13px;
  color: var(--tc-muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.tc-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.tc-plan-features li {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tc-text);
}
.tc-plan-featured .tc-plan-features li { color: #c0d4e4; }
.tc-plan-features li::before {
  content: '✓';
  color: var(--tc-accent);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════ */
.tc-cta {
  background: linear-gradient(135deg, #071210 0%, #0f1923 60%, #07141e 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tc-cta::before {
  content: '';
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,180,.16) 0%, transparent 68%);
  pointer-events: none;
}
.tc-cta .tc-section-title { color: #fff; margin-bottom: 12px; }
.tc-cta .tc-section-sub   { color: rgba(255,255,255,.48); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.tc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.tc-footer {
  background: #0a1520;
  padding: 52px 0 32px;
}
.tc-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.tc-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.tc-footer-logo { opacity: .88; }
.tc-footer-logo svg { height: 28px; width: auto; }

.tc-footer-links {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.tc-footer-links a {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255,255,255,.42);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.tc-footer-links a:hover { color: #fff; background: rgba(255,255,255,.06); }

.tc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.tc-footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.3);
}
.tc-footer-social { display: flex; gap: 8px; }
.tc-footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background .15s, color .15s;
}
.tc-footer-social a:hover { background: rgba(0,212,180,.14); color: var(--tc-accent); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.tc-page-header {
  padding: 130px 0 56px;
}
.tc-page-header .tc-section-title { margin-bottom: 14px; }

.tc-about-body {
  font-size: 16px;
  line-height: 1.84;
  color: var(--tc-muted);
  font-weight: 500;
  white-space: pre-line;
}
.tc-about-body p { margin-bottom: 18px; }

.tc-vision-card {
  background: var(--tc-dark);
  border-radius: var(--tc-radius-card);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.tc-vision-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(0,212,180,.14) 0%, transparent 68%);
  pointer-events: none;
}
.tc-vision-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.3px;
}
.tc-vision-card p {
  font-size: 16px;
  line-height: 1.84;
  color: rgba(255,255,255,.56);
  font-weight: 500;
  max-width: 640px;
}
@media (max-width: 767px) {
  .tc-vision-card { padding: 32px 28px; }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.tc-contact-card {
  background: var(--tc-surface);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--tc-border);
  border-radius: var(--tc-radius-card);
  padding: 44px;
  box-shadow: var(--tc-shadow);
}
@media (max-width: 575px) { .tc-contact-card { padding: 26px; } }

.tc-input {
  width: 100%;
  background: rgba(255,255,255,.68);
  border: 1.5px solid rgba(200,215,228,.78);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--tc-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--tc-text);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  display: block;
  margin-bottom: 14px;
}
.tc-input:focus {
  border-color: var(--tc-accent);
  box-shadow: 0 0 0 3px rgba(0,212,180,.14);
}
.tc-input::placeholder { color: var(--tc-muted); font-weight: 500; }
textarea.tc-input { resize: vertical; min-height: 130px; }

.tc-contact-side {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.tc-contact-side p {
  font-size: 15px;
  color: var(--tc-muted);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 28px;
}
.tc-contact-email {
  font-size: 16px;
  font-weight: 800;
  color: var(--tc-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.tc-contact-email:hover { color: var(--tc-accent-2); }

.tc-alert-ok {
  background: rgba(0,212,180,.1);
  border: 1px solid rgba(0,212,180,.25);
  color: #00a890;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .tc-contact-side { padding-left: 0; padding-top: 28px; }
}

/* ══════════════════════════════════════════════════════
   SCROLL FADE-IN
══════════════════════════════════════════════════════ */
.tc-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.tc-fade.visible { opacity: 1; transform: none; }
.tc-fade-delay-1 { transition-delay: .08s; }
.tc-fade-delay-2 { transition-delay: .16s; }
.tc-fade-delay-3 { transition-delay: .24s; }
.tc-fade-delay-4 { transition-delay: .32s; }
