/* Handy Msafart LLC — Thumbtack-inspired layout */

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

:root {
  --blue: #009FD9;
  --blue-dark: #0088ba;
  --blue-light: #e6f6fc;
  --dark: #2F3033;
  --green: #2ecc71;
  --white: #ffffff;
  --gray-50: #f7f8f9;
  --gray-100: #eef0f2;
  --gray-200: #d8dce0;
  --gray-400: #9aa0a6;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --text: #2F3033;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wide: 1180px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(47,48,51,0.08);
  --shadow-lg: 0 8px 32px rgba(47,48,51,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Header ── */
.tt-header { background: var(--white); border-bottom: 1px solid var(--gray-100); position: sticky; top: 0; z-index: 500; }
.tt-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 8px;
}
.tt-logo { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.tt-logo-icon { width: 28px; height: 28px; background: var(--blue); border-radius: 50%; position: relative; flex-shrink: 0; }
.tt-logo-icon::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--white); border-radius: 50%; top: 7px; left: 10px; }

.tt-nav { display: flex; align-items: center; margin-left: 32px; flex: 1; gap: 4px; }
.tt-nav > li { position: relative; }
.tt-nav > li > a, .tt-nav > li > span.nav-label {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--gray-800); cursor: pointer;
}
.tt-nav > li > a:hover, .tt-nav > li:hover > span.nav-label { color: var(--blue); }
.tt-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all 0.15s; z-index: 200;
}
.tt-nav > li:hover .tt-dropdown { opacity: 1; visibility: visible; transform: none; }
.tt-dropdown a { display: block; padding: 10px 18px; font-size: 14px; color: var(--gray-800); }
.tt-dropdown a:hover { background: var(--gray-50); color: var(--blue); }

.tt-header-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.tt-header-link { font-size: 14px; font-weight: 500; color: var(--gray-800); padding: 8px 12px; }
.tt-header-link:hover { color: var(--blue); }
.tt-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dark); }

.tt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  border-radius: var(--radius); transition: all 0.15s; white-space: nowrap;
}
.tt-btn-primary { background: var(--blue); color: var(--white) !important; padding: 12px 24px; }
.tt-btn-primary:hover { background: var(--blue-dark); }
.tt-btn-outline { background: var(--white); color: var(--blue) !important; border: 2px solid var(--blue); padding: 10px 22px; }
.tt-btn-outline:hover { background: var(--blue-light); }
.tt-btn-dark { background: var(--dark); color: var(--white) !important; padding: 12px 24px; }
.tt-btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── Hero ── */
.tt-hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  background: var(--gray-50); overflow: hidden;
}
.tt-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-home.jpg') center/cover no-repeat;
}
.tt-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 45%, rgba(255,255,255,0.4) 100%);
}
.tt-hero-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: 72px 24px; width: 100%;
}
.tt-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.12; color: var(--dark); max-width: 640px; margin-bottom: 16px;
}
.tt-hero-sub { font-size: 18px; color: var(--gray-600); max-width: 520px; margin-bottom: 32px; line-height: 1.6; }

.tt-search-bar {
  display: flex; flex-wrap: wrap; background: var(--white);
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 680px; overflow: hidden;
}
.tt-search-field { flex: 1; min-width: 160px; padding: 4px 0; border-right: 1px solid var(--gray-100); }
.tt-search-field:last-of-type { border-right: none; }
.tt-search-field label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); padding: 12px 16px 0; }
.tt-search-field input, .tt-search-field select {
  width: 100%; border: none; padding: 4px 16px 14px; font-family: var(--font); font-size: 15px;
  background: transparent; color: var(--dark); outline: none;
}
.tt-search-bar .tt-btn-primary { border-radius: 0; padding: 20px 28px; align-self: stretch; font-size: 15px; }
.tt-hero-note { font-size: 13px; color: var(--gray-400); margin-top: 12px; }

.tt-stats-row {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.tt-stat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); }
.tt-stat strong { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.tt-stars { color: #f5a623; letter-spacing: 1px; }

/* ── Category pills scroll ── */
.tt-categories { padding: 48px 0; background: var(--white); }
.tt-categories-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.tt-categories h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tt-categories > .tt-categories-inner > p { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; }
.tt-pill-wrap { position: relative; }
.tt-pill-scroll {
  display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 8px; scrollbar-width: none;
}
.tt-pill-scroll::-webkit-scrollbar { display: none; }
.tt-pill {
  flex-shrink: 0; padding: 12px 20px; background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--gray-800);
  transition: all 0.15s; display: flex; align-items: center; gap: 8px;
}
.tt-pill:hover, .tt-pill.active { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.tt-scroll-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gray-800);
}
.tt-scroll-left { left: -8px; }
.tt-scroll-right { right: -8px; }

.tt-subcat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px;
}
.tt-subcat-card {
  display: block; overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  font-size: 14px; font-weight: 600; color: var(--gray-800); transition: all 0.2s;
}
.tt-subcat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); color: var(--blue); transform: translateY(-2px); }
.tt-subcat-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.tt-subcat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.tt-subcat-card:hover .tt-subcat-thumb img { transform: scale(1.05); }
.tt-subcat-label { display: block; padding: 14px 16px; line-height: 1.35; }

