/* ===== EXACT RANKAIM.CO COLOR SCHEME ===== */
/* Background:  #04080B | Accent: #FC5631 | Green: #9DFF00 */

/* Fonts loaded via <link> in HTML for performance (preconnect + no render blocking) */

/* ===== ACCESSIBILITY: Skip Navigation ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--orange, #FC5631);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

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

:root {
  --bg:       #04080B;
  --bg2:      #0c1014;
  --bg3:      #1C1F37;
  --bg4:      #170C0B;
  --orange:   #FC5631;
  --green:    #9DFF00;
  --amber:    #F58300;
  --purple:   #D400F5;
  --white:    #ECECEC;
  --gray:     #A5A5A5;
  --border:   rgba(135,134,134,0.21);
  --border2:  rgba(213,223,255,0.15);
  --radius:   12px;
  --font-h:   'Bricolage Grotesque', sans-serif;
  --font-b:   'Manrope', sans-serif;
  --font-nav: 'Bricolage Grotesque', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); line-height: 1.15; color: var(--white); }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 14px 16px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  background: transparent;
}
.navbar.scrolled {
  padding: 10px 16px;
}

.nav-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 15px;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  max-width: 1140px;
  margin: 0 auto;
}
.navbar.scrolled .nav-wrap {
  background: rgba(4,8,11,0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(255,255,255,0.1);
}

.nav-logo img { height: 38px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-nav);
  font-size: 15px; font-weight: 500; color: var(--white);
  opacity: 0.75; transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--white); }

.btn-nav {
  background: linear-gradient(134deg, var(--orange) 27%, var(--orange) 100%) !important;
  color: var(--bg) !important; opacity: 1 !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px !important;
  border: none; cursor: pointer;
}
.btn-nav:hover { opacity: 0.88 !important; transform: translateY(-1px); }

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius);
  background: linear-gradient(134deg, var(--orange) 27%, var(--orange) 100%);
  color: var(--bg); font-family: var(--font-b); font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--orange); color: var(--white);
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s; background: transparent;
}
.btn-outline:hover { background: var(--orange); color: var(--bg); }

/* ===== SECTION ===== */
section { padding: 90px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange);
  margin-bottom: 16px;
}
.tag::before { content: ''; width: 18px; height: 2px; background: var(--orange); display: inline-block; }

.section-title {
  font-family: var(--font-h); font-size: clamp(36px,4.5vw,60px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.15;
  margin-bottom: 20px; color: var(--white);
}
.section-title .accent { color: var(--orange); }
.section-title .green  { color: var(--green); }

.section-sub {
  font-size: 16px; color: var(--gray); line-height: 2;
  max-width: 560px; letter-spacing: 0.5px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 130px 0 90px;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -80px; width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(252,86,49,0.18) 0%, rgba(252,86,49,0.05) 50%, transparent 70%);
  pointer-events: none; z-index: 0; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: -150px; width: 480px; height: 480px;
  background: radial-gradient(ellipse, rgba(252,86,49,0.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Layout */
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; position: relative; z-index: 1; width: 100%;
}

/* ── LEFT ── */
.hero-left { display: flex; flex-direction: column; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 32px; width: fit-content;
  background: rgba(252,86,49,0.07); border: 1px solid rgba(252,86,49,0.22);
  font-size: 13px; font-weight: 600; color: var(--orange);
}
.hb-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0;
}

/* Title */
.hero-title {
  font-family: var(--font-h);
  font-weight: 800; line-height: 1; letter-spacing: -2px;
  margin-bottom: 28px;
}
.ht-small {
  display: block; font-size: clamp(16px,2vw,22px);
  font-weight: 500; color: var(--gray); letter-spacing: 0;
  margin-bottom: 6px;
}
.ht-huge {
  display: block; font-size: clamp(48px,6vw,80px);
  letter-spacing: -3px; line-height: 0.92; color: var(--white);
}
.ht-orange { color: var(--orange); }

.hero-desc {
  font-size: 16px; color: var(--gray); max-width: 460px;
  line-height: 1.85; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Stats row */
.hero-stats-row {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px;
}
.hsr-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 22px;
}
.hsr-item:first-child { padding-left: 0; }
.hsr-item strong {
  font-family: var(--font-h); font-size: 26px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -1px;
}
.hsr-item span { font-size: 11px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.hsr-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Logos */
.hero-logos-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trusted {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray); white-space: nowrap;
}
.hero-logos { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-logos img {
  height: 20px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.18; transition: opacity 0.3s;
}
.hero-logos img:hover { opacity: 0.5; }

/* ── RIGHT ── */
.hero-right {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.hero-right-glow {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%,-50%);
  width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(252,86,49,0.14) 0%, transparent 65%);
}

/* 3D SERP card */
.hero-serp-card {
  width: 100%; max-width: 480px;
  background: #0e1117;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1), box-shadow 0.55s;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    20px 20px 60px rgba(252,86,49,0.1);
  position: relative; z-index: 1;
}
.hero-serp-card:hover {
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07), 12px 12px 50px rgba(252,86,49,0.12);
}

/* Browser chrome bar */
.hsc-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hsc-dots { display: flex; gap: 6px; }
.hsc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.hsc-dots span:nth-child(1) { background: #ff5f57; }
.hsc-dots span:nth-child(2) { background: #febc2e; }
.hsc-dots span:nth-child(3) { background: #28c840; }
.hsc-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 7px 14px;
  font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 7px;
}
.hsc-input i { font-size: 11px; color: var(--orange); }
.hsc-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; color: #4ade80; letter-spacing: 1px;
}
.hsc-live span {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* Results list */
.hsc-list { padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }

.hsc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: 10px;
  transition: background 0.2s;
}
.hsc-n {
  font-family: var(--font-h); font-size: 18px; font-weight: 800;
  color: rgba(165,165,165,0.3); width: 20px; flex-shrink: 0; text-align: center;
}
.hsc-ru { font-size: 10px; color: rgba(165,165,165,0.5); margin-bottom: 2px; }
.hsc-rt { font-size: 12px; color: rgba(236,236,236,0.4); font-weight: 500; }

.hsc-faded { opacity: 0.55; }
.hsc-faded2 { opacity: 0.3; }

/* Winner row */
.hsc-winner {
  background: linear-gradient(135deg, rgba(252,86,49,0.08), rgba(252,86,49,0.04));
  border: 1px solid rgba(252,86,49,0.22);
  border-radius: 12px; padding: 14px 14px;
  margin-top: 4px;
}
.hsc-winner-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.hsc-winner-left { display: flex; align-items: flex-start; gap: 10px; flex: 1; }
.hsc-crown {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--bg); font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.hsc-crown i { font-size: 10px; line-height: 1; }
.hsc-fav { width: 20px; height: 20px; border-radius: 4px; overflow: hidden; flex-shrink: 0; margin-top: 2px; }
.hsc-fav img { width: 100%; height: 100%; object-fit: cover; }
.hsc-winner-body { flex: 1; }
.hsc-wurl { font-size: 10px; color: #4ade80; margin-bottom: 3px; }
.hsc-wtitle { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.hsc-wdesc { font-size: 11px; color: var(--gray); line-height: 1.5; margin-bottom: 7px; }
.hsc-wstars { display: flex; align-items: center; gap: 4px; }
.hsc-wstars i { color: #fbbf24; font-size: 11px; }
.hsc-wstars span { font-size: 10px; color: var(--gray); }
.hsc-moved {
  background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}

/* Footer stats */
.hsc-foot {
  display: flex; align-items: center; gap: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hscf-s {
  flex: 1; display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.hscf-s small { font-size: 10px; color: var(--gray); }
.hscf-s strong { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); }
.hscf-orange strong { color: var(--orange); }
.hscf-d { width: 1px; height: 30px; background: rgba(255,255,255,0.07); }

/* Badge below card */
.hero-card-tag {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; font-weight: 600; color: var(--gray);
  position: relative; z-index: 1;
}
.hero-card-tag i { color: var(--orange); font-size: 13px; }

/* backward compat */
.hero-inner { display: contents; }
.hero-tag { display: none; }

/* Stats (used below hero or inside) */
.hs-num { font-family: var(--font-h); font-size: 38px; font-weight: 700; color: var(--orange); line-height: 1; }
.hs-lbl { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ===== CLIENTS ===== */
.clients { padding: 50px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-lbl { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 36px; }
.clients-row { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.clients-row img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.3; transition: opacity 0.3s; }
.clients-row img:hover { opacity: 0.7; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

.srv-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.srv-card::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(252,86,49,0.05),transparent); opacity:0; transition:opacity 0.3s; }
.srv-card:hover { border-color: rgba(252,86,49,0.35); transform: translateY(-5px); }
.srv-card:hover::after { opacity:1; }

.srv-icon {
  width: 52px; height: 52px; border-radius: 10px;
  border: 1px solid rgba(252,86,49,0.2);
  background: rgba(252,86,49,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; color: var(--orange);
}
.srv-icon i { font-size: 22px; line-height: 1; }

.srv-card h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; font-family: var(--font-h); }
.srv-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }
.srv-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 13px; font-weight: 600; margin-top: 20px; }
.srv-link:hover { gap: 10px; }

/* ===== ABOUT/VISION ===== */
.vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.vision-img-wrap { position: relative; }
.vision-main-img { border-radius: 20px; overflow: hidden; }
.vision-main-img img { width: 100%; object-fit: cover; border-radius: 20px; }

.vision-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-top: 20px;
}
.v-row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.v-row:last-child { border-bottom: none; }
.v-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.v-ico i { line-height: 1; }
.v-txt strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.v-txt span { font-size: 13px; color: var(--gray); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.val-item {
  padding: 16px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: flex-start; gap: 10px;
}
.val-item .vi { font-size: 18px; color: var(--orange); line-height: 1; }
.val-item strong { font-size: 13px; font-weight: 600; display: block; margin-bottom: 3px; }
.val-item span { font-size: 12px; color: var(--gray); }

/* ===== STATS ===== */
.stats-section { padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-box { text-align: center; padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.stat-num { font-family: var(--font-h); font-size: 54px; font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -2px; }
.stat-lbl { font-size: 14px; color: var(--gray); margin-top: 8px; letter-spacing: 0.5px; }

/* ===== PORTFOLIO ===== */
.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

.port-card { border-radius: var(--radius); overflow: hidden; background: var(--bg2); border: 1px solid var(--border); transition: all 0.3s; }
.port-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(252,86,49,0.3); }

.port-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.port-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.port-card:hover .port-img img { transform: scale(1.05); }
.port-overlay {
  position: absolute; inset:0; background: rgba(252,86,49,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity:0; transition: opacity 0.3s; font-weight: 700; font-size: 15px; color: var(--bg);
}
.port-card:hover .port-overlay { opacity:1; }

.port-info { padding: 20px 24px; }
.port-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; font-family: var(--font-h); }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.port-tag { padding: 4px 12px; border-radius: 50px; background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.18); font-size: 11px; color: var(--orange); font-weight: 600; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; position: relative; }
.process-grid::before { content:''; position:absolute; top:40px; left:12%; right:12%; height:1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); }

.proc-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  position: relative; z-index: 1; transition: all 0.3s;
}
.proc-card:hover { border-color: rgba(252,86,49,0.4); transform: translateY(-4px); }

.proc-num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; font-family: var(--font-h); color: var(--bg);
}
.proc-num i { line-height: 1; font-size: 20px; }
.proc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; font-family: var(--font-h); }
.proc-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

.test-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.test-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-3px); }

