/* ═══════════════════════════════════════════════
   PIXLYNC — Global Styles
   Color: Midnight Navy + Amber Gold
   Font: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #07101E;
  --bg2:      #0C1829;
  --surface:  #101F35;
  --surface2: #152540;
  --accent:   #F5A623;
  --accent2:  #FF6B35;
  --accent3:  #34D399;
  --text:     #EDF2FF;
  --muted:    #7A8BAA;
  --border:   rgba(245,166,35,0.15);
  --shadow:   rgba(0,0,0,0.4);
  --radius:   16px;
  --radius-sm:10px;
  --radius-lg:24px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:'Plus Jakarta Sans',sans-serif;
  overflow-x:hidden;
  line-height:1.7;
}

/* GRAIN */
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:0; opacity:0.3;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
}

/* SCROLLBAR */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--accent); border-radius:3px; }

/* ═══ CURSOR ═══ */
.cursor { position:fixed; width:8px; height:8px; background:var(--accent); border-radius:50%; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); mix-blend-mode:screen; transition:transform 0.15s; }
.cursor-ring { position:fixed; width:30px; height:30px; border:1.5px solid var(--accent); border-radius:50%; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:all 0.22s ease; opacity:0.55; }
body:hover .cursor, body:hover .cursor-ring { opacity:1; }

/* ═══ NAVBAR ═══ */
.navbar {
  background: rgba(7,16,30,0.85) !important;
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: fixed; top:0; width:100%; z-index:1000;
  transition: all 0.4s;
}
.navbar.scrolled { background: rgba(7,16,30,0.97) !important; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.navbar-brand {
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:800; font-size:22px; letter-spacing:-0.5px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.nav-link {
  color: var(--muted) !important;
  font-size:13px; font-weight:600; letter-spacing:0.5px;
  text-transform:uppercase; transition:color 0.25s; padding:8px 14px !important;
  position:relative;
}
.nav-link::after {
  content:''; position:absolute; bottom:2px; left:14px; right:14px; height:1.5px;
  background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform 0.3s;
}
.nav-link:hover { color:var(--accent) !important; }
.nav-link:hover::after, .nav-link.active::after { transform:scaleX(1); }
.nav-link.active { color:var(--accent) !important; }
.btn-nav-hire {
  background:var(--accent); color:#000 !important; border-radius:50px;
  padding:9px 24px !important; font-weight:700 !important; font-size:13px !important;
  transition:all 0.3s; border:none; letter-spacing:0.3px;
}
.btn-nav-hire:hover { background:var(--accent2) !important; transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,166,35,0.35); }
.navbar-toggler { border-color:var(--border) !important; padding:6px 10px; }
.navbar-toggler-icon {
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5A623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-collapse { background:rgba(7,16,30,0.98); border-radius:var(--radius); margin-top:8px; padding:16px; }
@media(min-width:992px){ .navbar-collapse { background:transparent; margin-top:0; padding:0; } }

/* ═══ PAGE HEADER ═══ */
.page-header {
  background: var(--bg);
  padding: 140px 0 70px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; top:0; left:0; right:0; bottom:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.05) 0%, transparent 65%);
}
.page-header-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(245,166,35,0.1); border:1px solid rgba(245,166,35,0.25);
  padding:6px 16px; border-radius:50px; margin-bottom:16px;
  font-size:11px; font-weight:700; color:var(--accent); letter-spacing:2px; text-transform:uppercase;
}
.page-header h1 {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(38px,6vw,70px); font-weight:800; line-height:1.05; letter-spacing:-2px;
}
.page-header .grad { background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.breadcrumb-item, .breadcrumb-item a { color:var(--muted); font-size:13px; text-decoration:none; }
.breadcrumb-item.active { color:var(--accent); }
.breadcrumb-item+.breadcrumb-item::before { color:var(--muted); }

/* ═══ SECTION BASE ═══ */
.section-pad { padding:100px 0; }
.section-label {
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--accent);
  margin-bottom:14px;
}
.section-label::before { content:''; width:28px; height:2px; background:var(--accent); border-radius:2px; }
.section-title {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(30px,4vw,50px); font-weight:800; line-height:1.08; letter-spacing:-1.5px;
  margin-bottom:18px;
}
.section-desc { font-size:16px; color:var(--muted); line-height:1.85; max-width:540px; }