.tt-pill img {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}

/* ── Why choose ── */
.tt-why { padding: 64px 24px; background: var(--gray-50); }
.tt-why-inner { max-width: var(--wide); margin: 0 auto; text-align: center; }
.tt-why h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.tt-why > .tt-why-inner > p { font-size: 16px; color: var(--gray-600); max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }
.tt-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.tt-why-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.tt-why-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.tt-why-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-why-card-body { padding: 24px 28px 28px; }
.tt-why-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.tt-why-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.tt-why-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── Explore projects tabs ── */
.tt-explore { padding: 64px 24px; background: var(--white); }
.tt-explore-inner { max-width: var(--wide); margin: 0 auto; }
.tt-explore h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.tt-explore-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; margin-bottom: 32px;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100);
  background: var(--white); box-shadow: var(--shadow);
}
.tt-explore-feature-img { min-height: 220px; background: var(--gray-100); }
.tt-explore-feature-img img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.tt-explore-feature-body {
  padding: 32px 36px; display: flex; flex-direction: column; justify-content: center;
}
.tt-explore-feature-body h3 { font-size: 1.35rem; font-weight: 700; line-height: 1.35; margin-bottom: 12px; color: var(--dark); }
.tt-explore-feature-body p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.tt-explore-feature-body a { font-size: 14px; font-weight: 600; color: var(--blue); }
.tt-explore-feature-body a:hover { text-decoration: underline; }
.tt-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; border-bottom: 1px solid var(--gray-100); padding-bottom: 0; }
.tt-tab {
  padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--gray-600);
  background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer;
  font-family: var(--font); margin-bottom: -1px; transition: all 0.15s;
}
.tt-tab.active, .tt-tab:hover { color: var(--blue); border-bottom-color: var(--blue); }
.tt-tab-panel { display: none; }
.tt-tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tt-project-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100);
  background: var(--white); transition: box-shadow 0.2s; display: block; color: inherit;
}
.tt-project-card:hover { box-shadow: var(--shadow-lg); }
.tt-project-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.tt-project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.tt-project-card:hover .tt-project-img img { transform: scale(1.03); }
.tt-project-body { padding: 20px; }
.tt-project-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.tt-project-body p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── Resources ── */
.tt-resources { padding: 64px 24px; background: var(--gray-50); }
.tt-resources-inner { max-width: var(--wide); margin: 0 auto; }
.tt-resources h2 { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.tt-resources > .tt-resources-inner > p { text-align: center; color: var(--gray-600); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.tt-resource-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-resource-col {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow);
}
.tt-resource-col-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.tt-resource-col-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-resource-col-body { padding: 24px 28px 28px; }
.tt-resource-col-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.tt-resource-col-body > p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.55; }
.tt-resource-list li { margin-bottom: 10px; }
.tt-resource-list a { font-size: 14px; font-weight: 500; color: var(--blue); }
.tt-resource-list a:hover { text-decoration: underline; }
.tt-resource-more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* ── Cost guide cards row ── */
.tt-cost-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.tt-cost-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); transition: all 0.2s; display: block; color: inherit; overflow: hidden;
}
.tt-cost-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.tt-cost-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.tt-cost-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-cost-card-body { padding: 16px 18px 18px; }
.tt-cost-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; line-height: 1.4; }
.tt-cost-card span { font-size: 13px; color: var(--gray-400); }

.tt-page-hero-img {
  max-width: var(--wide); margin: 0 auto; padding: 0 24px 40px;
}
.tt-page-hero-img img { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── Cities ── */
.tt-cities { padding: 64px 24px; background: var(--white); text-align: center; }
.tt-cities h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.tt-cities > p { color: var(--gray-600); margin-bottom: 32px; }
.tt-cities-banner {
  max-width: 920px; margin: 0 auto 36px; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 21/8; box-shadow: var(--shadow-lg);
}
.tt-cities-banner img { width: 100%; height: 100%; object-fit: cover; }
.tt-city-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 800px; margin: 0 auto; }
.tt-city-link {
  padding: 10px 18px; background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--gray-800);
}
.tt-city-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ── CTA band ── */
.tt-cta-band {
  padding: 72px 24px; background: var(--blue); color: var(--white); text-align: center;
}
.tt-cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.tt-cta-band p { opacity: 0.9; max-width: 480px; margin: 0 auto 28px; font-size: 16px; }
.tt-cta-band .tt-btn-dark { background: var(--white); color: var(--blue) !important; }
.tt-cta-band .tt-btn-dark:hover { background: var(--gray-50); }