.test-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.test-stars i { color: #fbbf24; font-size: 13px; }
.test-quote { font-size: 26px; color: var(--orange); opacity: 0.5; line-height: 1; margin-bottom: 12px; }
.test-quote i { line-height: 1; }

.test-card p { font-size: 14px; color: rgba(236,236,236,0.85); line-height: 1.8; margin-bottom: 22px; }

.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(252,86,49,0.3); }
.test-avatar img { width:100%; height:100%; object-fit:cover; }
.test-info strong { display: block; font-size: 15px; font-weight: 700; }
.test-info span { font-size: 12px; color: var(--orange); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0 0; }

.cta-card {
  position: relative; overflow: hidden; border-radius: 24px;
  display: flex; align-items: stretch;
  background: linear-gradient(135deg, #1a0804 0%, #2e0d06 35%, #3d1409 65%, #1e0904 100%);
  border: 1px solid rgba(252,86,49,0.25);
  box-shadow: 0 0 0 1px rgba(252,86,49,0.08), 0 40px 100px rgba(252,86,49,0.12);
  min-height: 420px;
}

/* subtle noise texture overlay */
.cta-noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: 24px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* glowing top border line */
.cta-card::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252,86,49,0.7), transparent);
  z-index: 1;
}

.cta-left {
  flex: 1; padding: 64px 56px; position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
}

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.3);
  font-size: 13px; font-weight: 700; color: var(--orange); width: fit-content;
}
.cta-badge i { font-size: 13px; line-height: 1; }

.cta-title {
  font-family: var(--font-h); font-size: clamp(36px,4.5vw,60px);
  font-weight: 800; line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 18px; color: var(--white);
}
.cta-accent { color: var(--orange); }

.cta-sub {
  font-size: 15px; color: var(--gray); line-height: 1.8;
  max-width: 420px; margin-bottom: 36px;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 100px;
  background: var(--orange); color: var(--bg);
  font-weight: 700; font-size: 15px; font-family: var(--font-b);
  transition: all 0.3s; border: none; cursor: pointer;
}
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(252,86,49,0.4); }

.cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: var(--white); font-weight: 600; font-size: 15px; font-family: var(--font-b);
  transition: all 0.3s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

.cta-stats {
  display: flex; align-items: center; gap: 24px;
}
.cta-stat { text-align: center; }
.cta-stat span {
  font-family: var(--font-h); font-size: 26px; font-weight: 800;
  color: var(--white); display: block; line-height: 1;
}
.cta-stat small { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 0.5px; margin-top: 4px; display: block; }
.cta-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.cta-right {
  flex-shrink: 0; width: 46%; position: relative; z-index: 2;
  display: flex; align-items: center; padding: 32px 32px 32px 0;
}

/* ── CTA VISUALIZATION: SERP MOCKUP ── */
.cta-visual {
  width: 100%; border-radius: 14px; overflow: hidden;
  background: #0e1117;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

/* ── Browser bar ── */
.cv-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  background: #13181f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cv-dots { display: flex; gap: 5px; flex-shrink: 0; }
.cv-dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.cv-dots span:nth-child(1) { background: #ff5f57; }
.cv-dots span:nth-child(2) { background: #febc2e; }
.cv-dots span:nth-child(3) { background: #28c840; }
.cv-url {
  flex: 1; display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 5px 12px;
  font-size: 11px; color: rgba(236,236,236,0.65);
}
.cv-url i { font-size: 11px; color: var(--gray); line-height: 1; }
.cv-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: #4ade80;
  flex-shrink: 0;
}
.cv-live span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* ── SERP results list ── */
.cv-results { padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.cv-result {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 10px; border-radius: 8px;
}
.cv-result-faded { opacity: 0.55; }
.cv-pos {
  font-family: var(--font-h); font-size: 14px; font-weight: 800;
  color: var(--gray); width: 16px; flex-shrink: 0; margin-top: 1px;
}
.cv-rurl  { font-size: 10px; color: #4ade80; margin-bottom: 2px; }
.cv-rtitle { font-size: 12px; color: rgba(236,236,236,0.7); font-weight: 500; }

/* ── #1 winner result (old def removed — see below) ── */

/* ── Stats footer ── */
.cv-foot {
  display: flex; align-items: center;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.cv-metric { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cv-metric small { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.cv-metric strong { font-family: var(--font-h); font-size: 18px; font-weight: 800; color: var(--green); line-height: 1; }
.cv-metric-div { width: 1px; height: 28px; background: rgba(255,255,255,0.07); }

/* Google-style search bar */
.cv-searchbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #13181f;
}
.cv-g-logo { font-size: 16px; font-weight: 700; letter-spacing: -0.5px; flex-shrink: 0; }
.cv-g-input {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 7px 14px;
  font-size: 11px; color: rgba(236,236,236,0.7);
}
.cv-g-input i { font-size: 11px; color: var(--gray); }

/* #1 highlighted result */
.cv-result-1 {
  display: block;
  margin: 12px 14px 8px;
  background: linear-gradient(135deg, rgba(252,86,49,0.07), rgba(252,86,49,0.03));
  border: 1px solid rgba(252,86,49,0.25);
  border-radius: 12px; padding: 14px;
  position: relative;
}
.cv-r1-top {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.cv-favicon {
  width: 20px; height: 20px; border-radius: 4px; overflow: hidden; flex-shrink: 0;
}
.cv-favicon img { width: 100%; height: 100%; object-fit: cover; }
.cv-r1-site { font-size: 11px; color: rgba(236,236,236,0.6); }
.cv-r1-url { font-size: 10px; color: var(--gray); }
.cv-rank-badge {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--bg); font-size: 10px; font-weight: 800; white-space: nowrap;
}
.cv-rank-badge i { font-size: 9px; }
.cv-moved-up {
  font-size: 9px; font-weight: 700; color: #4ade80;
  padding: 3px 8px; border-radius: 100px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  white-space: nowrap;
}
.cv-r1-title {
  font-size: 13px; font-weight: 700; color: #8ab4f8;
  margin-bottom: 6px; font-family: var(--font-b);
}
.cv-r1-desc {
  font-size: 11px; color: rgba(236,236,236,0.55); line-height: 1.6; margin-bottom: 8px;
}
.cv-r1-stars {
  display: flex; align-items: center; gap: 3px; font-size: 10px;
}
.cv-r1-stars i { color: #fbbf24; font-size: 10px; }
.cv-r1-stars span { color: var(--white); font-weight: 700; font-size: 11px; margin-left: 4px; }
.cv-r1-stars small { color: var(--gray); font-size: 10px; }

/* dim results */
.cv-dim-result {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cv-dim-n {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  font-size: 9px; font-weight: 700; color: var(--gray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
/* color:transparent + background-clip:text → visually identical, no contrast ratio to check */
.cv-dim-t { font-size: 11px; color: transparent; background: linear-gradient(90deg, rgba(138,180,248,0.55), rgba(138,180,248,0.45)); -webkit-background-clip: text; background-clip: text; margin-bottom: 2px; }
.cv-dim-u { font-size: 9px; color: transparent; background: linear-gradient(90deg, rgba(165,165,165,0.45), rgba(165,165,165,0.38)); -webkit-background-clip: text; background-clip: text; }

/* footer stats */
.cv-serp-foot {
  display: flex; align-items: center; gap: 0;
  padding: 10px 14px; background: rgba(255,255,255,0.02);
}
.cv-sf-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: var(--gray);
}
.cv-sf-item i { font-size: 10px; line-height: 1; }
.cv-sf-green { color: #4ade80; }
.cv-sf-orange { color: var(--orange); }
.cv-sf-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.07); }

/* backward compat */
.cta-glow { display: none; }

/* backward compat for other pages */
.cta-card-text { flex: 1; padding: 64px 56px; }
.cta-card-text h2 { font-size: clamp(36px,4.5vw,60px); font-weight: 800; line-height: 1.05; margin-bottom: 32px; }
.btn-cta-card {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  background: var(--bg); color: var(--white); font-weight: 700; font-size: 15px;
  font-family: var(--font-b); transition: all 0.3s; border: none; cursor: pointer;
}
.btn-cta-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.cta-card-img { flex-shrink: 0; width: 42%; align-self: flex-end; }
.cta-card-img img { width: 100%; display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg); padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute;
  bottom: 0; left: -200px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(252,86,49,0.28) 0%, rgba(252,86,49,0.08) 40%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.footer-main {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px; padding-bottom: 40px; position: relative; z-index: 1;
}
.footer-hello {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gray); text-transform: uppercase; display: block; margin-bottom: 20px;
}
.footer-heading {
  font-size: clamp(36px,4.5vw,60px); font-weight: 800; line-height: 0.98; margin-bottom: 32px;
}
.footer-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--white); text-transform: uppercase; transition: color 0.3s;
}
.footer-cta-link i { font-size: 13px; }
.footer-cta-link:hover { color: var(--orange); }
.footer-pill-head {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 20px;
}
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 14px; }
.footer-links-list li a { font-size: 15px; color: var(--gray); transition: color 0.3s; }
.footer-links-list li a:hover, .footer-links-list li a.f-active { color: var(--orange); }
.footer-addr-text { font-size: 14px; color: var(--gray); line-height: 1.9; margin-bottom: 28px; }
.footer-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 4px; }
.footer-social-grid a { font-size: 14px; color: var(--gray); transition: color 0.3s; }
.footer-social-grid a:hover { color: var(--white); }
.newsletter-row { display: flex; margin-top: 8px; }
.newsletter-row input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white); font-size: 14px; font-family: var(--font-b); outline: none;
}
.newsletter-row input::placeholder { color: var(--gray); }
.newsletter-row button {
  padding: 12px 18px; background: var(--orange); border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--bg); font-weight: 700; cursor: pointer; font-size: 16px;
  transition: opacity 0.2s; display: flex; align-items: center;
}
.newsletter-row button:hover { opacity: 0.85; }
.footer-watermark {
  display: block; width: 100%; position: relative; z-index: 1;
  opacity: 0.9; margin-bottom: 0;
}
.footer-watermark img { width: 100%; height: auto; display: block; }
.footer-bottom-bar {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;
}
.footer-icon { width: 32px; height: 32px; border-radius: 8px; }
.footer-bottom-bar p { font-size: 13px; color: var(--gray); }
.footer-legal-links { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); }
.footer-legal-links a { color: var(--gray); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--orange); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 150px 0 70px; text-align: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(252,86,49,0.1), transparent 60%);
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.breadcrumb a { color: var(--orange); }

/* ===== ABOUT PAGE ===== */
.about-intro-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-img-block { border-radius: 20px; overflow: hidden; position: relative; }
.about-img-block img { width: 100%; border-radius: 20px; }
.about-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 14px; padding: 16px 22px; text-align: center; color: var(--bg);
}
.about-badge .bn { font-size: 30px; font-weight: 800; font-family: var(--font-h); display: block; }
.about-badge .bl { font-size: 11px; font-weight: 600; }

