:root {
  --bg: #0b0c10;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.60);
  --accent: #fd8500;
  --accent-bg: rgba(253,133,0,.12);
  --accent-border: rgba(253,133,0,.25);
  --blue: rgba(90,120,255,.22);
  --blue-border: rgba(90,120,255,.35);
  --green: rgba(80,200,120,.18);
  --green-border: rgba(80,200,120,.30);
  --purple: rgba(160,90,255,.18);
  --purple-border: rgba(160,90,255,.30);
  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: radial-gradient(800px 400px at 15% 15%, rgba(120,120,255,.14), transparent 55%), radial-gradient(600px 350px at 80% 25%, rgba(255,140,80,.10), transparent 55%), linear-gradient(180deg, #07080c, #0b0c10);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.page { max-width: 100%; padding: 20px 30px 40px; }
.card { background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--radius); box-shadow: var(--shadow); }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.badge { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--stroke); background: rgba(255,255,255,.03); border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 500; white-space: nowrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,.5); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.cta-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all .15s ease; white-space: nowrap; }
.cta-btn.primary { background: var(--accent); color: #000; border: none; }
.cta-btn.primary:hover { background: #ff9b2e; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(253,133,0,.35); }
.grid { display: grid; grid-template-columns: 320px 1fr; gap: 20px; align-items: start; }
.sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.profile-card { padding: 24px; text-align: center; }
.profile-info { }
.avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.15); margin-bottom: 14px; }
h1 { font-size: 26px; font-weight: 800; letter-spacing: -.5px; line-height: 1.1; margin-bottom: 6px; }
.accent { color: var(--accent); }
.role { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.location { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 12px; color: var(--muted); }
.location svg { opacity: .6; }
.sidebar-card { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.sidebar-link { display: flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 10px; border-radius: 12px; transition: background .15s ease; word-break: break-all; }
.sidebar-link:hover { background: var(--panel2); }
.sidebar-link svg { color: var(--muted); flex-shrink: 0; }
.sidebar-social { display: flex; gap: 8px; justify-content: center; }
.soc-btn { width: 44px; height: 44px; display: grid; place-items: center; text-decoration: none; color: var(--text); transition: all .15s ease; }
.soc-btn:hover { transform: translateY(-2px); background: var(--panel2); }
.content { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.cta-card { display: block; text-decoration: none; color: var(--text); padding: 20px 24px; background: linear-gradient(135deg, rgba(253,133,0,.08), rgba(253,133,0,.02)); border: 1px solid var(--accent-border); transition: all .15s ease; }
.cta-card:hover { transform: translateY(-2px); background: linear-gradient(135deg, rgba(253,133,0,.14), rgba(253,133,0,.04)); box-shadow: 0 8px 30px rgba(253,133,0,.15); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; }
.cta-title { font-size: 18px; font-weight: 700; }
.cta-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cta-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #000; display: grid; place-items: center; flex-shrink: 0; }
.section h2 { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 12px; letter-spacing: -.2px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service { padding: 20px; display: flex; flex-direction: column; gap: 8px; position: relative; transition: all .15s ease; }
.service:hover { transform: translateY(-2px); background: var(--panel2); }
.service.highlight { border-color: var(--accent-border); background: linear-gradient(135deg, rgba(253,133,0,.06), transparent); }
.service-badge { position: absolute; top: -1px; right: 16px; padding: 4px 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: var(--accent); color: #000; border-radius: 0 0 8px 8px; }
.service-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--blue); border: 1px solid var(--blue-border); color: rgba(130,160,255,.9); }
.service-icon.orange { background: var(--accent-bg); border-color: var(--accent-border); color: var(--accent); }
.service-icon.green { background: var(--green); border-color: var(--green-border); color: rgba(80,200,120,.9); }
.service-icon.purple { background: var(--purple); border-color: var(--purple-border); color: rgba(160,90,255,.9); }
.service-name { font-size: 15px; font-weight: 700; }
.service-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.service-price { font-size: 13px; color: var(--muted); margin-top: auto; padding-top: 4px; }
.service-price strong { color: var(--text); font-size: 16px; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 700px; }
.portfolio-card { text-decoration: none; color: var(--text); overflow: hidden; transition: all .15s ease; }
.portfolio-card:hover { transform: translateY(-2px); background: var(--panel2); }
.portfolio-thumb { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.portfolio-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; transition: transform .3s ease; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.03); }
.portfolio-info { padding: 14px 16px; }
.portfolio-label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.portfolio-name { font-size: 14px; font-weight: 600; }
.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.client-tag { padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--stroke); }
.client-tag.muted { color: var(--muted); font-style: italic; border-style: dashed; }
.logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; max-width: 500px; }
.logo { overflow: hidden; padding: 0; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); }
.logo img { width: 100%; height: 100%; object-fit: cover; display: block; padding: 0; }
.logo img[alt="FUT GG"] { object-fit: cover; transform: scale(1.15); }
.footer { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 0; margin-top: 20px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--stroke); }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
@media (max-width: 980px) {
  .page { padding: 16px 16px 30px; }
  .grid { grid-template-columns: 1fr; gap: 14px; }
  .sidebar { position: relative; top: 0; }
  .profile-card { display: flex; flex-direction: row; align-items: center; gap: 16px; text-align: left; padding: 18px; }
  .profile-card .avatar { margin-bottom: 0; width: 72px; height: 72px; flex-shrink: 0; }
  .location { justify-content: flex-start; }
  h1 { font-size: 22px; }
  .role { font-size: 12px; }
  .sidebar-social { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .page { padding: 12px 10px 24px; }
  .topbar { gap: 8px; }
  .badge { font-size: 11px; padding: 6px 10px; }
  .cta-btn { font-size: 12px; padding: 8px 12px; }
  .profile-card { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }
  .profile-card .avatar { width: 64px; height: 64px; }
  .location { justify-content: center; }
  h1 { font-size: 20px; }
  .sidebar-card { padding: 10px; }
  .sidebar-link { font-size: 12px; padding: 6px 8px; }
  .sidebar-social { justify-content: center; }
  .soc-btn { width: 38px; height: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 14px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .client-tag { font-size: 11px; padding: 4px 9px; }
  .cta-title { font-size: 16px; }
  .cta-card { padding: 16px; }
  .footer { flex-direction: column; gap: 6px; text-align: center; }
}