/* ── FAQ ── */
.tt-faq-section { padding: 64px 24px; max-width: 800px; margin: 0 auto; }
.tt-faq-item { border-bottom: 1px solid var(--gray-100); }
.tt-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left;
}
.tt-faq-q:hover { color: var(--blue); }
.tt-faq-icon { font-size: 20px; color: var(--blue); transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
.tt-faq-item.open .tt-faq-icon { transform: rotate(45deg); }
.tt-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.tt-faq-item.open .tt-faq-a { max-height: 600px; }
.tt-faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.tt-faq-a-inner ul { margin: 12px 0 12px 20px; }

/* ── Page hero ── */
.tt-page-hero { background: var(--gray-50); padding: 48px 24px 40px; border-bottom: 1px solid var(--gray-100); }
.tt-page-hero-inner { max-width: var(--wide); margin: 0 auto; }
.tt-breadcrumb { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; }
.tt-breadcrumb a:hover { color: var(--blue); }
.tt-page-hero h1 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--dark); line-height: 1.2; }
.tt-page-hero p { font-size: 17px; color: var(--gray-600); max-width: 640px; margin-top: 12px; line-height: 1.65; }

/* ── Content ── */
.tt-section { padding: 56px 24px; }
.tt-inner { max-width: var(--wide); margin: 0 auto; }
.tt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tt-split-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-100); }
.tt-split-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-lead { font-size: 17px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.tt-content { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.tt-content h2 { font-size: 1.35rem; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.tt-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
.tt-content p { color: var(--gray-600); margin-bottom: 14px; line-height: 1.75; }
.tt-content ul, .tt-content ol { margin: 0 0 16px 24px; color: var(--gray-600); line-height: 1.75; }
.tt-content a { color: var(--blue); font-weight: 500; }
.tt-notice { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 16px 20px; margin: 24px 0; font-size: 14px; line-height: 1.65; border-radius: 0 var(--radius) var(--radius) 0; }
.tt-table { width: 100%; border-collapse: collapse; border: 1px solid var(--gray-100); margin: 20px 0; font-size: 14px; border-radius: var(--radius); overflow: hidden; }
.tt-table th, .tt-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.tt-table th { background: var(--gray-50); width: 200px; font-weight: 600; }

.tt-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-article-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  overflow: hidden; display: block; color: inherit; transition: box-shadow 0.2s;
}
.tt-article-card:hover { box-shadow: var(--shadow-lg); }
.tt-article-img { aspect-ratio: 16/10; background: var(--gray-100); overflow: hidden; }
.tt-article-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-article-body { padding: 20px; }
.tt-article-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 8px; }
.tt-article-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; }

.tt-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tt-detail-card {
  padding: 0 0 24px; background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); display: block; color: inherit; transition: all 0.15s; overflow: hidden;
}
.tt-detail-card-body { padding: 0 24px; }
.tt-detail-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); margin: 0 0 16px; }
.tt-detail-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-detail-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.tt-detail-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tt-detail-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

.tt-contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: var(--wide); margin: 0 auto; }
.tt-form { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px; }
.tt-field { margin-bottom: 16px; }
.tt-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.tt-field input, .tt-field select, .tt-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; background: var(--white);
}
.tt-field input:focus, .tt-field select:focus, .tt-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,159,217,0.15);
}
.tt-field textarea { min-height: 120px; resize: vertical; }
.tt-info-block { margin-bottom: 18px; }
.tt-info-block strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 4px; }

.tt-process-list { max-width: var(--wide); margin: 0 auto; }
.tt-process-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.tt-process-num { font-size: 1.75rem; font-weight: 800; color: var(--blue); line-height: 1; }
.tt-process-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.tt-process-item p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── Footer ── */
.tt-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 56px 24px 28px; }
.tt-footer-tagline { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 32px; }
.tt-footer-grid { max-width: var(--wide); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.tt-footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 4px; }
.tt-footer-brand a { color: var(--blue-light); }
.tt-footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.tt-footer-col li { margin-bottom: 8px; }
.tt-footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); }
.tt-footer-col a:hover { color: var(--white); }
.tt-footer-legal { max-width: var(--wide); margin: 0 auto 16px; font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.tt-footer-bottom { max-width: var(--wide); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.4); }
.tt-footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 16px; }
.tt-footer-bottom a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .tt-why-grid, .tt-resource-cols, .tt-tab-panel.active, .tt-article-grid { grid-template-columns: 1fr 1fr; }
  .tt-subcat-grid, .tt-cost-row { grid-template-columns: repeat(2, 1fr); }
  .tt-explore-feature { grid-template-columns: 1fr; }
  .tt-split, .tt-contact-split { grid-template-columns: 1fr; }
  .tt-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .tt-nav, .tt-header-link { display: none; }
  .tt-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg); z-index: 400; margin-left: 0;
  }
  .tt-nav.open > li { width: 100%; }
  .tt-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; display: none; }
  .tt-nav.open > li:hover .tt-dropdown, .tt-nav.open > li:focus-within .tt-dropdown { display: block; }
  .tt-menu-btn { display: block; margin-left: auto; }
  .tt-header-right .tt-btn-primary { display: none; }
  .tt-search-bar { flex-direction: column; }
  .tt-search-field { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .tt-search-bar .tt-btn-primary { width: 100%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .tt-why-grid, .tt-resource-cols, .tt-tab-panel.active, .tt-subcat-grid, .tt-cost-row, .tt-detail-grid, .tt-article-grid { grid-template-columns: 1fr; }
  .tt-footer-grid { grid-template-columns: 1fr; }
  .tt-scroll-btn { display: none; }
}