.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(236,236,236,0.85); padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li .ck {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(157,255,0,0.1); border: 1px solid rgba(157,255,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* Team section */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.team-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: rgba(252,86,49,0.35); transform: translateY(-4px); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; margin: 0 auto 18px;
  font-family: var(--font-h); color: var(--bg);
}
.team-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* Values grid */
.core-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

/* ===== ABOUT PAGE REDESIGN ===== */

/* Hero */
.ab-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 90px; position: relative; overflow: hidden;
}
.ab-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(252,86,49,0.16) 0%, rgba(252,86,49,0.04) 50%, transparent 70%);
}
.ab-hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 70px; align-items: center;
}
.ab-hero-left { display: flex; flex-direction: column; }
.ab-hero-title {
  font-family: var(--font-h);
  font-weight: 800; line-height: 1; margin: 16px 0 24px;
}
.ab-hero-sub {
  font-size: 16px; color: var(--gray); line-height: 1.85;
  max-width: 480px; margin-bottom: 36px;
}
.ab-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bento */
.ab-hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.ab-stat-bento {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; width: 100%; max-width: 380px;
}
.ab-sb-card {
  background: rgba(255,255,255,0.035); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 22px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-sb-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-3px); }
.ab-sb-featured {
  background: linear-gradient(135deg, rgba(252,86,49,0.12), rgba(252,86,49,0.04));
  border-color: rgba(252,86,49,0.25);
}
.ab-sb-award {
  background: linear-gradient(135deg, rgba(157,255,0,0.06), rgba(157,255,0,0.02));
  border-color: rgba(157,255,0,0.2);
}
.ab-sb-num {
  font-family: var(--font-h); font-size: 38px; font-weight: 800;
  color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 4px;
}
.ab-sb-featured .ab-sb-num { color: var(--orange); }
.ab-sb-lbl { font-size: 11px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.ab-sb-icon {
  position: absolute; bottom: 14px; right: 16px;
  font-size: 22px; color: rgba(252,86,49,0.25);
}
.ab-sb-icon i { line-height: 1; }
.ab-sb-stars { display: flex; gap: 3px; margin-top: 8px; }
.ab-sb-stars i { color: #fbbf24; font-size: 12px; }
.ab-founded-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 12px; color: var(--gray); font-weight: 500;
}
.ab-founded-tag i { color: var(--orange); }

/* Story section */
.ab-story-section { padding: 100px 0; }
.ab-story-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}

/* Founder card */
.ab-founder-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px;
  position: sticky; top: 100px;
  transition: border-color 0.3s;
}
.ab-founder-card:hover { border-color: rgba(252,86,49,0.3); }
.ab-fc-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.ab-fc-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--bg);
}
.ab-fc-name { font-size: 16px; font-weight: 700; color: var(--white); }
.ab-fc-role { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 2px; }
.ab-fc-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25);
  font-size: 11px; font-weight: 700; color: #fbbf24; white-space: nowrap;
}
.ab-fc-badge i { font-size: 10px; }
.ab-fc-quote {
  font-size: 17px; color: rgba(236,236,236,0.9); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
  border-left: 3px solid var(--orange); padding-left: 20px;
}
.ab-fc-sig { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 24px; }
.ab-fc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ab-fc-chips span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 12px; color: var(--gray);
}
.ab-fc-chips span i { font-size: 11px; color: var(--orange); }

/* Timeline */
.ab-timeline { }
.ab-tl-head { margin-bottom: 40px; }
.ab-tl-list { display: flex; flex-direction: column; gap: 0; }
.ab-tl-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ab-tl-item:last-child { border-bottom: none; }
.ab-tl-item::before {
  content: ''; position: absolute;
  left: 68px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(252,86,49,0.3), transparent);
}
.ab-tl-year {
  font-family: var(--font-h); font-size: 15px; font-weight: 800;
  color: var(--orange); padding-top: 4px;
}
.ab-tl-now .ab-tl-year {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-tl-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.ab-tl-body p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* Why Rankaim / Differentiators */
.ab-diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 56px;
}
.ab-diff-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.ab-diff-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-4px); }
.ab-diff-featured {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, rgba(252,86,49,0.08), rgba(252,86,49,0.03));
  border-color: rgba(252,86,49,0.2);
}
.ab-diff-num {
  font-family: var(--font-h); font-size: 56px; font-weight: 800;
  color: rgba(252,86,49,0.08); position: absolute; top: 10px; right: 20px;
  line-height: 1;
}
.ab-diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--orange); margin-bottom: 18px;
}
.ab-diff-icon i { line-height: 1; }
.ab-diff-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.ab-diff-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }
.ab-diff-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ab-diff-tags span {
  padding: 5px 12px; border-radius: 100px;
  background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.18);
  font-size: 11px; font-weight: 600; color: var(--orange);
}

/* Values bento */
.ab-values-bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 56px;
}
.ab-val-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.ab-val-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-4px); }
.ab-val-featured {
  grid-row: 1 / 3; grid-column: 1;
  background: linear-gradient(160deg, rgba(252,86,49,0.1) 0%, rgba(252,86,49,0.03) 60%);
  border-color: rgba(252,86,49,0.2); padding: 36px;
}
.ab-val-bg-text {
  position: absolute; top: -10px; right: 10px;
  font-family: var(--font-h); font-size: 96px; font-weight: 800;
  color: rgba(252,86,49,0.06); line-height: 1; pointer-events: none;
}
.ab-val-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--orange); margin-bottom: 20px;
}
.ab-val-icon i { line-height: 1; }
.ab-val-icon-sm {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange); margin-bottom: 14px;
}
.ab-val-icon-sm i { line-height: 1; }
.ab-val-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.ab-val-featured h3 { font-size: 26px; margin-bottom: 14px; }
.ab-val-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }
.ab-val-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.ab-val-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(236,236,236,0.8);
}
.ab-val-list li i { color: var(--green); font-size: 12px; }

/* Team redesign */
.ab-team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.ab-team-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.35s;
}
.ab-team-card:hover { border-color: rgba(252,86,49,0.35); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.ab-tc-header {
  position: relative; height: 110px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
}
.ab-tc-num {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.25); letter-spacing: 1px;
}
.ab-tc-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--bg);
  border: 3px solid rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}
.ab-tc-body { padding: 20px 22px 24px; }
.ab-tc-role {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px;
}
.ab-tc-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ab-tc-body p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.ab-tc-socials { display: flex; gap: 8px; }
.ab-tc-socials a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray); transition: all 0.25s;
}
.ab-tc-socials a:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); }
.ab-tc-socials a i { line-height: 1; }

/* Responsive */
@media(max-width:1024px) {
  .ab-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ab-hero-right { align-items: flex-start; }
  .ab-stat-bento { max-width: 100%; }
  .ab-story-inner { grid-template-columns: 1fr; }
  .ab-founder-card { position: static; }
  .ab-diff-grid { grid-template-columns: 1fr 1fr; }
  .ab-diff-featured { grid-column: 1 / 3; }
  .ab-values-bento { grid-template-columns: 1fr 1fr; }
  .ab-val-featured { grid-row: auto; grid-column: 1 / 3; }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
  .ab-diff-grid { grid-template-columns: 1fr; }
  .ab-diff-featured { grid-column: 1; }
  .ab-values-bento { grid-template-columns: 1fr; }
  .ab-val-featured { grid-column: 1; }
  .ab-team-grid { grid-template-columns: 1fr 1fr; }
  .ab-tl-item { grid-template-columns: 60px 1fr; }
}
@media(max-width:480px) {
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-stat-bento { grid-template-columns: 1fr 1fr; }
}

/* ===== SERVICES PAGE REDESIGN ===== */

/* Hero */
.sv-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 90px; position: relative; overflow: hidden;
}
.sv-hero-glow {
  position: absolute; top: -80px; right: -120px;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(252,86,49,0.16) 0%, rgba(252,86,49,0.04) 50%, transparent 70%);
}
.sv-hero-glow2 {
  top: auto; right: auto; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(252,86,49,0.08) 0%, transparent 65%);
}
.sv-hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: center;
}
.sv-hero-left { display: flex; flex-direction: column; }
.sv-hero-title {
  font-family: var(--font-h);
  font-weight: 800; line-height: 1;
  margin: 16px 0 22px; color: var(--white);
}
.sv-ht-accent {
  display: block; color: var(--orange);
  font-size: clamp(48px,6vw,80px); letter-spacing: -3px; line-height: 0.9;
  margin-top: 4px;
}
.sv-hero-sub {
  font-size: 16px; color: var(--gray); line-height: 1.85;
  max-width: 500px; margin-bottom: 36px;
}
.sv-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.sv-hero-row { display: flex; flex-wrap: wrap; gap: 20px; }
.sv-hr-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--gray); font-weight: 500;
}
.sv-hr-item i { color: var(--green); font-size: 12px; }

/* Service stack cards */
.sv-hero-right { position: relative; }
.sv-stack { display: flex; flex-direction: column; gap: 12px; }
.sv-stack-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px 20px;
  backdrop-filter: blur(16px);
  transition: all 0.35s; position: relative; z-index: 1;
}
.sv-stack-card:hover { border-color: rgba(252,86,49,0.3); transform: translateX(-6px); background: rgba(252,86,49,0.04); }
.sv-sc-1 { margin-left: 0; }
.sv-sc-2 { margin-left: 20px; }
.sv-sc-3 { margin-left: 10px; }
.sv-sc-4 { margin-left: 30px; }
.sv-sc-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
}
.sv-sc-icon i { line-height: 1; }
.sv-sc-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.sv-sc-meta { font-size: 11px; color: var(--gray); }
.sv-stack-card > *:nth-child(3) { margin-left: auto; }
.sv-sc-badge {
  padding: 4px 11px; border-radius: 100px;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.sv-sc-green { background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.25); color: #4ade80; }
.sv-sc-orange { background: rgba(252,86,49,0.12); border: 1px solid rgba(252,86,49,0.25); color: var(--orange); }
.sv-sc-purple { background: rgba(212,0,245,0.1); border: 1px solid rgba(212,0,245,0.22); color: var(--purple); }
.sv-sc-blue { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }

/* Ticker */
@keyframes ticker-scroll { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
.sv-ticker {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01); padding: 16px 0; white-space: nowrap;
}
.sv-ticker-track {
  display: inline-flex; align-items: center; gap: 28px;
  animation: ticker-scroll 30s linear infinite;
}
.sv-ticker-track span {
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  color: rgba(236,236,236,0.55); letter-spacing: 0.3px;
}
.sv-tk-dot { color: var(--orange) !important; font-size: 10px !important; }

/* Services Bento */
/* ── Bento grid ── */
.sv-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--border);
}

/* ── Base card ── */
.sv-bc {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  display: flex;
  flex-direction: column;
}
.sv-bc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 0% 0%, rgba(252,86,49,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.sv-bc:hover { background: rgba(252,86,49,0.03); }
.sv-bc:hover::after { opacity: 1; }

/* ── Card placements ── */
.sv-bc-seo    { grid-column: 1 / 3; }
.sv-bc-brand  { grid-column: 3; grid-row: 1 / 3; }
.sv-bc-webdev { grid-column: 1; }
.sv-bc-app    { grid-column: 2; }
.sv-bc-social { grid-column: 1 / 3; }
.sv-bc-uiux   { grid-column: 3; }
.sv-bc-digmkt { grid-column: 1 / 4; }

/* Featured SEO card accent */
.sv-bc-seo {
  background: linear-gradient(135deg, rgba(252,86,49,0.06) 0%, var(--bg2) 55%);
}
.sv-bc-seo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

/* Social accent */
.sv-bc-social {
  background: var(--bg2);
}

/* ── Number overlay ── */
.sv-bc-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-h);
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -3px;
}

