

:root {
  --bg:       #0a0e1a;
  --surface:  #111827;
  --surface2: #1a2235;
  --accent:   #00d4ff;
  --accent2:  #7c3aed;
  --text:     #e8edf5;
  --muted:    #8895a7;
  --border:   rgba(255,255,255,0.08);
  --card-bg:  rgba(255,255,255,0.04);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; line-height: 1.6; }
img   { display: block; max-width: 100%; }
a     { color: inherit; }

h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; letter-spacing: -0.025em; }
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  display: block;
}
.section-sub { color: var(--muted); max-width: 560px; font-size: 1.05rem; margin-bottom: 3rem; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,26,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #000;
  padding: 0.45rem 1.2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.btn-primary {
  background: var(--accent); color: #000; font-weight: 700;
  padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none;
  font-size: 0.95rem; display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--text); font-weight: 500;
  padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none;
  font-size: 0.95rem; border: 1px solid var(--border);
  display: inline-block; transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); }

section { padding: 5rem 5%; }

.page-hero {
  padding: 6rem 5% 4rem;
  background: linear-gradient(180deg, var(--surface2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 620px; font-weight: 300; }

.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 5%;
  display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
}
.stat { text-align: center; }
.stat-num  { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stats-row  { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.stat-box   { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; }

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,212,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; }
.article-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.article-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.25); }
.article-img {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.article-body { padding: 1.5rem; }
.article-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.article-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.article-card p  { color: var(--muted); font-size: 0.87rem; }
.article-meta    { display: flex; align-items: center; gap: 0.6rem; margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }

.partners { background: var(--surface); padding: 3rem 0; overflow: hidden; }
.partners h4 { text-align: center; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.ticker-wrap { overflow: hidden; }
.ticker { display: flex; gap: 4rem; width: max-content; animation: ticker 20s linear infinite; }
.ticker span { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.cta-banner {
  margin: 0 5% 5rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(124,58,237,0.12) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px; padding: 4rem; text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { color: var(--muted); margin-bottom: 2rem; }

.info-box {
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.18);
  border-radius: 12px; padding: 1.5rem 1.8rem; margin: 2rem 0;
}
.info-box h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.info-box p  { color: #c8d0dc; font-size: 0.92rem; margin: 0; }
.pullquote {
  border-left: 3px solid var(--accent); padding: 1.2rem 1.8rem; margin: 2.5rem 0;
  background: var(--card-bg); border-radius: 0 12px 12px 0;
}
.pullquote p { font-size: 1.15rem; font-style: italic; color: var(--text); margin: 0; line-height: 1.65; }

.data-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.data-table th {
  background: var(--surface2); padding: 0.75rem 1rem;
  font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700;
  text-align: left; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
}
.data-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: #c8d0dc; }
.data-table tr:hover td { background: var(--card-bg); }
.td-green  { color: #34d399; font-weight: 600; }
.td-yellow { color: #fbbf24; font-weight: 600; }
.td-red    { color: #f87171; font-weight: 600; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface2); }
.form-submit {
  width: 100%; padding: 1rem; background: var(--accent); color: #000;
  border: none; border-radius: 8px; font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s; letter-spacing: 0.02em;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-disclaimer { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; text-align: center; }
.form-disclaimer a { color: var(--muted); text-decoration: underline; }

.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 5% 5%; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner  { max-width: 780px; position: relative; z-index: 1; }
.hero-badge  {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
  padding: 0.35rem 0.9rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500; color: var(--accent);
  margin-bottom: 2rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero > .hero-inner > p { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.75rem; max-width: 280px; line-height: 1.7; }
.footer-col h5  { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 0.55rem; }
.footer-col a   { color: var(--muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom  {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-legal    { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a  { color: var(--muted); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

.legal-hero {
  padding: 5rem 5% 3rem;
  background: linear-gradient(180deg, var(--surface2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 0.8rem; }
.legal-hero p  { color: var(--muted); font-size: 0.92rem; }
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 4rem 5%; }
.legal-wrap h2 { font-size: 1.35rem; font-weight: 700; margin: 2.8rem 0 0.9rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.legal-wrap h3 { font-size: 1.05rem; font-weight: 700; margin: 1.8rem 0 0.6rem; color: var(--text); }
.legal-wrap p  { color: #c8d0dc; font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
.legal-wrap ul,
.legal-wrap ol { margin: 0.8rem 0 1.2rem 1.6rem; }
.legal-wrap li { color: #c8d0dc; font-size: 0.97rem; line-height: 1.75; margin-bottom: 0.45rem; }
.legal-wrap a  { color: var(--accent); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.8rem 2rem; margin-bottom: 3rem;
}
.legal-toc h4 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.legal-toc ol  { margin-left: 1.2rem; }
.legal-toc li  { margin-bottom: 0.4rem; }
.legal-toc a   { color: var(--muted); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.legal-toc a:hover { color: var(--accent); }
.legal-updated { display: inline-block; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); border-radius: 6px; padding: 0.3rem 0.8rem; font-size: 0.8rem; color: var(--accent); margin-bottom: 2rem; }
.legal-highlight {
  background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px; padding: 1.4rem 1.8rem; margin: 2rem 0;
}
.legal-highlight p { margin: 0; color: var(--text); font-size: 0.95rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.value-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}
.value-card:hover { transform: translateY(-3px); border-color: rgba(0,212,255,0.25); }
.value-icon   { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.value-card p  { color: var(--muted); font-size: 0.9rem; }
.team-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; margin-top: 3rem; }
.team-card  { text-align: center; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  overflow: hidden;
}
.team-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4  { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.82rem; color: var(--accent); font-weight: 500; margin-bottom: 0.4rem; }
.team-card p   { font-size: 0.85rem; color: var(--muted); }

.contact-wrap { max-width: 1200px; margin: 0 auto; padding: 5rem 5%; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { min-width: 42px; height: 42px; border-radius: 10px; background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-item h4 { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.inquiry-types { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.inquiry-btn { padding: 0.4rem 0.9rem; border-radius: 20px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s; }
.inquiry-btn.active, .inquiry-btn:hover { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.3); color: var(--accent); }

.article-hero { background: linear-gradient(180deg, var(--surface2) 0%, var(--bg) 100%); padding: 5rem 5% 3rem; border-bottom: 1px solid var(--border); }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; max-width: 820px; margin-bottom: 1.2rem; }
.article-hero h1 em { font-style: normal; color: var(--accent); }
.article-intro { font-size: 1.15rem; color: var(--muted); max-width: 720px; font-weight: 300; }
.hero-visual { height: 420px; background: linear-gradient(135deg, #0d1f3c 0%, #1a0a2e 50%, #0a1a0d 100%); display: flex; align-items: center; justify-content: center; font-size: 8rem; letter-spacing: -0.05em; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 65%); }
.article-wrap { max-width: 1020px; margin: 0 auto; padding: 4rem 5%; }
.article-content h2 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.8rem 0 1rem; }
.article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.article-content p  { color: #c8d0dc; margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.8; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-content li { color: #c8d0dc; margin-bottom: 0.6rem; font-size: 1.02rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 3rem 0 2rem; }
.tag { background: var(--card-bg); border: 1px solid var(--border); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; color: var(--muted); }

.product-section { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; margin: 4rem 0; }
.product-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.product-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.product-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; position: relative; }
.product-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(52,211,153,0.15); color: #34d399; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 4px; }
.product-emoji { font-size: 2.8rem; margin-bottom: 0.8rem; display: block; }
.product-emoji img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.product-card h4  { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-card .price  { color: var(--accent); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-card .rating { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.8rem; }
.product-card p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.product-features { list-style: none; padding: 0; }
.product-features li { font-size: 0.82rem; color: #c8d0dc; padding: 0.25rem 0; border-bottom: 1px solid var(--border); }
.product-features li::before { content: '✓ '; color: var(--accent); }
.lead-form-wrap { background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(124,58,237,0.08) 100%); border: 1px solid rgba(0,212,255,0.2); border-radius: 16px; padding: 2.5rem; }
.lead-form-wrap h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; }
.lead-form-wrap > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.8rem; }

.related-section { padding: 4rem 5%; background: var(--surface); border-top: 1px solid var(--border); }
.related-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.related-card    { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; text-decoration: none; color: inherit; transition: transform 0.2s, border-color 0.2s; display: block; }
.related-card:hover { transform: translateY(-3px); border-color: rgba(0,212,255,0.25); }
.related-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.5rem; }
.related-card h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.related-card p  { color: var(--muted); font-size: 0.83rem; }

.ty-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 5rem 5%; position: relative; overflow: hidden; }
.ty-main::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%); pointer-events: none; }
.ty-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 4rem 3.5rem; max-width: 560px; width: 100%; text-align: center; position: relative; z-index: 1; }
.ty-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 2rem; animation: pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both; }
@keyframes pop { from { opacity: 0; transform: scale(0.5) } to { opacity: 1; transform: scale(1) } }
.ty-card h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
.ty-card h1 span { color: var(--accent); }
.ty-steps { text-align: left; margin: 2rem 0; }
.ty-step  { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.ty-step:last-child { border-bottom: none; }
.step-num { min-width: 32px; height: 32px; border-radius: 50%; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--accent); }
.step-text h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.step-text p  { font-size: 0.85rem; margin: 0; color: var(--muted); }
.ty-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.faq-item h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-item p  { color: var(--muted); font-size: 0.88rem; }

.policy-section { background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 3rem; margin: 3rem 0; }
.policy-section h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.policy-section p  { color: #c8d0dc; font-size: 0.95rem; margin-bottom: 0.8rem; }
.policy-section ul { margin: 1rem 0 0 1.5rem; }
.policy-section li { color: #c8d0dc; font-size: 0.92rem; margin-bottom: 0.5rem; }

footer.simple-footer {
  padding: 2rem 5%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer.simple-footer p { color: var(--muted); font-size: 0.82rem; }

@media (max-width: 900px) {
  .contact-wrap  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links     { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .hero          { min-height: 80vh; }
  .hero-visual   { height: 220px; font-size: 4rem; }
  .cta-banner    { padding: 2.5rem 1.5rem; }
  .mission-grid  { grid-template-columns: 1fr; }
}


.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}


.advertorial-bar {
  background: #fff;
  border-bottom: 1px solid #fbbf24;
  padding: 10px 24px;
  font-family: var(--font-ui); font-size: .78rem; color: #92400e;
  text-align: center; line-height: 1.55;
}
.advertorial-bar strong { color: #78350f; }
.advertorial-bar a { color: var(--gold); text-decoration: underline; font-weight: 600; }