﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0F172A;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: #EFF6FF;
  --accent-muted: #BFDBFE;
  --cta: #F97316;
  --cta-hover: #EA580C;
  --cta-shadow: rgba(249,115,22,0.35);
  --text: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 8px 24px var(--cta-shadow); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-light); }

.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 12px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-muted);
  padding: 8px 10px;
  transition: color var(--transition);
}
.lang-switch:hover { color: var(--text); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  background: var(--bg-dark);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.hero-badge span { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--bg-alt);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-number {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.stat-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 12px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-muted);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--bg-dark);
}

.process .section-label { background: rgba(37,99,235,0.15); }
.process .section-title { color: #fff; }
.process .section-subtitle { color: rgba(255,255,255,0.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.step-duration {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(37,99,235,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.portfolio-body {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.portfolio-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--accent-light);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 2px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check {
  color: #16A34A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== WHY SITE G ===== */
.why {
  padding: 100px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: var(--bg-dark);
  color: #fff;
  padding: 18px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: 0; }
.comparison-table th.highlight { background: var(--accent); }

.comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg-alt); }

td.highlight {
  background: var(--accent-light) !important;
  color: var(--accent);
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.trust-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact .section-title { color: #fff; }
.contact .section-subtitle { color: rgba(255,255,255,0.5); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #1E293B; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(37,99,235,0.05);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 8px 24px var(--cta-shadow); }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: #060D18;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ===== PRODUCT CARDS ===== */
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cta);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-muted); }
.product-card:hover::before { transform: scaleX(1); }

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-from {
  font-size: 12px;
  font-weight: 700;
  color: var(--cta);
  background: #FFF7ED;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.product-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .product-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-hamburger { display: flex; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 32px; }

  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== PORTFOLIO — STUDIO WORKS (Tem 2026) ===== */
.pf-subnote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}
.pf-subnote::before { content: "✳"; color: var(--accent); }

/* CSS-drawn browser-frame previews (no image assets) */
.pf-shot {
  height: 200px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pf-chrome {
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: rgba(0,0,0,0.18);
}
.pf-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.pf-shot.light .pf-chrome { background: rgba(0,0,0,0.06); }
.pf-shot.light .pf-chrome i { background: rgba(0,0,0,0.18); }
.pf-stage {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.pf-kick { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.75; }
.pf-title { font-size: 19px; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
.pf-title.serif { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
.pf-pill { align-self: flex-start; font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.pf-lines { display: grid; gap: 5px; margin-top: 2px; }
.pf-lines i { display: block; height: 5px; border-radius: 3px; background: currentColor; opacity: 0.22; }
.pf-lines i:nth-child(2) { width: 78%; }
.pf-lines i:nth-child(3) { width: 56%; }
.pf-bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; margin-top: 4px; }
.pf-bars i { flex: 1; border-radius: 3px 3px 0 0; background: currentColor; opacity: 0.85; }
.pf-chips { display: flex; gap: 6px; margin-top: 2px; }
.pf-chips i { height: 18px; flex: 0 0 46px; border-radius: 100px; border: 1.5px solid currentColor; opacity: 0.55; }
.pf-chips i.on { background: currentColor; opacity: 1; }

/* theme palettes = the demos' real identities */
.pf-shot.t-rest { background: radial-gradient(120% 100% at 70% 0%, #27503f 0%, #1e3a2f 60%, #152b22 100%); color: #f5efe2; }
.pf-shot.t-rest .pf-kick { color: #b08d3e; }
.pf-shot.t-rest .pf-pill { background: #b08d3e; color: #17130d; }
.pf-shot.t-dash { background: #151a2b; color: #e8ecf6; }
.pf-shot.t-dash .pf-kick { color: #5aa9ff; }
.pf-shot.t-dash .pf-bars i:nth-child(odd) { background: #5aa9ff; }
.pf-shot.t-dash .pf-bars i:nth-child(even) { background: #a78bfa; }
.pf-shot.t-klinik { background: linear-gradient(180deg, #e7f4f1, #fbfaf7); color: #12211f; }
.pf-shot.t-klinik .pf-kick { color: #0e6e64; }
.pf-shot.t-klinik .pf-chips { color: #0e6e64; }
.pf-shot.t-article { background: #fdfcf9; color: #1b1813; }
.pf-shot.t-article .pf-kick { color: #a83a32; }
.pf-shot.t-article .pf-title { text-decoration: underline; text-decoration-color: #f0d5d1; text-decoration-thickness: 6px; text-underline-offset: 4px; }
.pf-shot.t-cv { background: #232126; color: #eceaf0; }
.pf-shot.t-cv .pf-kick { color: #b06ab3; }
.pf-shot.t-cv .pf-chips { color: #b06ab3; }
.pf-shot.t-tayf { background: #10121a; color: #e8ecf6; }
.pf-shot.t-tayf .pf-kick { color: #85a9ff; }
.pf-tayf-board { position: relative; height: 66px; margin-top: 6px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.pf-tayf-board i { position: absolute; display: block; }
.pf-tayf-board .beam-r { left: 6%; top: 50%; width: 52%; height: 6px; margin-top: -3px; border-radius: 4px; background: #fa5959; box-shadow: 0 0 12px rgba(250,89,89,0.8); }
.pf-tayf-board .beam-b { left: 58%; top: 10%; width: 6px; height: 40%; border-radius: 4px; background: #5c94ff; box-shadow: 0 0 12px rgba(92,148,255,0.8); }
.pf-tayf-board .target { left: calc(58% - 8px); top: 50%; width: 20px; height: 20px; margin-top: -10px; border: 3px solid #d96bff; border-radius: 50%; box-shadow: 0 0 14px rgba(217,107,255,0.7); }
.pf-shot.t-spingra { background: linear-gradient(180deg, #100e21, #221238); color: #e8ecf6; }
.pf-shot.t-spingra .pf-kick { color: #6ee7f0; }
.pf-orbit { position: relative; height: 70px; margin-top: 4px; }
.pf-orbit .ring { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border: 2px solid rgba(255,255,255,0.28); border-radius: 50%; }
.pf-orbit .dot { position: absolute; left: 50%; top: 50%; width: 13px; height: 13px; margin: -38px 0 0 -7px; background: #6ee7f0; border-radius: 50%; box-shadow: 0 0 12px rgba(110,231,240,0.9); }
.pf-orbit .gem { position: absolute; left: calc(50% + 24px); top: calc(50% + 14px); width: 11px; height: 11px; background: #f0b95c; transform: rotate(45deg); box-shadow: 0 0 10px rgba(240,185,92,0.8); }
.pf-orbit .spike { position: absolute; left: calc(50% - 42px); top: calc(50% + 2px); width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 13px solid #f26b60; transform: rotate(64deg); }
.pf-shot.t-rituel { background: linear-gradient(180deg, #FAF6EF, #F2EBDD); color: #2A2419; }
.pf-shot.t-rituel .pf-kick { color: #5C7F4C; }
.pf-rituel-row { display: flex; gap: 7px; margin-top: 8px; }
.pf-rituel-row i { width: 15px; height: 15px; border-radius: 50%; border: 2px solid #CBDABF; }
.pf-rituel-row i.on { background: #5C7F4C; border-color: #5C7F4C; }
.pf-shot.t-tempo { background: #141110; color: #F0E9E0; }
.pf-shot.t-tempo .pf-kick { color: #E8A13D; }
.pf-tempo-ring { position: relative; width: 62px; height: 62px; margin-top: 6px; border-radius: 50%; background: conic-gradient(#E8A13D 0 62%, #2A231E 62% 100%); }
.pf-tempo-ring::after { content: "25:00"; position: absolute; inset: 7px; background: #141110; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.pf-shot.t-randevu { background: #0E1420; color: #E8EDF6; }
.pf-shot.t-randevu .pf-kick { color: #4ECDC4; }
.pf-chat { display: grid; gap: 6px; margin-top: 6px; }
.pf-chat i { display: block; height: 15px; border-radius: 9px; }
.pf-chat .b1 { width: 62%; background: #1E2A42; border-bottom-left-radius: 3px; }
.pf-chat .u1 { width: 34%; background: #3B82F6; border-bottom-right-radius: 3px; justify-self: end; }
.pf-chat .b2 { width: 48%; background: #4ECDC4; border-bottom-left-radius: 3px; }

.pf-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.pf-link:hover { text-decoration: underline; }
.portfolio-more { text-align: center; margin-top: 40px; }

/* full portfolio page */
.page-head { padding: 150px 0 60px; background: var(--bg-dark); color: #fff; }
.page-head .section-label { color: var(--cta); }
.page-head h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 14px; }
.page-head p { color: rgba(255,255,255,0.55); max-width: 60ch; font-size: 16px; }
.pf-honest {
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin: 40px 0 8px;
}
.pf-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.pf-page-grid .portfolio-card { display: flex; flex-direction: column; }
.pf-page-grid .portfolio-body { flex: 1; display: flex; flex-direction: column; }
.pf-page-grid .pf-desc { flex: 1; }
.pf-what { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 6px; }
.pf-what li { font-size: 13px; color: var(--text-muted); padding-left: 18px; position: relative; }
.pf-what li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

@media (max-width: 900px) { .pf-page-grid { grid-template-columns: 1fr; } }