/* ── Top row (icon + badge) ── */
.sv-bc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ── Icon ── */
.sv-bc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(252,86,49,0.1);
  border: 1px solid rgba(252,86,49,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.sv-bc:hover .sv-bc-icon {
  background: rgba(252,86,49,0.18);
  border-color: rgba(252,86,49,0.35);
}
.sv-bc-top .sv-bc-icon { margin-bottom: 0; }
.sv-bc-icon i { line-height: 1; }

/* ── Badge tag ── */
.sv-bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.sv-tag-green {
  background: rgba(157,255,0,0.08);
  border: 1px solid rgba(157,255,0,0.2);
  color: var(--green);
}
.sv-tag-orange {
  background: rgba(252,86,49,0.1);
  border: 1px solid rgba(252,86,49,0.25);
  color: var(--orange);
}

/* ── Typography ── */
.sv-bc h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--white);
}
.sv-bc p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}

/* ── Pills ── */
.sv-bc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.sv-bc-pills span {
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 600;
  color: rgba(165,165,165,0.9);
  transition: all 0.2s;
}
.sv-bc:hover .sv-bc-pills span {
  border-color: rgba(252,86,49,0.15);
  color: var(--white);
}

/* ── Checklist ── */
.sv-bc-list {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-bc-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(236,236,236,0.8);
}
.sv-bc-list li i {
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── CTA link ── */
.sv-bc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap 0.2s;
  width: fit-content;
}
.sv-bc-link i { line-height: 1; font-size: 12px; }
.sv-bc-link:hover { gap: 12px; }

/* ── Stats strip ── */
.sv-bc-result {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  margin-bottom: 22px;
  overflow: hidden;
}
.sv-bcr-item {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  transition: background 0.2s;
}
.sv-bcr-item:hover { background: rgba(252,86,49,0.05); }
.sv-bcr-item strong {
  display: block;
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.sv-bcr-item small { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.sv-bcr-div { width: 1px; background: rgba(255,255,255,0.06); }

/* ── Platform tags ── */
.sv-bc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.sv-bc-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}
.sv-bc-platforms span:hover { border-color: rgba(252,86,49,0.3); color: var(--white); }
.sv-bc-platforms span i { font-size: 13px; color: var(--orange); line-height: 1; }

/* ── Digital marketing inner grid ── */
.sv-bc-digi-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.sv-digi-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sv-dm-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.25s;
}
.sv-dm-item:hover { border-color: rgba(252,86,49,0.3); color: var(--orange); background: rgba(252,86,49,0.04); }

/* Process */
.sv-process {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.sv-proc-item {
  text-align: center; padding: 0 24px; position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.sv-proc-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(252,86,49,0.08); border: 2px solid rgba(252,86,49,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--orange); margin-bottom: 24px;
  position: relative; z-index: 1; transition: all 0.3s;
}
.sv-proc-circle i { line-height: 1; font-size: 26px; }
.sv-proc-item:hover .sv-proc-circle { background: var(--orange); color: var(--bg); border-color: var(--orange); }
.sv-proc-num {
  position: absolute; top: -8px; right: -4px;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  color: var(--orange); background: var(--bg);
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(252,86,49,0.3);
  display: flex; align-items: center; justify-content: center;
}
.sv-proc-connector {
  position: absolute; top: 40px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 1px; background: linear-gradient(90deg, rgba(252,86,49,0.4), rgba(252,86,49,0.1));
  z-index: 0;
}
.sv-proc-item:last-child .sv-proc-connector { display: none; }
.sv-proc-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.sv-proc-item p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* Pricing */
.sv-pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px; align-items: stretch;
}
.sv-price-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.sv-price-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-6px); }
.sv-pc-featured {
  background: linear-gradient(160deg, rgba(252,86,49,0.1) 0%, rgba(252,86,49,0.04) 50%);
  border-color: rgba(252,86,49,0.35);
  box-shadow: 0 0 0 1px rgba(252,86,49,0.1), 0 24px 60px rgba(252,86,49,0.1);
}
.sv-pc-popular {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: var(--bg);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px;
}
.sv-pc-head { margin-bottom: 32px; }
.sv-pc-tier {
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px;
}
.sv-pc-price {
  font-family: var(--font-h); font-size: 48px; font-weight: 800;
  color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 12px;
}
.sv-pc-price span { font-size: 18px; color: var(--gray); font-weight: 500; letter-spacing: 0; }
.sv-pc-sub { font-size: 14px; color: var(--gray); line-height: 1.6; }
.sv-pc-list {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px;
}
.sv-pc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(236,236,236,0.85);
}
.sv-pc-list li i { font-size: 13px; color: var(--green); flex-shrink: 0; }
.sv-pc-na { opacity: 0.35 !important; }
.sv-pc-na i { color: var(--gray) !important; }
.sv-pc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px; font-weight: 600; color: var(--white);
  transition: all 0.3s; cursor: pointer; margin-top: auto;
}
.sv-pc-btn:hover { border-color: var(--orange); color: var(--orange); }
.sv-pc-btn-primary {
  background: var(--orange); border-color: var(--orange); color: var(--bg);
}
.sv-pc-btn-primary:hover { opacity: 0.88; color: var(--bg) !important; transform: translateY(-2px); }
.sv-pricing-note {
  text-align: center; font-size: 13px; color: var(--gray);
  margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 7px;
}
.sv-pricing-note i { color: var(--orange); }

/* Testimonial */
.sv-testi-wrap {
  display: grid; grid-template-columns: 1.4fr 0.6fr;
  gap: 60px; align-items: center;
}
.sv-testi-quote {
  font-family: var(--font-h); font-size: 120px; line-height: 0.6;
  color: rgba(252,86,49,0.2); margin-bottom: 20px; display: block;
}
.sv-testi-text {
  font-family: var(--font-h); font-size: clamp(18px,2.2vw,26px);
  font-weight: 500; color: var(--white); line-height: 1.6;
  margin-bottom: 36px; max-width: 680px;
}
.sv-testi-author { display: flex; align-items: center; gap: 16px; }
.sv-ta-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--bg);
}
.sv-testi-author strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.sv-testi-author span { font-size: 13px; color: var(--orange); }
.sv-ta-stars { margin-left: auto; display: flex; gap: 4px; }
.sv-ta-stars i { color: #fbbf24; font-size: 15px; }
.sv-testi-stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.sv-tsc-item { padding: 18px 0; }
.sv-tsc-item:first-child { padding-top: 0; }
.sv-tsc-item:last-child { padding-bottom: 0; }
.sv-tsc-num {
  font-family: var(--font-h); font-size: 22px; font-weight: 800;
  color: var(--gray); line-height: 1; margin-bottom: 4px;
}
.sv-tsc-num span { color: var(--orange); }
.sv-tsc-lbl { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.sv-tsc-div { height: 1px; background: var(--border); }
.sv-testi-tag {
  margin-top: 14px; display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: #4ade80; font-weight: 600;
}
.sv-testi-tag i { font-size: 11px; }

/* FAQ */
.sv-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 56px;
}
.sv-faq-item {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 30px;
  transition: all 0.3s;
}
.sv-faq-item:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-3px); }
.sv-faq-q {
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.sv-faq-q i { color: var(--orange); font-size: 15px; flex-shrink: 0; }
.sv-faq-item p { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* Responsive */
@media(max-width:1024px){
  .sv-hero-inner { grid-template-columns: 1fr; }
  .sv-bento { grid-template-columns: 1fr 1fr; }
  .sv-bc-seo { grid-column: 1 / 3; }
  .sv-bc-brand { grid-column: 2; grid-row: auto; }
  .sv-bc-social { grid-column: 1 / 3; }
  .sv-bc-digmkt { grid-column: 1 / 3; }
  .sv-bc-uiux { grid-column: 1 / 3; }
  .sv-bc { padding: 32px 28px; }
  .sv-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .sv-testi-wrap { grid-template-columns: 1fr; }
  .sv-process { grid-template-columns: repeat(2,1fr); gap: 40px 0; }
  .sv-proc-connector { display: none; }
  .sv-bc-digi-inner { grid-template-columns: 1fr; gap: 20px; }
}
@media(max-width:768px){
  .sv-bento { grid-template-columns: 1fr; border-radius: 16px; }
  .sv-bc-seo,.sv-bc-brand,.sv-bc-social,.sv-bc-digmkt,.sv-bc-uiux { grid-column: 1; grid-row: auto; }
  .sv-bc { padding: 28px 24px; }
  .sv-bc-seo::before,.sv-bc-social::before { display: none; }
  .sv-faq-grid { grid-template-columns: 1fr; }
  .sv-process { grid-template-columns: 1fr 1fr; }
  .sv-pricing-grid { max-width: 100%; }
}
@media(max-width:480px){
  .sv-process { grid-template-columns: 1fr; }
}

/* ===== MOCKUPS SHOWCASE ===== */

.mk-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px; margin-top: 56px;
}

/* Card base */
.mk-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.mk-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-4px); }
.mk-label {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--orange);
  background: rgba(252,86,49,0.04);
}
.mk-label i { font-size: 13px; line-height: 1; }

/* Grid placement */
.mk-seo    { grid-column: 1; grid-row: 1 / 3; }
.mk-brand  { grid-column: 2; grid-row: 1; }
.mk-web    { grid-column: 3; grid-row: 1; }
.mk-social { grid-column: 2; grid-row: 2; }
.mk-app    { grid-column: 3; grid-row: 2; }