/* ═══ CARDS ═══ */
.px-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:32px 28px;
  transition:all 0.35s; position:relative; overflow:hidden;
}
.px-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  transform:scaleX(0); transform-origin:left; transition:transform 0.4s;
}
.px-card:hover::before { transform:scaleX(1); }
.px-card:hover { transform:translateY(-8px); border-color:rgba(245,166,35,0.3); box-shadow:0 24px 60px rgba(0,0,0,0.35); }

/* ═══ BUTTONS ═══ */
.btn-px {
  background:var(--accent); color:#000; border:none;
  border-radius:50px; padding:14px 34px; font-weight:700; font-size:15px;
  font-family:'Bricolage Grotesque',sans-serif; transition:all 0.3s;
  text-decoration:none; display:inline-block; letter-spacing:0.2px;
  box-shadow:0 0 28px rgba(245,166,35,0.22);
}
.btn-px:hover { background:var(--accent2); color:#000; transform:translateY(-3px); box-shadow:0 12px 40px rgba(245,166,35,0.4); }
.btn-px-outline {
  background:transparent; color:var(--text); border:1.5px solid var(--border);
  border-radius:50px; padding:13px 28px; font-weight:600; font-size:14px;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px; transition:all 0.3s;
}
.btn-px-outline:hover { border-color:var(--accent); color:var(--accent); transform:translateY(-3px); }
.btn-px-sm { padding:9px 22px; font-size:13px; }

/* ═══ TAGS / BADGES ═══ */
.px-tag {
  display:inline-block; padding:4px 12px; border-radius:20px;
  font-size:11px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase;
  background:rgba(245,166,35,0.1); border:1px solid rgba(245,166,35,0.2); color:var(--accent);
}
.px-tag-green { background:rgba(52,211,153,0.1); border-color:rgba(52,211,153,0.2); color:var(--accent3); }
.px-tag-orange { background:rgba(255,107,53,0.1); border-color:rgba(255,107,53,0.2); color:var(--accent2); }

/* ═══ FORMS ═══ */
.px-form-control {
  width:100%; padding:14px 18px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-sm); color:var(--text);
  font-family:'Plus Jakarta Sans',sans-serif; font-size:15px;
  outline:none; transition:all 0.3s;
}
.px-form-control:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(245,166,35,0.1); }
.px-form-control::placeholder { color:var(--muted); opacity:0.7; }
.px-label { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--muted); margin-bottom:8px; display:block; }
textarea.px-form-control { resize:vertical; min-height:130px; }
select.px-form-control { appearance:none; cursor:pointer; }