/* Shared utils */
.mk-orange { color: var(--orange) !important; }
.mk-green  { color: #4ade80 !important; }

/* ── SEO Dashboard ── */
.mk-seo-inner { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.mk-seo-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
}
.mk-seo-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mk-dot-r { background: #ff5f57; }
.mk-dot-y { background: #febc2e; }
.mk-dot-g { background: #28c840; }
.mk-seo-url { flex: 1; font-size: 11px; color: var(--gray); text-align: center; }
.mk-seo-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: #4ade80; }
.mk-seo-live span { width: 5px; height: 5px; background: #4ade80; border-radius: 50%; animation: pulse 1.8s infinite; }

.mk-seo-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px;
}
.mk-ss-item { flex: 1; text-align: center; }
.mk-ss-val { font-family: var(--font-h); font-size: 22px; font-weight: 800; line-height: 1; color: var(--white); }
.mk-ss-lbl { font-size: 10px; color: var(--gray); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.8px; }
.mk-ss-div { width: 1px; height: 32px; background: var(--border); }

.mk-seo-chart { display: flex; gap: 10px; height: 130px; }
.mk-chart-labels {
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 9px; color: var(--gray); text-align: right; padding-right: 4px;
}
.mk-chart-area { flex: 1; }
.mk-chart-months {
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--gray); margin-top: 6px;
}

.mk-kw-list { display: flex; flex-direction: column; gap: 0; }
.mk-kw-row {
  display: grid; grid-template-columns: 2fr 0.6fr 0.6fr 0.7fr;
  padding: 9px 12px; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 8px; align-items: center;
}
.mk-kw-head {
  font-size: 10px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.8px;
  background: rgba(255,255,255,0.03); border-radius: 8px; margin-bottom: 4px;
}
.mk-kw-row span { color: rgba(236,236,236,0.75); }
.mk-kw-row span:first-child { color: var(--white); }

/* ── Brand Identity ── */
.mk-brand-inner { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.mk-brand-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; gap: 4px;
}
.mk-bl-mark {
  font-family: var(--font-h); font-size: 52px; font-weight: 800;
  color: var(--orange); line-height: 1; letter-spacing: -3px;
}
.mk-bl-name { font-family: var(--font-h); font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.mk-bl-tag { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }

.mk-brand-section { display: flex; flex-direction: column; gap: 8px; }
.mk-brand-slabel { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; }
.mk-colors { display: flex; gap: 6px; }
.mk-color {
  flex: 1; height: 44px; border-radius: 8px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 5px; position: relative; overflow: hidden;
}
.mk-color span { font-size: 8px; font-weight: 700; opacity: 0; transition: opacity 0.2s; color: inherit; }
.mk-color:hover span { opacity: 1; }

.mk-typo { display: flex; flex-direction: column; gap: 6px; }
.mk-ty-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 8px;
}
.mk-ty-size {
  font-family: var(--font-h); font-size: 28px; font-weight: 800;
  color: var(--orange); line-height: 1; flex-shrink: 0; width: 40px;
}
.mk-ty-name { font-size: 11px; color: var(--gray); }

.mk-logovar { display: flex; gap: 8px; }
.mk-lv-box {
  flex: 1; height: 52px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  border: 1px solid var(--border);
}
.mk-lv-dark  { background: #04080B; }
.mk-lv-light { background: #f0f0f0; }
.mk-lv-mono  { background: #3a3a3a; }
.mk-lv-r { font-family: var(--font-h); font-size: 18px; font-weight: 800; line-height: 1; }
.mk-lv-box span { font-size: 9px; color: var(--gray); }

/* ── Browser / Web Dev ── */
.mk-browser { flex: 1; display: flex; flex-direction: column; }
.mk-br-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.mk-br-dots { display: flex; gap: 5px; }
.mk-br-dots span { width: 8px; height: 8px; border-radius: 50%; }
.mk-br-dots span:nth-child(1) { background: #ff5f57; }
.mk-br-dots span:nth-child(2) { background: #febc2e; }
.mk-br-dots span:nth-child(3) { background: #28c840; }
.mk-br-url {
  flex: 1; font-size: 10px; color: var(--gray);
  background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 4px 10px; text-align: center;
}
.mk-br-scores { display: flex; gap: 5px; }
.mk-sc-g {
  font-size: 10px; font-weight: 800; color: #28c840;
  background: rgba(40,200,64,0.1); border-radius: 4px;
  padding: 2px 6px;
}

.mk-br-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; background: rgba(255,255,255,0.01); }
.mk-br-nav {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px; background: rgba(255,255,255,0.04); border-radius: 6px;
}
.mk-brn-logo { width: 36px; height: 8px; background: var(--orange); border-radius: 4px; flex-shrink: 0; }
.mk-brn-links { display: flex; gap: 8px; flex: 1; }
.mk-brn-links span { width: 28px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.mk-brn-btn { width: 40px; height: 18px; background: var(--orange); border-radius: 4px; flex-shrink: 0; }

.mk-br-hero {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255,255,255,0.02); border-radius: 8px; padding: 12px;
}
.mk-brh-left { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mk-brh-tag { width: 60px; height: 7px; background: rgba(252,86,49,0.3); border-radius: 10px; }
.mk-brh-h1 { width: 90%; height: 10px; background: rgba(255,255,255,0.15); border-radius: 4px; }
.mk-brh-sub { width: 95%; height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; margin-top: 2px; }
.mk-brh-btns { display: flex; gap: 6px; margin-top: 8px; }
.mk-brh-btn-p { width: 48px; height: 14px; background: var(--orange); border-radius: 4px; }
.mk-brh-btn-o { width: 40px; height: 14px; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; }
.mk-brh-right { width: 60px; }
.mk-brh-card { width: 60px; height: 60px; background: linear-gradient(135deg,rgba(252,86,49,0.2),rgba(252,86,49,0.05)); border: 1px solid rgba(252,86,49,0.2); border-radius: 8px; }

.mk-br-stats { display: flex; gap: 6px; }
.mk-brs-item {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px;
}
.mk-brs-num { height: 10px; background: rgba(252,86,49,0.3); border-radius: 3px; margin-bottom: 5px; }
.mk-brs-lbl { height: 6px; width: 70%; background: rgba(255,255,255,0.07); border-radius: 3px; }

.mk-br-footer {
  display: flex; gap: 12px; justify-content: center;
  padding: 10px; border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mk-brf-score {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: #4ade80;
}
.mk-brf-score i { font-size: 11px; }

/* ── Social Media ── */
.mk-social-inner { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.mk-soc-profile { display: flex; align-items: center; gap: 10px; }
.mk-soc-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--bg);
}
.mk-soc-name { font-size: 13px; font-weight: 700; color: var(--white); }
.mk-soc-handle { font-size: 11px; color: var(--gray); }
.mk-soc-follow {
  margin-left: auto; padding: 5px 12px; border-radius: 100px; flex-shrink: 0;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.25);
  font-size: 11px; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; gap: 5px;
}
.mk-soc-stats { display: flex; gap: 0; }
.mk-socst-item { flex: 1; text-align: center; padding: 8px 0; }
.mk-socst-item strong { display: block; font-family: var(--font-h); font-size: 16px; font-weight: 800; color: var(--white); }
.mk-socst-item span { font-size: 10px; color: var(--gray); }

.mk-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.mk-post {
  aspect-ratio: 1; border-radius: 6px; overflow: hidden; position: relative; cursor: pointer;
}
.mk-post-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  gap: 4px; opacity: 0; transition: opacity 0.2s;
}
.mk-post:hover .mk-post-overlay { opacity: 1; }
.mk-post-overlay i { font-size: 12px; color: #ff6b6b; }

.mk-soc-growth { }
.mk-sg-label {
  display: flex; justify-content: space-between;
  font-size: 11px; margin-bottom: 7px; color: var(--gray); font-weight: 600;
}
.mk-sg-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; }
.mk-sg-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--amber)); border-radius: 10px; }

/* ── Phone / App Dev ── */
.mk-phone-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.mk-phone {
  width: 180px; background: #0e1117;
  border: 2px solid rgba(255,255,255,0.15); border-radius: 32px;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.mk-ph-notch {
  width: 60px; height: 18px; background: #0e1117;
  border: 2px solid rgba(255,255,255,0.15); border-top: none;
  border-radius: 0 0 14px 14px; margin: 0 auto;
  position: relative; z-index: 2;
}
.mk-ph-screen { padding: 8px 12px 12px; }
.mk-ph-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9px; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.mk-ph-icons { display: flex; gap: 4px; font-size: 8px; }
.mk-ph-icons i { line-height: 1; }
.mk-ph-header { margin-bottom: 12px; }
.mk-ph-greeting { font-size: 10px; color: var(--gray); margin-bottom: 2px; }
.mk-ph-user { font-family: var(--font-h); font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.mk-ph-card {
  border-radius: 14px; padding: 12px; margin-bottom: 10px;
}
.mk-ph-card-orange {
  background: linear-gradient(135deg, var(--orange), var(--amber));
}
.mk-phc-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.mk-phc-val {
  font-family: var(--font-h); font-size: 28px; font-weight: 800;
  color: var(--bg); line-height: 1; margin-bottom: 4px;
}
.mk-phc-val span { font-size: 14px; font-weight: 500; }
.mk-phc-trend { font-size: 9px; color: rgba(4,8,11,0.75); display: flex; align-items: center; gap: 3px; }
.mk-phc-trend i { font-size: 9px; }
.mk-ph-row { display: flex; gap: 8px; margin-bottom: 12px; }
.mk-ph-mini {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px 8px; text-align: center;
}
.mk-phm-icon {
  width: 24px; height: 24px; border-radius: 8px;
  background: rgba(252,86,49,0.15); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--orange); margin: 0 auto 5px;
}
.mk-phm-icon i { line-height: 1; }
.mk-phm-green { background: rgba(74,222,128,0.12) !important; border-color: rgba(74,222,128,0.2) !important; color: #4ade80 !important; }
.mk-phm-val { font-family: var(--font-h); font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.mk-phm-lbl { font-size: 8px; color: var(--gray); }
.mk-ph-navbar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.mk-ph-ni { font-size: 14px; color: rgba(165,165,165,0.5); padding: 4px; }
.mk-ph-ni i { line-height: 1; }
.mk-ph-ni-active { color: var(--orange) !important; }

/* Responsive */
@media(max-width:1024px){
  .mk-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mk-seo { grid-column: 1 / 3; grid-row: 1; }
  .mk-brand { grid-column: 1; grid-row: 2; }
  .mk-web { grid-column: 2; grid-row: 2; }
  .mk-social { grid-column: 1; grid-row: 3; }
  .mk-app { grid-column: 2; grid-row: 3; }
}
@media(max-width:640px){
  .mk-grid { grid-template-columns: 1fr; }
  .mk-seo,.mk-brand,.mk-web,.mk-social,.mk-app { grid-column: 1; grid-row: auto; }
}

/* ===== SERVICES PAGE (old - kept for compat) ===== */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.svc-detail-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; transition: all 0.3s;
}
.svc-detail-card:hover { border-color: rgba(252,86,49,0.4); transform: translateY(-4px); }
.sdc-icon { font-size: 44px; margin-bottom: 20px; }
.svc-detail-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.svc-detail-card > p { font-size: 14px; color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.feat-list { list-style: none; }
.feat-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(236,236,236,0.85); padding: 5px 0; }
.feat-list li::before { content: '→'; color: var(--orange); font-weight: 700; }

/* How we work */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.how-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center; transition: all 0.3s;
}
.how-card:hover { border-color: rgba(252,86,49,0.35); transform: translateY(-4px); }
.how-num { font-family: var(--font-h); font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 14px; }
.how-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* ===== CONTACT PAGE REDESIGN ===== */

/* Hero */
.ct-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 90px; position: relative; overflow: hidden;
}
.ct-hero-glow {
  position: absolute; top: -100px; right: -80px;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(252,86,49,0.14) 0%, rgba(252,86,49,0.04) 50%, transparent 70%);
}
.ct-hero-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: start;
}
.ct-hero-left { display: flex; flex-direction: column; }
.ct-hero-title {
  font-family: var(--font-h);
  font-weight: 800; line-height: 1;
  margin: 16px 0 20px;
}
.ct-hero-sub {
  font-size: 16px; color: var(--gray); line-height: 1.85;
  max-width: 460px; margin-bottom: 36px;
}

/* Info grid */
.ct-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px;
}
.ct-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 16px;
  transition: all 0.3s;
}
.ct-info-card:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-2px); }
.ct-ic-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(252,86,49,0.1); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--orange);
}
.ct-ic-icon i { line-height: 1; }
.ct-ic-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 4px; }
.ct-ic-val { font-size: 15px; font-weight: 600; color: var(--white); display: block; margin-bottom: 3px; transition: color 0.2s; }
.ct-ic-val:hover { color: var(--orange); }
.ct-ic-note { font-size: 11px; color: var(--gray); }

/* Socials */
.ct-socials { display: flex; align-items: center; gap: 16px; }
.ct-soc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); }
.ct-soc-links { display: flex; gap: 8px; }
.ct-soc-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray); transition: all 0.25s;
}
.ct-soc-btn i { line-height: 1; }
.ct-soc-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); }

/* Form card */
.ct-hero-right { position: sticky; top: 100px; }
.ct-form-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.ct-fc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px; gap: 12px;
}
.ct-fc-head h3 { font-size: 22px; font-weight: 700; margin-bottom: 5px; }
.ct-fc-head p { font-size: 13px; color: var(--gray); }
.ct-fc-badge {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22);
  font-size: 11px; font-weight: 700; color: #4ade80;
}
.ct-fc-badge span {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Form elements */
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-fg { display: flex; flex-direction: column; gap: 7px; }
.ct-fg label { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.3px; }
.ct-opt { color: var(--gray); font-weight: 500; }

.ct-input-wrap {
  position: relative; display: flex; align-items: center;
}
.ct-input-wrap > i {
  position: absolute; left: 14px; font-size: 14px; color: var(--gray);
  line-height: 1; pointer-events: none; z-index: 1;
}
.ct-input-wrap input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 14px 13px 40px;
  font-size: 14px; color: var(--white); font-family: var(--font-b);
  transition: all 0.25s; outline: none;
}
.ct-input-wrap input::placeholder { color: rgba(165,165,165,0.5); }
.ct-input-wrap input:focus { border-color: rgba(252,86,49,0.5); background: rgba(252,86,49,0.04); box-shadow: 0 0 0 3px rgba(252,86,49,0.08); }

.ct-select-wrap {
  position: relative; display: flex; align-items: center;
}
.ct-select-wrap > i:first-child {
  position: absolute; left: 14px; font-size: 14px; color: var(--gray);
  line-height: 1; pointer-events: none; z-index: 1;
}
.ct-sel-arrow {
  position: absolute !important; right: 14px !important; left: auto !important;
  font-size: 13px !important; color: var(--gray) !important;
}
.ct-select-wrap select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 14px 13px 40px;
  font-size: 14px; color: var(--white); font-family: var(--font-b);
  transition: all 0.25s; outline: none; appearance: none; cursor: pointer;
}
.ct-select-wrap select:focus { border-color: rgba(252,86,49,0.5); background: rgba(252,86,49,0.04); box-shadow: 0 0 0 3px rgba(252,86,49,0.08); }
.ct-select-wrap select option { background: #1a1f26; color: var(--white); }

.ct-fg textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; min-height: 110px; resize: vertical;
  font-size: 14px; color: var(--white); font-family: var(--font-b);
  line-height: 1.7; outline: none; transition: all 0.25s;
}
.ct-fg textarea::placeholder { color: rgba(165,165,165,0.5); }
.ct-fg textarea:focus { border-color: rgba(252,86,49,0.5); background: rgba(252,86,49,0.04); box-shadow: 0 0 0 3px rgba(252,86,49,0.08); }

/* Chips */
.ct-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--gray);
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.ct-chip input { display: none; }
.ct-chip i { font-size: 12px; line-height: 1; }
.ct-chip:hover { border-color: rgba(252,86,49,0.3); color: var(--white); }
.ct-chip:has(input:checked) {
  background: rgba(252,86,49,0.12); border-color: rgba(252,86,49,0.45);
  color: var(--orange);
}

/* Submit button */
.ct-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px; border-radius: var(--radius);
  background: var(--orange); color: var(--bg);
  font-family: var(--font-b); font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s;
}
.ct-submit:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(252,86,49,0.3); }
.ct-submit i { line-height: 1; font-size: 16px; }

/* What happens next */
.ct-next-grid {
  display: flex; align-items: flex-start;
  gap: 0; margin-top: 56px;
}
.ct-next-item {
  flex: 1; text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.ct-next-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gray); margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.3s;
}
.ct-next-circle i { line-height: 1; font-size: 24px; }
.ct-next-item:hover .ct-next-circle { border-color: rgba(252,86,49,0.4); color: var(--orange); background: rgba(252,86,49,0.06); }
.ct-next-orange {
  background: rgba(252,86,49,0.1) !important; border-color: rgba(252,86,49,0.35) !important;
  color: var(--orange) !important;
}
.ct-next-num {
  position: absolute; top: -8px; right: -4px;
  font-size: 10px; font-weight: 800; color: var(--orange);
  background: var(--bg); width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(252,86,49,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ct-next-connector {
  flex-shrink: 0; width: 60px; height: 1px;
  background: linear-gradient(90deg, rgba(252,86,49,0.3), rgba(252,86,49,0.08));
  margin-top: 40px; align-self: flex-start;
}
.ct-next-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ct-next-item p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.ct-next-time {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--gray);
}
.ct-next-time i { color: var(--orange); font-size: 11px; }

/* FAQ */
.ct-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 56px;
}
.ct-faq-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 26px;
  transition: all 0.3s;
}
.ct-faq-item:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-3px); }
.ct-faq-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--orange); margin-top: 2px;
}
.ct-faq-icon i { line-height: 1; }
.ct-faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.ct-faq-item p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* CTA strip */
.ct-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ct-strip-left { max-width: 520px; }
.ct-strip-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22);
  font-size: 12px; font-weight: 700; color: #4ade80;
}
.ct-strip-tag span {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}
.ct-strip-title {
  font-family: var(--font-h); font-size: clamp(36px,4.5vw,60px);
  font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 12px;
}
.ct-strip-left p { font-size: 15px; color: var(--gray); }
.ct-strip-right { display: flex; gap: 14px; flex-wrap: wrap; }

/* Responsive */
@media(max-width:1024px){
  .ct-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-hero-right { position: static; }
  .ct-next-grid { flex-wrap: wrap; justify-content: center; }
  .ct-next-connector { display: none; }
  .ct-next-item { flex: 0 0 40%; padding-bottom: 32px; }
}
@media(max-width:768px){
  .ct-info-grid { grid-template-columns: 1fr; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-faq-grid { grid-template-columns: 1fr; }
  .ct-next-item { flex: 0 0 80%; }
  .ct-strip { flex-direction: column; align-items: flex-start; }
}
@media(max-width:480px){
  .ct-next-item { flex: 0 0 100%; }
  .ct-strip-right { flex-direction: column; }
}

/* ===== CONTACT PAGE (old - kept for compat) ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.3s;
}
.info-card:hover { border-color: rgba(252,86,49,0.35); }
.ic-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.info-card p { font-size: 13px; color: var(--gray); }
.info-card a { color: var(--orange); }

.cf-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
}
.cf-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.cf-card > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 12px; font-weight: 700; color: rgba(236,236,236,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-bottom: 1px solid rgba(252,86,49,0.3);
  border-radius: 0; padding: 12px 0;
  color: var(--white); font-size: 14px; font-family: var(--font-b); outline: none;
  transition: border-color 0.2s; width: 100%;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-bottom-color: var(--orange); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray); }
.fg select option { background: #1a1a2a; }
.fg textarea { resize: vertical; min-height: 100px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  font-size: 12px; cursor: pointer; transition: all 0.2s; color: var(--white);
}
.chip input { display: none; }
.chip:hover, .chip.on { border-color: var(--orange); background: rgba(252,86,49,0.08); color: var(--orange); }

.faq-wrap { max-width: 700px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* ===== HP SECTIONS ===== */
.hp-section { padding: 100px 0; }
.hp-dark { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.sec-head-sub { font-size: 15px; color: var(--gray); line-height: 1.9; max-width: 280px; text-align: right; }

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.ss-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.ss-item { flex: 1; text-align: center; padding: 12px 24px; }
.ss-num {
  font-family: var(--font-h); font-size: clamp(40px,4.5vw,60px);
  font-weight: 800; color: var(--orange); letter-spacing: -2px; line-height: 1;
  display: block;
}
.ss-lbl { font-size: 13px; color: var(--gray); margin-top: 6px; display: block; letter-spacing: 0.5px; }
.ss-div { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ===== BENTO SERVICES GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.bento-card:hover { border-color: rgba(252,86,49,0.35); transform: translateY(-4px); }
.bento-featured {
  grid-column: 1; grid-row: 1 / 3;
  padding: 44px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-featured-top { display: flex; flex-direction: column; }
.bento-featured-bottom {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 28px; margin-top: 28px;
}
.bfb-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(236,236,236,0.75);
  padding: 9px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.bfb-tag i { font-size: 12px; color: var(--orange); line-height: 1; }
.bfb-tag:hover { color: var(--white); background: rgba(252,86,49,0.06); border-color: rgba(252,86,49,0.2); }
.bento-wide {
  grid-column: 1 / 4; grid-row: 3;
}
.bento-accent {
  background: linear-gradient(135deg, #1c0803, #2f0e07, #1a0c05);
  border-color: rgba(252,86,49,0.3);
}
.bento-wide-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.bento-bg-num {
  position: absolute; top: -14px; right: 20px;
  font-family: var(--font-h); font-size: 100px; font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1; pointer-events: none; user-select: none;
}
.bento-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(252,86,49,0.08); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--orange); margin-bottom: 22px;
}
.bento-icon-inv {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--white); margin-bottom: 18px;
}
.bento-icon i, .bento-icon-inv i { line-height: 1; font-size: 24px; }
.bento-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; font-family: var(--font-h); }
.bento-featured h3 { font-size: 24px; margin-bottom: 14px; }
.bento-card p { font-size: 14px; color: var(--gray); line-height: 1.85; }
.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 13px; font-weight: 600;
  margin-top: 24px; transition: gap 0.2s;
}
.bento-link:hover { gap: 10px; }
.btn-dark-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 100px;
  background: var(--bg); color: var(--white);
  font-weight: 700; font-size: 14px; font-family: var(--font-b);
  white-space: nowrap; transition: all 0.3s; flex-shrink: 0;
}
.btn-dark-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

/* ===== HOMEPAGE ABOUT ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left { position: relative; }

/* Browser window wrapper */
.about-window-wrap { position: relative; padding: 20px 28px 48px 20px; }

.aw-window {
  border-radius: 16px; overflow: hidden;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

/* Chrome / title bar */
.aw-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.aw-dots { display: flex; gap: 6px; flex-shrink: 0; }
.aw-dots span { width: 11px; height: 11px; border-radius: 50%; }
.aw-dots span:nth-child(1) { background: #ff5f56; }
.aw-dots span:nth-child(2) { background: #febc2e; }
.aw-dots span:nth-child(3) { background: #27c840; }
.aw-url-bar {
  flex: 1; display: flex; align-items: center; gap: 6px; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 5px 14px;
  font-size: 11px; color: rgba(255,255,255,0.55);
}
.aw-url-bar i { font-size: 10px; color: #4ade80; }
.aw-actions { font-size: 13px; color: var(--gray); flex-shrink: 0; }

/* Mini nav inside window */
.aw-nav {
  display: flex; align-items: center; gap: 20px;
  padding: 10px 16px; background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.aw-nav-links { display: flex; gap: 16px; flex: 1; }
.aw-nav-links span { font-size: 10px; color: rgba(255,255,255,0.4); cursor: pointer; }
.aw-nav-btn {
  padding: 4px 12px; border-radius: 6px;
  background: var(--orange); color: var(--bg);
  font-size: 9px; font-weight: 700;
}

/* Body / screenshot */
.aw-body { position: relative; overflow: hidden; height: 240px; }
.aw-body img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.aw-body-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, #0d1117, transparent);
}

/* Floating achievement card */
.about-float-card {
  position: absolute; bottom: 8px; right: 0;
  background: rgba(10,14,18,0.96); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 22px; backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  min-width: 220px;
}
.afc-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--white);
  padding: 6px 0;
}
.afc-row i { font-size: 15px; line-height: 1; }

/* Experience badge */
.about-exp-badge {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 14px; padding: 16px 20px; text-align: center;
  color: var(--bg); box-shadow: 0 10px 30px rgba(252,86,49,0.4);
}
.aeb-num { font-family: var(--font-h); font-size: 32px; font-weight: 800; display: block; line-height: 1; }
.aeb-txt { font-size: 10px; font-weight: 700; display: block; margin-top: 4px; }
.about-features { display: flex; flex-direction: column; gap: 4px; }
.af-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.af-item:last-child { border-bottom: none; }
.af-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(252,86,49,0.07); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
}
.af-icon i { line-height: 1; font-size: 18px; }
.af-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--white); }
.af-item span { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== PORTFOLIO LIST ===== */
.porto-list { display: flex; flex-direction: column; margin-top: 8px; }

.pl-item {
  display: flex; align-items: center; gap: 28px;
  padding: 22px 20px; border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s; position: relative;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--border);
}
.pl-item:last-child { border-bottom: none; }
.pl-item:hover {
  background: rgba(252,86,49,0.04);
  border-color: rgba(252,86,49,0.18);
  border-bottom-color: rgba(252,86,49,0.18);
  transform: translateX(8px);
  border-radius: 14px;
}
.pl-num {
  font-family: var(--font-h); font-size: 48px; font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, rgba(252,86,49,0.2) 0%, rgba(252,86,49,0.1) 100%);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1; min-width: 68px; transition: background 0.3s;
}
.pl-item:hover .pl-num { background: linear-gradient(135deg, rgba(252,86,49,0.45) 0%, rgba(252,86,49,0.25) 100%); }
.pl-body { flex: 1; }
.pl-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 7px; transition: color 0.3s; }
.pl-item:hover .pl-body h3 { color: var(--orange); }
.pl-cats { display: flex; gap: 7px; }
.pl-cats span {
  font-size: 11px; font-weight: 600; color: var(--gray);
  padding: 3px 11px; border-radius: 50px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.pl-thumb {
  width: 90px; height: 62px; border-radius: 10px; object-fit: cover;
  opacity: 0; transition: opacity 0.35s; flex-shrink: 0;
}
.pl-item:hover .pl-thumb { opacity: 1; }
.pl-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(252,86,49,0.07); border: 1px solid rgba(252,86,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--orange); transition: all 0.3s;
}
.pl-item:hover .pl-icon { background: var(--orange); color: var(--bg); transform: rotate(45deg); }