/* ═══ FOOTER ═══ */
footer {
  background:var(--bg2); border-top:1px solid var(--border);
  padding:60px 0 28px;
}
.footer-logo {
  font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:26px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:14px;
}
.footer-desc { font-size:14px; color:var(--muted); line-height:1.8; max-width:300px; }
.footer-title { font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:2px; color:var(--text); margin-bottom:20px; }
.footer-link { display:block; color:var(--muted); text-decoration:none; font-size:14px; margin-bottom:10px; transition:color 0.25s; }
.footer-link:hover { color:var(--accent); padding-left:4px; }
.footer-social {
  width:40px; height:40px; border-radius:10px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:16px;
  text-decoration:none; transition:all 0.3s; color:var(--muted);
}
.footer-social:hover { background:var(--accent); border-color:var(--accent); color:#000; transform:translateY(-3px); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; margin-top:48px; }

/* ═══ ORBS / BG DECOR ═══ */
.orb { position:absolute; border-radius:50%; filter:blur(130px); pointer-events:none; }
.orb-amber { background:rgba(245,166,35,0.06); }
.orb-orange { background:rgba(255,107,53,0.05); }
.orb-green  { background:rgba(52,211,153,0.04); }

/* ═══ SCROLL REVEAL ═══ */
.reveal { opacity:0; transform:translateY(32px); transition:all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-32px); transition:all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(32px); transition:all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-delay-1 { transition-delay:0.1s !important; }
.reveal-delay-2 { transition-delay:0.2s !important; }
.reveal-delay-3 { transition-delay:0.3s !important; }
.reveal-delay-4 { transition-delay:0.4s !important; }
.reveal-delay-5 { transition-delay:0.5s !important; }

/* ═══ DIVIDER ═══ */
.px-divider { height:1px; background:linear-gradient(90deg,transparent,var(--border),transparent); margin:24px 0; }

/* ═══ STATS ═══ */
.stat-num {
  font-family:'Bricolage Grotesque',sans-serif; font-size:44px; font-weight:800; line-height:1;
  background:linear-gradient(135deg,var(--text),var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:6px;
}
.stat-label { font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:1.5px; }

/* ═══ SKILL BAR ═══ */
.skill-track { height:6px; background:var(--surface2); border-radius:10px; overflow:visible; margin-top:10px; }
.skill-fill {
  height:6px; width:0; border-radius:10px; position:relative;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  transition:width 1.6s cubic-bezier(0.4,0,0.2,1);
}
.skill-fill::after {
  content:''; position:absolute; right:-4px; top:50%; transform:translateY(-50%);
  width:13px; height:13px; border-radius:50%; background:var(--accent2);
  border:2px solid var(--bg); box-shadow:0 0 10px var(--accent2);
}

/* ═══ TECH ORB ═══ */
.tech-orb {
  background:var(--surface); border:1px solid var(--border); border-radius:16px;
  padding:20px 12px; text-align:center; transition:all 0.3s; cursor:default;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.tech-orb:hover { transform:translateY(-6px) scale(1.04); border-color:var(--accent); box-shadow:0 16px 40px rgba(245,166,35,0.12); }
.tech-orb .icon { font-size:28px; }
.tech-orb .label { font-size:11px; color:var(--muted); font-weight:600; }

/* ═══ TESTIMONIAL SLIDER ═══ */
.testi-wrap { overflow:hidden; position:relative; }
.testi-wrap::before { content:''; position:absolute; left:0; top:0; bottom:0; width:80px; background:linear-gradient(90deg,var(--bg),transparent); z-index:2; pointer-events:none; }
.testi-wrap::after  { content:''; position:absolute; right:0; top:0; bottom:0; width:80px; background:linear-gradient(-90deg,var(--bg),transparent); z-index:2; pointer-events:none; }
.testi-track { display:flex; gap:20px; animation:scrollLeft 18s linear infinite; }
.testi-track:hover { animation-play-state:paused; }
@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testi-card {
  min-width:340px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:28px; flex-shrink:0; transition:border-color 0.3s;
}
.testi-card:hover { border-color:rgba(245,166,35,0.35); }
.testi-stars { color:var(--accent); font-size:14px; letter-spacing:2px; margin-bottom:12px; }
.testi-text { font-size:14px; color:var(--muted); line-height:1.8; font-style:italic; margin-bottom:20px; }
.testi-av { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; font-family:'Bricolage Grotesque',sans-serif; flex-shrink:0; }
.testi-name { font-weight:700; font-size:14px; }
.testi-role { font-size:12px; color:var(--muted); }

/* Platform badge */
.p-badge { font-size:10px; font-weight:700; padding:3px 10px; border-radius:20px; }
.p-upwork   { background:rgba(20,180,100,0.15); color:#14b464; border:1px solid rgba(20,180,100,0.25); }
.p-fiverr   { background:rgba(26,182,85,0.12);  color:#1ab655; border:1px solid rgba(26,182,85,0.2); }
.p-linkedin { background:rgba(10,102,194,0.15); color:#5a9fe0; border:1px solid rgba(10,102,194,0.2); }

/* ═══ PROJECT CARD ═══ */
.proj-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; transition:all 0.4s;
}
.proj-card:hover { transform:translateY(-8px); border-color:rgba(245,166,35,0.3); box-shadow:0 28px 60px rgba(0,0,0,0.4); }
.proj-thumb { height:200px; overflow:hidden; position:relative; }
.proj-thumb svg { width:100%; height:100%; }
.proj-body { padding:24px; }
.proj-industry { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
.proj-title { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:19px; margin-bottom:8px; color:var(--text); }
.proj-desc { font-size:13px; color:var(--muted); line-height:1.7; }
.proj-footer { padding:16px 24px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.proj-link { font-size:13px; font-weight:600; color:var(--accent); text-decoration:none; transition:gap 0.25s; display:flex; align-items:center; gap:6px; }
.proj-link:hover { gap:12px; color:var(--accent2); }
.proj-metrics { display:flex; border-top:1px solid var(--border); padding-top:16px; margin-top:16px; }
.proj-metric { flex:1; text-align:center; padding:0 8px; border-right:1px solid var(--border); }
.proj-metric:last-child { border-right:none; }
.proj-metric-val { font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:16px; color:var(--accent); }
.proj-metric-lbl { font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }

/* ═══ PRICING ═══ */
.price-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px 30px; transition:all 0.3s; position:relative; overflow:hidden;
}
.price-card.featured { border-color:var(--accent); box-shadow:0 0 50px rgba(245,166,35,0.12); }
.price-card.featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--accent),var(--accent2)); }
.price-popular { position:absolute; top:20px; right:20px; background:var(--accent); color:#000; font-size:10px; font-weight:700; padding:4px 12px; border-radius:20px; letter-spacing:1px; text-transform:uppercase; }
.price-name { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:18px; margin-bottom:8px; }
.price-amount { font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:48px; line-height:1; margin:20px 0 6px; }
.price-period { font-size:13px; color:var(--muted); margin-bottom:24px; }
.price-feature { display:flex; align-items:center; gap:10px; font-size:14px; padding:8px 0; border-bottom:1px solid rgba(245,166,35,0.06); }
.price-feature i.check { color:var(--accent3); }
.price-feature i.cross { color:var(--muted); opacity:0.4; }

/* ═══ BLOG ═══ */
.blog-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; transition:all 0.35s;
}
.blog-card:hover { transform:translateY(-6px); border-color:rgba(245,166,35,0.3); box-shadow:0 20px 50px rgba(0,0,0,0.3); }
.blog-thumb { height:200px; background:var(--surface2); overflow:hidden; position:relative; display:flex; align-items:center; justify-content:center; font-size:50px; }
.blog-body { padding:24px; }
.blog-cat { font-size:10px; font-weight:700; color:var(--accent); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
.blog-title { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:18px; line-height:1.3; margin-bottom:10px; color:var(--text); text-decoration:none; display:block; transition:color 0.25s; }
.blog-title:hover { color:var(--accent); }
.blog-excerpt { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:18px; }
.blog-meta { display:flex; align-items:center; gap:12px; font-size:12px; color:var(--muted); }

/* ═══ TEAM ═══ */
.team-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px 24px; text-align:center; transition:all 0.35s;
}
.team-card:hover { transform:translateY(-8px); border-color:rgba(245,166,35,0.3); }
.team-avatar { width:90px; height:90px; border-radius:50%; margin:0 auto 18px; background:linear-gradient(135deg,var(--accent),var(--accent2)); display:flex; align-items:center; justify-content:center; font-size:36px; font-family:'Bricolage Grotesque',sans-serif; font-weight:800; color:#000; border:3px solid var(--border); }
.team-name { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:18px; margin-bottom:4px; }
.team-role { font-size:13px; color:var(--accent); font-weight:600; margin-bottom:12px; }
.team-bio { font-size:13px; color:var(--muted); line-height:1.7; }
.team-social { display:flex; justify-content:center; gap:10px; margin-top:18px; }
.team-social-btn { width:36px; height:36px; border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--muted); text-decoration:none; transition:all 0.25s; font-size:14px; }
.team-social-btn:hover { background:var(--accent); border-color:var(--accent); color:#000; }

/* ═══ CONTACT ICONS ═══ */
.contact-icon-box { width:52px; height:52px; border-radius:14px; background:rgba(245,166,35,0.1); border:1px solid rgba(245,166,35,0.2); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.contact-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:3px; }
.contact-value { font-weight:600; font-size:15px; }

/* ═══ PHONE PICKER ═══ */
.phone-code-btn {
  background:var(--accent); color:#000; border:none; border-radius:var(--radius-sm);
  padding:0 18px; height:52px; font-weight:700; font-size:14px; cursor:pointer;
  display:flex; align-items:center; gap:8px; white-space:nowrap;
  transition:all 0.3s; font-family:'Bricolage Grotesque',sans-serif;
  box-shadow:0 0 20px rgba(245,166,35,0.2);
}
.phone-code-btn:hover { background:var(--accent2); }
.phone-dropdown {
  display:none; position:absolute; top:calc(100% + 6px); left:0;
  width:260px; max-height:280px; overflow-y:auto;
  background:var(--surface); border:1px solid var(--border);
  border-radius:14px; z-index:999;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.phone-option {
  display:flex; align-items:center; gap:12px; padding:11px 16px;
  cursor:pointer; transition:background 0.15s; font-size:14px;
}
.phone-option:hover { background:rgba(245,166,35,0.08); }
.phone-option .pname { flex:1; color:var(--text); font-weight:500; }
.phone-option .pcode { font-weight:700; color:var(--accent); font-size:13px; font-family:'Bricolage Grotesque',sans-serif; }
.phone-search { width:100%; padding:10px 14px; background:var(--bg); border:1px solid var(--border); border-radius:8px; color:var(--text); font-size:13px; outline:none; margin:10px; width:calc(100% - 20px); }

/* ═══ WHY CARD ═══ */
.why-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; transition:all 0.35s; height:100%; }
.why-card:hover { transform:translateY(-6px); border-color:rgba(245,166,35,0.3); box-shadow:0 20px 50px rgba(0,0,0,0.3); }
.why-icon { width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:18px; }
.why-title { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:17px; margin-bottom:10px; }
.why-desc { font-size:13px; color:var(--muted); line-height:1.8; }

/* ═══ CTA STRIP ═══ */
.cta-strip {
  background:linear-gradient(135deg,rgba(245,166,35,0.08),rgba(255,107,53,0.06));
  border:1px solid rgba(245,166,35,0.2); border-radius:var(--radius-lg);
  padding:48px 40px; position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-80px; right:-80px; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,166,35,0.08),transparent 70%);
}
.cta-title { font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:clamp(24px,3.5vw,38px); letter-spacing:-1px; margin-bottom:10px; }

/* ═══ HIRE ME POPUP ═══ */
.popup-overlay {
  display:none; position:fixed; inset:0; z-index:3000;
  background:rgba(7,16,30,0.75); backdrop-filter:blur(8px);
  align-items:center; justify-content:center;
}
.popup-box {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:44px 40px; max-width:500px; width:92%; position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,0.6);
  animation:popIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn { from{opacity:0;transform:scale(0.85) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.popup-close {
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,0.06); border:none; color:var(--muted); font-size:18px;
  cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center;
}
.popup-close:hover { background:rgba(255,107,53,0.2); color:#ff6b35; }

/* ═══ AVAILABILITY BADGE ═══ */
.avail-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(52,211,153,0.1); border:1px solid rgba(52,211,153,0.25);
  border-radius:50px; padding:8px 18px;
  font-size:13px; font-weight:600; color:var(--accent3);
}
.avail-dot { width:7px; height:7px; background:var(--accent3); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.8)} }

/* ═══ PROCESS STEP ═══ */
.process-step {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px 28px; position:relative; transition:all 0.3s; height:100%;
}
.process-step:hover { border-color:var(--accent); transform:translateY(-6px); }
.process-num {
  font-family:'Bricolage Grotesque',sans-serif; font-size:54px; font-weight:800; line-height:1;
  color:rgba(245,166,35,0.12); margin-bottom:16px; letter-spacing:-2px;
}
.process-icon { font-size:32px; margin-bottom:16px; }
.process-title { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:18px; margin-bottom:10px; }
.process-desc { font-size:13px; color:var(--muted); line-height:1.75; }

/* ═══ RATING BAR ═══ */
.rating-box {
  background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px 20px; text-align:center;
}
.rating-num { font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:38px; color:var(--accent); line-height:1; margin-bottom:6px; }
.rating-lbl { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:1.5px; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

.float { animation:floatY 4s ease-in-out infinite; }
.float-delay { animation:floatY 4s 1s ease-in-out infinite; }

/* ═══ UTILITIES ═══ */
.text-accent  { color:var(--accent) !important; }
.text-accent2 { color:var(--accent2) !important; }
.text-accent3 { color:var(--accent3) !important; }
.text-muted-px { color:var(--muted) !important; }
.bg-surface  { background:var(--surface) !important; }
.bg-surface2 { background:var(--surface2) !important; }
.border-px { border-color:var(--border) !important; }
.grad-text { background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

/* ═══ RESPONSIVE OVERRIDES ═══ */
@media (max-width:991px) {
  .section-pad { padding:70px 0; }
  .page-header { padding:110px 0 50px; }
  .cta-strip { padding:36px 28px; }
  .popup-box { padding:32px 24px; }
}
@media (max-width:767px) {
  .section-pad { padding:56px 0; }
  .section-title { font-size:clamp(26px,7vw,36px); }
  .page-header h1 { font-size:clamp(30px,9vw,48px); }
  .testi-card { min-width:300px; }
  .stat-num { font-size:36px; }
  .price-amount { font-size:38px; }
  .cta-strip { padding:28px 20px; }
  footer { padding:40px 0 20px; }
  .cursor, .cursor-ring { display:none; }
}


/* ═══ CODE WINDOW ═══ */
.code-card {
  background: #0D1B2E;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6),
              0 0 60px rgba(245,166,35,0.06);
  position: relative;
}
.code-topbar {
  background: rgba(255,255,255,0.04);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.cd {
  width: 12px; height: 12px; border-radius: 50%;
}
.cd-r { background: #FF5F57; }
.cd-y { background: #FFBD2E; }
.cd-g { background: #28C840; }
.code-filename {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Courier New', monospace;
}
.code-body {
  padding: 24px 28px;
  font-family: 'Courier New', monospace;
  font-size: 13.5px;
  line-height: 2.1;
  background: #071018;
}
.cl {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.ln {
  color: #2a3a52;
  min-width: 22px;
  user-select: none;
  font-size: 12px;
}
.kw  { color: #F5A623; font-weight: 600; }   /* amber — keywords */
.fn  { color: #34D399; }                       /* green  — functions */
.str { color: #FF9966; }                       /* orange — strings */
.cm  { color: #3a5a4a; font-style: italic; }  /* dark green — comments */

/* ═══ CURSOR BLINK ═══ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.typed-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 400;
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}

/* ═══ FLOATING BADGES ═══ */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.float       { animation: floatY 3.5s ease-in-out infinite; }
.float-delay { animation: floatY 3.5s 1.2s ease-in-out infinite; }

/* ═══ FADE UP ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ HERO BADGE ═══ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.22);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blink {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.8); }
}