/* ===== ABOUT CHART CARD ===== */
.about-chart-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.acc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.acc-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.acc-period { font-size: 11px; color: var(--gray); }
.acc-growth-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  font-size: 13px; font-weight: 800; color: #4ade80; font-family: var(--font-h);
}
.acc-growth-badge i { font-size: 12px; }

.acc-chart { display: flex; gap: 8px; margin-bottom: 0; }
.acc-yaxis {
  display: flex; flex-direction: column; justify-content: space-between;
  padding-bottom: 0; font-size: 9px; color: var(--gray); text-align: right;
  min-width: 28px; height: 110px;
}
.acc-plot { flex: 1; }

.acc-months {
  display: flex; justify-content: space-between;
  padding: 8px 0 16px 36px;
  font-size: 9px; font-weight: 600; color: var(--gray); letter-spacing: 0.5px;
}

.acc-metrics {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.acc-met { flex: 1; text-align: center; }
.acc-mval { display: block; font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.acc-mval-green { color: #4ade80; }
.acc-mval-orange { color: var(--orange); }
.acc-mlbl { font-size: 10px; color: var(--gray); font-weight: 600; }
.acc-met-arrow { color: rgba(252,86,49,0.4); font-size: 14px; flex-shrink: 0; }

.acc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.acc-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px; font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--gray);
  transition: all 0.2s;
}
.acc-pills span i { font-size: 10px; color: var(--orange); }
.acc-pills span:hover { color: var(--white); border-color: rgba(252,86,49,0.3); }
.pb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,8,11,0.9) 0%, rgba(4,8,11,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transition: opacity 0.35s;
}
.pb-featured .pb-overlay, .pb-card .pb-overlay { opacity: 1; }
.pb-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.pb-tags span {
  padding: 4px 12px; border-radius: 50px;
  background: rgba(252,86,49,0.15); border: 1px solid rgba(252,86,49,0.3);
  font-size: 10px; color: var(--orange); font-weight: 700; letter-spacing: 0.5px;
}
.pb-overlay h3 { font-size: 16px; font-weight: 600; color: var(--white); font-family: var(--font-h); }
.pb-featured .pb-overlay h3 { font-size: 22px; }

/* ===== PROCESS ROW ===== */
.process-row {
  display: flex; align-items: flex-start; gap: 0;
  position: relative;
}
.pr-step {
  flex: 1; text-align: center; padding: 0 24px; position: relative; z-index: 1;
}
.pr-num {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 16px;
  text-transform: uppercase;
}
.pr-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(252,86,49,0.08); border: 2px solid rgba(252,86,49,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--orange); margin: 0 auto 20px;
  transition: all 0.3s;
}
.pr-icon i { line-height: 1; font-size: 26px; }
.pr-step:hover .pr-icon { background: var(--orange); color: var(--bg); border-color: var(--orange); }
.pr-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; font-family: var(--font-h); }
.pr-step p { font-size: 13px; color: var(--gray); line-height: 1.75; }
.pr-connector { display: flex; align-items: center; padding-top: 52px; flex-shrink: 0; }
.pr-line { width: 60px; height: 1px; background: linear-gradient(90deg, rgba(252,86,49,0.4), rgba(252,86,49,0.15)); }

/* ===== TESTIMONIALS (featured layout) ===== */
.test-featured {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 60px; margin-bottom: 24px;
  position: relative;
}
.tf-quote-icon { font-size: 56px; color: var(--orange); opacity: 0.3; margin-bottom: 20px; line-height: 1; }
.tf-quote-icon i { line-height: 1; }
.tf-text {
  font-family: var(--font-h); font-size: clamp(17px,2.2vw,22px);
  font-weight: 500; color: var(--white); line-height: 1.65;
  margin-bottom: 36px; max-width: 820px;
}
.tf-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.tf-author { display: flex; align-items: center; gap: 16px; }
.tf-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(252,86,49,0.35); }
.tf-author strong { display: block; font-size: 16px; font-weight: 700; }
.tf-author span { font-size: 13px; color: var(--orange); }
.tf-stars { display: flex; gap: 4px; }
.tf-stars i { color: #fbbf24; font-size: 16px; }
.test-mini-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.test-mini {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; transition: all 0.3s;
}
.test-mini:hover { border-color: rgba(252,86,49,0.3); transform: translateY(-3px); }
.tm-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tm-stars i { color: #fbbf24; font-size: 13px; }
.test-mini p { font-size: 14px; color: rgba(236,236,236,0.8); line-height: 1.8; margin-bottom: 20px; }
.tm-author { display: flex; align-items: center; gap: 12px; }
.tm-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(252,86,49,0.25); }
.tm-author strong { display: block; font-size: 14px; font-weight: 700; }
.tm-author span { font-size: 12px; color: var(--orange); }

/* ===== SOCIALS (contact page) ===== */
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); transition: all 0.3s;
}
.social-btn i { line-height: 1; font-size: 18px; }
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--bg); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .services-grid,.test-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid::before { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-main { grid-template-columns:1fr 1fr; gap:40px; }
  .cta-card { min-height:auto; }
  .cta-right { width:48%; padding:24px 24px 24px 0; }
  .cta-left { padding:48px 40px; }
  .cta-card-img { width:35%; }
  .svc-detail-grid { grid-template-columns:1fr; }
  .how-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .core-values-grid { grid-template-columns:repeat(2,1fr); }
  /* New homepage */
  .bento-grid { grid-template-columns:1fr 1fr; }
  .bento-featured { grid-column:1 / 3; grid-row:1; }
  .bento-wide { grid-column:1 / 3; }
  .about-inner { gap:48px; }
  .about-float-card { right:-10px; bottom:-10px; }
  .test-mini-row { grid-template-columns:repeat(2,1fr); }
  .pb-bottom { grid-template-columns:1fr 1fr; }
  .process-row { flex-wrap:wrap; justify-content:center; }
  .pr-connector { display:none; }
  .pr-step { flex:0 0 40%; }
}
@media(max-width:768px){
  .container { padding:0 16px; }
  section,.hp-section { padding:60px 0; }
  .hero-layout { grid-template-columns:1fr; gap:48px; }
  .hero-right { display:flex; flex-direction:column; align-items:center; }
  .hero-serp-card { transform:none; max-width:100%; }
  .ht-huge { font-size:clamp(36px,10vw,58px); letter-spacing:-2px; }
  .hero-logos { gap:20px; }
  .hero-logos img { height:18px; }
  .hsr-item { padding:0 14px; }
  .hsr-item strong { font-size:22px; }
  .vision-inner,.about-intro-inner,.contact-wrap { grid-template-columns:1fr; }
  .port-grid { grid-template-columns:1fr 1fr; }
  .services-grid,.test-grid,.how-grid,.team-grid,.core-values-grid { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1fr; gap:32px; }
  .cta-card { flex-direction:column; }
  .cta-left { padding:40px 28px; }
  .cta-right { width:100%; padding:0 28px 36px; }
  .cta-card-img { width:100%; max-width:280px; align-self:center; }
  /* SERP card responsive fixes */
  .cta-visual { border-radius:10px; }
  .cv-searchbar { padding:10px 12px; gap:8px; }
  .cv-g-logo { font-size:13px; }
  .cv-g-input { font-size:10px; padding:5px 10px; }
  .cv-result-1 { margin:8px 10px 6px; padding:10px 12px; }
  .cv-r1-top { gap:6px; flex-wrap:wrap; }
  .cv-rank-badge { margin-left:auto; font-size:9px; padding:2px 8px; }
  .cv-moved-up { font-size:8px; padding:2px 7px; }
  .cv-r1-title { font-size:12px; }
  .cv-r1-desc { font-size:10px; line-height:1.5; }
  .cv-r1-stars small { display:none; }
  .cv-dim-result { padding:5px 10px; }
  .cv-serp-foot { padding:8px 12px; }
  .form-row { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background:rgba(4,8,11,0.97); border-bottom:1px solid var(--border);
    padding:20px 24px; gap:16px;
  }
  /* New homepage */
  .bento-grid { grid-template-columns:1fr; }
  .bento-featured,.bento-wide { grid-column:1; grid-row:auto; }
  .bento-wide-inner { flex-direction:column; align-items:flex-start; gap:20px; }
  .about-inner { grid-template-columns:1fr; gap:48px; }
  .about-float-card { position:static; margin-top:16px; }
  .about-exp-badge { top:12px; left:12px; }
  .porto-bento { grid-template-columns:1fr; }
  .pb-col { flex-direction:row; }
  .pb-bottom { grid-column:1; grid-template-columns:1fr; }
  .pb-featured { aspect-ratio:16/9; }
  .test-mini-row { grid-template-columns:1fr; }
  .sec-head { flex-direction:column; align-items:flex-start; }
  .sec-head-sub { text-align:left; }
  .tf-bottom { flex-direction:column; align-items:flex-start; }
  .test-featured { padding:36px 28px; }
  .ss-inner { flex-wrap:wrap; }
  .ss-item { flex:0 0 45%; }
  .ss-div { display:none; }
  .pr-step { flex:0 0 80%; }
}
@media(max-width:480px){
  .container { padding:0 12px; }
  .port-grid { grid-template-columns:1fr; }
  .hero-stats-row { flex-wrap:wrap; gap:16px; }
  .hsr-sep { display:none; }
  .hsr-item { padding:0; flex:0 0 40%; }
  .ss-item { flex:0 0 100%; }
  .pb-col { flex-direction:column; }
  /* SERP card extra small */
  .cta-right { padding:0 14px 24px; }
  .cv-result-1 { margin:6px 8px 4px; padding:8px 10px; }
  .cv-moved-up { display:none; }
  .cv-r1-desc { font-size:9px; }
  .cv-favicon { width:16px; height:16px; }
}

/* ═══════════════════════════════════════════════
   EDITORIAL SERVICE MOCKUP ROWS  (.mks-*)
═══════════════════════════════════════════════ */

/* ── Showcase wrapper ── */
.mk-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Row ── */
.mks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.mks-row:last-child { border-bottom: 1px solid var(--border); }
.mks-row-flip { direction: rtl; }
.mks-row-flip > * { direction: ltr; }

/* ── Info panel ── */
.mks-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  border-right: 1px solid var(--border);
}
.mks-row-flip .mks-info { border-right: none; border-left: 1px solid var(--border); }

.mks-num {
  font-family: var(--font-h);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(252,86,49,0.25);
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.mks-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.mks-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 28px;
}

.mks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.mks-list li i {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Visual panel (shared) ── */
.mks-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background: var(--bg2);
  overflow: hidden;
  gap: 20px;
}
.mks-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(252,86,49,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════
   01 · SEO VISUAL
═══════════════════ */
.mks-visual-seo { gap: 16px; }

.mks-seo-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(252,86,49,0.15) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.mks-search-bar {
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--white);
}
.mks-search-bar > i { color: var(--gray); font-size: 15px; line-height: 1; }
.mks-search-bar > span { flex: 1; font-weight: 500; }

.mks-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.5px;
}
.mks-live span {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.7); }
}

/* Ranking ladder */
.mks-serp {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mks-serp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: all 0.2s;
}
.mks-sr-pos {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--gray);
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}
.mks-sr-body { flex: 1; min-width: 0; }
.mks-sr-url  { font-size: 11px; color: #4ade80; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mks-sr-title { font-size: 13px; color: var(--gray); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mks-sr-fade3 { opacity: 0.35; }
.mks-sr-fade2 { opacity: 0.55; }
.mks-sr-fade1 { opacity: 0.75; }

/* #1 Winner card */
.mks-serp-winner {
  background: linear-gradient(135deg, rgba(252,86,49,0.12), rgba(245,131,0,0.08));
  border: 1px solid rgba(252,86,49,0.35);
  border-radius: 10px;
  padding: 16px 18px;
  position: relative;
}
.mks-sw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mks-sw-crown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.5px;
}
.mks-sw-crown i { line-height: 1; }
.mks-sw-moved {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
}
.mks-sw-moved i { line-height: 1; }
.mks-sw-url   { font-size: 11px; color: #4ade80; margin-bottom: 4px; }
.mks-sw-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mks-sw-desc  { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.mks-sw-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}
.mks-sw-stars i { color: var(--amber); font-size: 11px; line-height: 1; }
.mks-sw-stars span { color: var(--gray); margin-left: 4px; }

/* Stat strip */
.mks-stat-strip {
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
}
.mks-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mks-stat strong { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--green); }
.mks-stat span { font-size: 11px; color: var(--gray); }
.mks-stat-div { width: 1px; height: 32px; background: var(--border); }

/* ═══════════════════
   02 · BRAND VISUAL
═══════════════════ */
.mks-visual-brand { gap: 16px; }

.mks-brand-hero {
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mks-bh-mark {
  width: 64px; height: 64px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mks-bh-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.mks-bh-wordmark {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.mks-bh-wordmark span { color: var(--orange); }
.mks-bh-tag { font-size: 11px; color: var(--gray); margin-top: 4px; }

.mks-brand-block {
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.mks-bb-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.mks-palette {
  display: flex;
  gap: 8px;
}
.mks-pal-swatch {
  flex: 1;
  border-radius: 8px;
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 64px;
  justify-content: flex-end;
}
.mks-pal-swatch span { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; }
.mks-pal-swatch small { font-size: 8px; color: rgba(255,255,255,0.55); font-family: monospace; }
.mks-pal-swatch[style*="#ECECEC"] span,
.mks-pal-swatch[style*="#9DFF00"] span { color: rgba(4,8,11,0.7); }
.mks-pal-swatch[style*="#ECECEC"] small,
.mks-pal-swatch[style*="#9DFF00"] small { color: rgba(4,8,11,0.5); }

.mks-type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mks-type-sample {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.mks-ts-alpha {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.mks-ts-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.mks-ts-name span { color: var(--gray); font-weight: 400; }

/* ═══════════════════
   03 · WEB VISUAL
═══════════════════ */
.mks-visual-web { gap: 20px; }

.mks-laptop {
  width: 100%;
  max-width: 440px;
}
.mks-lp-screen {
  background: #0d1117;
  border-radius: 12px 12px 0 0;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-bottom: none;
  overflow: hidden;
}
.mks-lp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #161b22;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mks-lp-dots { display: flex; gap: 5px; }
.mks-lp-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.mks-lp-dots span:nth-child(1) { background: #ff5f57; }
.mks-lp-dots span:nth-child(2) { background: #febc2e; }
.mks-lp-dots span:nth-child(3) { background: #28c840; }
.mks-lp-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  padding: 3px 8px;
}
.mks-lp-scores {
  display: flex;
  gap: 6px;
}
.mks-lp-scores span {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  padding: 2px 6px;
}
.mks-lp-body { padding: 14px; }
.mks-lp-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.mks-lpn-logo {
  width: 56px; height: 12px;
  background: rgba(252,86,49,0.4);
  border-radius: 3px;
}
.mks-lpn-links {
  display: flex;
  gap: 8px;
  flex: 1;
}
.mks-lpn-links i {
  width: 32px; height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  display: block;
}
.mks-lpn-cta {
  width: 50px; height: 20px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 4px;
}
.mks-lp-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  padding: 14px 12px;
  margin-bottom: 12px;
}
.mks-lph-left { display: flex; flex-direction: column; gap: 5px; }
.mks-lph-badge {
  width: 60px; height: 10px;
  background: rgba(252,86,49,0.3);
  border-radius: 10px;
  margin-bottom: 4px;
}
.mks-lph-h {
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}
.mks-lph-p {
  height: 7px;
  width: 95%;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.mks-lph-btns { display: flex; gap: 6px; margin-top: 6px; }
.mks-lph-bp {
  height: 18px; width: 50px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 4px;
}
.mks-lph-bs {
  height: 18px; width: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
}
.mks-lph-right { display: flex; align-items: center; }
.mks-lph-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mks-lphc-line {
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.mks-lphc-big {
  height: 40px;
  background: linear-gradient(135deg, rgba(252,86,49,0.2), rgba(245,131,0,0.15));
  border-radius: 4px;
}
.mks-lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mks-lpc {
  height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
}
.mks-lp-base {
  height: 18px;
  background: #1c2128;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-top: none;
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mks-lp-notch {
  width: 50px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 6px 6px;
}

/* Lighthouse scores */
.mks-web-scores {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.mks-ws-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mks-ws-item span { font-size: 12px; color: var(--gray); font-weight: 500; }
.mks-ws-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  color: #4ade80;
  border: 3px solid #4ade80;
  box-shadow: 0 0 16px rgba(74,222,128,0.25);
}
.mks-ws-98 { border-color: #4ade80; color: #4ade80; box-shadow: 0 0 16px rgba(74,222,128,0.25); }
.mks-ws-100 { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 16px rgba(252,86,49,0.25); }
.mks-ws-96 { border-color: var(--amber); color: var(--amber); box-shadow: 0 0 16px rgba(245,131,0,0.2); }

/* ═══════════════════
   04 · SOCIAL VISUAL
═══════════════════ */
.mks-visual-social {
  position: relative;
  align-items: center;
  justify-content: center;
}

.mks-phone {
  width: 210px;
  background: #0d0d0d;
  border-radius: 38px;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(252,86,49,0.08);
  position: relative;
  z-index: 2;
}
.mks-ph-island {
  width: 80px; height: 24px;
  background: #000;
  border-radius: 12px;
  margin: 0 auto 10px;
}
.mks-ph-screen {
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
  padding: 10px;
}
.mks-ph-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
}
.mks-ph-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 10px;
}
.mks-php-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.mks-php-av img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mks-php-name { font-size: 11px; font-weight: 700; color: var(--white); }
.mks-php-sub  { font-size: 9px; color: var(--gray); }
.mks-php-follow {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 4px 10px;
  border-radius: 6px;
}
.mks-ph-igstats {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mks-ph-igstats > div { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.mks-ph-igstats strong { font-size: 12px; font-weight: 800; color: var(--white); }
.mks-ph-igstats span   { font-size: 8px; color: var(--gray); }
.mks-ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}
.mks-ph-grid > div { aspect-ratio: 1; border-radius: 3px; }
.mks-ph-reach { padding: 0 2px; }
.mks-phr-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 5px;
}
.mks-phr-bar {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.mks-phr-bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #4ade80);
  border-radius: 10px;
}

/* Floating metric badges */
.mks-soc-float {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
  z-index: 3;
}
.mks-soc-float i { font-size: 14px; line-height: 1; }
.mks-sf-1 { top: 15%; left: 4%; }
.mks-sf-2 { top: 42%; right: 2%; }
.mks-sf-3 { bottom: 18%; left: 6%; }

/* ═══════════════════
   05 · APP VISUAL
═══════════════════ */
.mks-visual-app { gap: 24px; }

.mks-dual-phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
  height: 360px;
}
.mks-dphone {
  width: 165px;
  background: #0d0d0d;
  border-radius: 30px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.mks-dphone-back {
  transform: rotate(-6deg) translateX(20px) translateY(10px);
  box-shadow: -8px 20px 60px rgba(0,0,0,0.5);
  z-index: 1;
  opacity: 0.85;
}
.mks-dphone-front {
  transform: rotate(4deg) translateX(-10px);
  box-shadow: 8px 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(252,86,49,0.12);
  z-index: 2;
}
.mks-dph-island {
  width: 65px; height: 18px;
  background: #000;
  border-radius: 9px;
  margin: 0 auto 8px;
}
.mks-dph-screen {
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  padding: 8px 10px;
}
.mks-dph-s {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  padding: 0 2px 6px;
}
.mks-dph-greeting {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  padding: 0 2px;
}
.mks-dph-card {
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.mks-dphc-l { font-size: 9px; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.mks-dphc-v { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.mks-dphc-t { font-size: 9px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 3px; }
.mks-dph-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}
.mks-dph-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.mks-dph-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mks-dph-nav i { font-size: 14px; color: var(--gray); line-height: 1; }
.mks-dph-nav i:first-child { color: var(--orange); }

.mks-app-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.mks-app-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}
.mks-app-tags i { font-size: 14px; line-height: 1; }

/* ═══════════════════
   MKS RESPONSIVE
═══════════════════ */
@media(max-width:1024px){
  .mks-info { padding: 60px 48px; }
  .mks-num  { font-size: 60px; }
}
@media(max-width:840px){
  .mks-row { grid-template-columns: 1fr; min-height: auto; }
  .mks-row-flip { direction: ltr; }
  .mks-info { padding: 48px 32px; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--border); }
  .mks-visual { padding: 48px 24px; min-height: 420px; }
  .mks-sf-1 { left: 2%; top: 8%; }
  .mks-sf-2 { right: 2%; top: 40%; }
  .mks-sf-3 { left: 2%; bottom: 8%; }
}
@media(max-width:480px){
  .mks-info { padding: 36px 24px; }
  .mks-num  { font-size: 48px; }
  .mks-title { font-size: 22px; }
  .mks-dual-phones { height: 300px; }
  .mks-dphone { width: 130px; }
  .mks-phone { width: 180px; }
  .mks-soc-float { font-size: 10px; padding: 7px 10px; }
  .mks-laptop { max-width: 100%; }
  .mks-web-scores { gap: 14px; }
  .mks-ws-ring { width: 50px; height: 50px; font-size: 14px; }
}
