/* sections.css — imported after styles.css */

/* Hero */
.hero{position:relative;min-height:100vh;background:#080808;display:flex;align-items:center;overflow:hidden}
.hero-glow{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none}
.hero-inner{position:relative;z-index:10;max-width:1280px;margin:0 auto;padding:7rem 2rem 3rem;width:100%}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.hero-badges{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;margin-bottom:2rem}
.badge-avail{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem 1rem;border:1px solid rgba(252,208,3,.3);background:rgba(252,208,3,.05);border-radius:9999px;font-family:'Sora',sans-serif;font-weight:600;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:#fcd003}
.green-dot{width:8px;height:8px;border-radius:50%;background:#4ade80;animation:pulse 2s infinite;flex-shrink:0}
.badge-slots{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;border:1px solid #2a2a2a;background:#0d0d0d;border-radius:9999px}
.slot-pip{width:8px;height:8px;border-radius:2px}
.slot-pip.on{background:#fcd003}.slot-pip.off{background:#2a2a2a}
.hero-h1{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2.6rem,6vw,5.5rem);line-height:.88;color:#fff;letter-spacing:.06em;display:block}
.hero-h2-gold{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2.6rem,6vw,5.5rem);line-height:.88;color:#fcd003;letter-spacing:.06em;display:block}
.hero-h2-sub{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(1.7rem,4vw,4.2rem);line-height:1.1;color:rgba(255,255,255,.15);letter-spacing:.06em;display:block}
.hero-desc{color:#777;font-size:.875rem;max-width:28rem;line-height:1.8;margin-bottom:2.5rem}
.hero-ctas{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:3.5rem}
.hero-stats{display:flex;align-items:center;gap:2.5rem;padding-top:2rem;border-top:1px solid #1e1e1e;flex-wrap:wrap}
.hero-stat-num{font-family:'Sora',sans-serif;font-weight:800;font-size:2.25rem;color:#fcd003;letter-spacing:.1em}
.hero-stat-label{font-family:'Sora',sans-serif;font-weight:500;font-size:.65rem;color:#555;letter-spacing:.2em;text-transform:uppercase;margin-top:.25rem}
.hero-visual{position:relative;width:100%;max-width:480px;margin:0 auto;aspect-ratio:1}
.ring-outer{position:absolute;inset:0;border-radius:50%;border:1px solid rgba(252,208,3,.08);animation:spin-slow 20s linear infinite}
.ring-mid{position:absolute;inset:1.5rem;border-radius:50%;border:1px solid rgba(252,208,3,.15);animation:spin-reverse 15s linear infinite}
.ring-inner{position:absolute;inset:3.5rem;border-radius:50%;border:2px solid rgba(252,208,3,.25)}
.hero-img-box{position:absolute;inset:5rem;border-radius:1rem;overflow:hidden;border:1px solid rgba(252,208,3,.3)}
.hero-img-box img{width:100%;height:100%;object-fit:cover;object-position:top}
.hero-badge-float{position:absolute;background:#111;border:1px solid #2a2a2a;border-radius:.75rem;padding:.75rem}
.hero-badge-top{top:-8px;right:0;animation:float 4s ease-in-out infinite}
.hero-badge-bot{bottom:-8px;left:0;animation:float-rev 5s ease-in-out infinite}

/* Marquee Bar */
.marquee-bar{width:100%;overflow:hidden;padding:1rem 0;background:#fcd003}
.marquee-track{display:flex;width:max-content;animation:marquee 25s linear infinite;gap:2rem;white-space:nowrap}
.marquee-item{font-family:'Sora',sans-serif;font-size:.875rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#000;display:inline-flex;align-items:center;gap:2rem}
.marquee-dot{display:inline-block;width:6px;height:6px;border-radius:50%;background:rgba(0,0,0,.4)}

/* Portfolio Home Section */
.section-portfolio{background:#080808;padding:6rem 2rem}
.section-max{max-width:1280px;margin:0 auto}
.section-h2{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2.5rem,5vw,3.75rem);color:#fff;letter-spacing:.06em;line-height:1.1}
.section-h2 span{color:#fcd003}
/* ── Bento portfolio grid ── */
.home-port-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.home-port-card{position:relative;overflow:hidden;cursor:pointer}
.home-port-card img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .7s}
.home-port-card:hover img{transform:scale(1.05)}
.home-port-card .hp-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.95),rgba(0,0,0,.3),transparent)}
.hp-corner{position:absolute;width:20px;height:20px;border-color:#fcd003;opacity:0;transition:opacity .3s}
.home-port-card:hover .hp-corner{opacity:1}
.hp-tl{top:12px;left:12px;border-top:2px solid;border-left:2px solid}
.hp-tr{top:12px;right:12px;border-top:2px solid;border-right:2px solid}
.hp-bl{bottom:12px;left:12px;border-bottom:2px solid;border-left:2px solid}
.hp-br{bottom:12px;right:12px;border-bottom:2px solid;border-right:2px solid}
.hp-top-bar{position:absolute;top:0;left:0;right:0;height:2px;background:#fcd003;transform:scaleX(0);transform-origin:left;transition:transform .4s}
.home-port-card:hover .hp-top-bar{transform:scaleX(1)}
.hp-info{position:absolute;bottom:0;left:0;padding:1.5rem;width:100%}
.hp-info-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:.75rem}
.port-cat{display:inline-block;padding:.25rem .625rem;border:1px solid rgba(252,208,3,.4);color:#fcd003;font-family:'Sora',sans-serif;font-size:.65rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.5rem}
.port-title{font-family:'Sora',sans-serif;font-weight:800;color:#fff;letter-spacing:.06em}
.port-desc-txt{font-size:.75rem;color:#888;margin-top:.25rem;opacity:0;transition:opacity .3s}
.home-port-card:hover .port-desc-txt{opacity:1}
.hp-arrow{width:36px;height:36px;background:#fcd003;color:#000;display:flex;align-items:center;justify-content:center;font-size:.875rem;opacity:0;transition:opacity .3s;flex-shrink:0}
.home-port-card:hover .hp-arrow{opacity:1}
.hp-large{grid-column:span 2;height:460px}
.hp-normal{height:460px}
.hp-large-bot{grid-column:span 2;height:420px}
.hp-normal-bot{height:420px}
/* Home portfolio bottom CTA strip */
.hp-cta-strip{margin-top:2rem;padding-top:2rem;border-top:1px solid #111;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.hp-stats{display:flex;align-items:center;gap:1.5rem}
.hp-stat-num{font-family:'Sora',sans-serif;font-weight:800;font-size:2.25rem;color:#fcd003;letter-spacing:.08em}
.hp-stat-label{font-family:'Sora',sans-serif;font-weight:700;font-size:.65rem;color:#fff;letter-spacing:.2em;text-transform:uppercase}
.hp-stat-sub{font-size:.65rem;color:#444;margin-top:2px}
.hp-divider{width:1px;height:40px;background:#1e1e1e}
/* Legacy classes for other sections (kept for about/services cards compatibility) */
.corner-frame{position:absolute;width:20px;height:20px;border-color:#fcd003;opacity:0;transition:opacity .3s}
.c-tl{top:12px;left:12px;border-top:2px solid;border-left:2px solid}
.c-tr{top:12px;right:12px;border-top:2px solid;border-right:2px solid}
.c-bl{bottom:12px;left:12px;border-bottom:2px solid;border-left:2px solid}
.c-br{bottom:12px;right:12px;border-bottom:2px solid;border-right:2px solid}

/* About Section */
.section-about{background:#080808;padding:6rem 2rem}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-img-wrap{position:relative;width:100%;max-width:440px}
.about-frame{position:relative;aspect-ratio:3/4}
.about-shadow{position:absolute;inset:0;border:1px solid rgba(252,208,3,.2);transform:translate(16px,16px)}
.about-frame img{position:relative;z-index:1;width:100%;height:100%;object-fit:cover;object-position:top}
.about-badge{position:absolute;bottom:1.5rem;right:-1.5rem;z-index:2;background:#fcd003;padding:.75rem 1.25rem}
.about-badge .name{font-family:'Sora',sans-serif;font-weight:800;font-size:1.5rem;color:#000;letter-spacing:.1em}
.about-badge .sub{font-size:.65rem;color:rgba(0,0,0,.7);letter-spacing:.2em;text-transform:uppercase}
.about-corner{position:absolute;top:0;left:0;width:48px;height:48px;border-top:2px solid #fcd003;border-left:2px solid #fcd003}
.about-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid #1e1e1e}
.stat-num{font-family:'Sora',sans-serif;font-weight:800;font-size:3rem;color:#fcd003;letter-spacing:.08em}
.stat-label{font-family:'Sora',sans-serif;font-weight:500;font-size:.65rem;color:#555;letter-spacing:.2em;text-transform:uppercase;margin-top:.25rem;line-height:1.3}
.skill-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2.5rem}
.skill-tag{font-family:'Sora',sans-serif;font-weight:500;font-size:.7rem;letter-spacing:.05em;padding:.375rem .75rem;border:1px solid #2a2a2a;color:#666;transition:all .3s}
.skill-tag:hover{border-color:rgba(252,208,3,.4);color:#fcd003}

/* Services */
.section-services{background:#0a0a0a;padding:6rem 2rem;border-top:1px solid #1a1a1a}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.svc-front{padding:1.75rem;border:1px solid #1e1e1e;background:#080808;min-height:320px;position:relative;overflow:hidden}
.svc-num{position:absolute;top:1.25rem;right:1.5rem;font-family:'Sora',sans-serif;font-weight:800;font-size:3rem;color:#191919;letter-spacing:.08em;user-select:none}
.svc-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid #2a2a2a;background:#111;border-radius:2px;margin-bottom:1.25rem}
.svc-icon i{color:#fcd003;font-size:1.125rem}
.svc-title{font-family:'Sora',sans-serif;font-weight:800;font-size:1.5rem;color:#fff;letter-spacing:.06em;margin-bottom:.75rem}
.svc-desc{color:#555;font-size:.875rem;line-height:1.7;margin-bottom:1.25rem}
.svc-tags{display:flex;flex-wrap:wrap;gap:.5rem}
.svc-tag{font-family:'Sora',sans-serif;font-size:.7rem;font-weight:500;color:#444;border:1px solid #222;padding:.25rem .625rem;border-radius:2px;letter-spacing:.05em}
.svc-bar{position:absolute;bottom:0;left:0;width:100%;height:2px;background:linear-gradient(to right,rgba(252,208,3,.4),transparent)}
.tap-hint{position:absolute;bottom:1rem;right:1rem;display:flex;align-items:center;gap:.25rem;font-size:.7rem;color:#333;letter-spacing:.1em}
.svc-back{padding:1.75rem;border:1px solid rgba(252,208,3,.3);background:#080808;min-height:320px;position:relative;overflow:hidden}
.svc-back-hdr{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.svc-back-ico{width:28px;height:28px;display:flex;align-items:center;justify-content:center;background:rgba(252,208,3,.1);border-radius:2px}
.svc-back-ico i{color:#fcd003;font-size:.875rem}
.svc-back-title{font-family:'Sora',sans-serif;font-size:.75rem;font-weight:700;color:#fcd003;letter-spacing:.2em;text-transform:uppercase}
.svc-dl{list-style:none}
.svc-dl li{display:flex;align-items:flex-start;gap:.625rem;margin-bottom:.625rem}
.svc-dl li i{color:#fcd003;font-size:.875rem;margin-top:2px;flex-shrink:0}
.svc-dl li span{font-size:.7rem;color:#aaa;line-height:1.5}
.svc-cta-card{padding:1.75rem;border:1px solid rgba(252,208,3,.2);background:rgba(252,208,3,.03);display:flex;flex-direction:column;justify-content:space-between;min-height:320px}

/* Process */
.section-process{background:#060606;padding:6rem 2rem;border-top:1px solid #1a1a1a;overflow:hidden}
.process-desktop{display:block}
.process-mobile{display:none}
.process-line-wrap{position:absolute;top:52px;left:4%;right:4%;height:1px;background:#1c1c1c;z-index:0}
.process-line-inner{height:100%;background:linear-gradient(to right,transparent,rgba(252,208,3,.3),transparent)}
.process-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;position:relative;z-index:1}
.process-step{display:flex;flex-direction:column;align-items:center;text-align:center}
.process-circle-outer{width:104px;height:104px;border-radius:50%;border:1px solid #1e1e1e;display:flex;align-items:center;justify-content:center;background:#060606;cursor:default}
.process-circle-inner{width:72px;height:72px;border-radius:50%;border:1px solid rgba(252,208,3,.25);display:flex;align-items:center;justify-content:center;background:#0c0c0c;transition:border-color .4s,background .4s}
.process-circle-outer:hover .process-circle-inner{border-color:rgba(252,208,3,.6);background:#111008}
.process-circle-inner i{color:#fcd003;font-size:1.5rem}
.p-num-badge{position:absolute;top:-8px;right:-8px;width:28px;height:28px;border-radius:50%;background:#fcd003;display:flex;align-items:center;justify-content:center}
.p-num-badge span{font-family:'Sora',sans-serif;font-weight:700;font-size:.6rem;color:#000}
.p-tag{font-family:'Sora',sans-serif;font-weight:700;font-size:.6rem;color:#fcd003;letter-spacing:.2em;text-transform:uppercase;margin-bottom:.375rem;margin-top:.5rem}
.p-title{font-family:'Sora',sans-serif;font-weight:800;font-size:1.25rem;color:#fff;letter-spacing:.06em;margin-bottom:.75rem}
.p-desc{color:#555;font-size:.75rem;line-height:1.7;margin-bottom:1rem;padding:0 .25rem}
.p-sub{font-size:.6rem;color:#333;letter-spacing:.05em;font-style:italic;border-top:1px solid #151515;padding-top:.75rem;line-height:1.5}
.process-bar{margin-top:5rem;padding:1.5rem;border:1px solid #1e1e1e;display:flex;align-items:center;justify-content:space-between;gap:1.25rem;flex-wrap:wrap}
.process-bar-left{display:flex;align-items:center;gap:1rem}
.p-bar-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(252,208,3,.3);border-radius:2px;flex-shrink:0}
.p-bar-icon i{color:#fcd003}
.p-bar-title{font-family:'Sora',sans-serif;font-weight:600;font-size:.9375rem;color:#fff;letter-spacing:.02em}
.p-bar-title span{color:#fcd003}
.p-bar-sub{color:#444;font-size:.75rem;margin-top:2px}
.process-bar-right{display:flex;align-items:center;gap:1.5rem;flex-shrink:0}
.p-metric{text-align:center}
.p-metric-num{font-family:'Sora',sans-serif;font-weight:800;font-size:1.5rem;color:#fcd003}
.p-metric-label{font-family:'Sora',sans-serif;font-weight:500;font-size:.65rem;color:#444;margin-top:2px}
.divider-v{width:1px;height:40px;background:#1e1e1e}
/* Process Mobile */
.pm-wrap{padding-left:2.5rem;position:relative}
.pm-line{position:absolute;left:1rem;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,rgba(252,208,3,.4),transparent)}
.pm-steps{display:flex;flex-direction:column;gap:2.5rem}
.pm-step{position:relative}
.pm-dot{position:absolute;left:-2.125rem;top:.75rem;width:20px;height:20px;border-radius:50%;background:#fcd003;display:flex;align-items:center;justify-content:center}
.pm-dot::after{content:'';width:8px;height:8px;border-radius:50%;background:#000}
.pm-card{padding:1.25rem;border:1px solid #1a1a1a;background:#0c0c0c;border-radius:2px}
.pm-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.pm-icon{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(252,208,3,.25);background:#111;border-radius:2px;flex-shrink:0}
.pm-icon i{color:#fcd003;font-size:.9rem}
.pm-tag{font-family:'Sora',sans-serif;font-weight:700;font-size:.55rem;color:#fcd003;letter-spacing:.2em;text-transform:uppercase}
.pm-title{font-family:'Sora',sans-serif;font-weight:800;font-size:1.125rem;color:#fff;letter-spacing:.04em;line-height:1.2}
.pm-desc{color:#555;font-size:.875rem;line-height:1.7}

/* Testimonials */
.section-testimonials{background:#080808;padding:6rem 2rem;border-top:1px solid #1a1a1a}
.testimonials-grid{display:grid;grid-template-columns:3fr 2fr;gap:2rem}
.t-featured{position:relative;padding:2rem;border:1px solid rgba(252,208,3,.25);overflow:hidden;transition:all .3s}
.t-quote-bg{position:absolute;top:1.5rem;right:2rem;font-family:'Sora',sans-serif;font-weight:800;font-size:7.5rem;line-height:1;color:rgba(252,208,3,.05);pointer-events:none;user-select:none}
.t-stars{display:flex;gap:.25rem;margin-bottom:1.5rem}
.t-stars i{color:#fcd003;font-size:.875rem}
.t-text{color:#ccc;font-size:1rem;line-height:1.8;font-weight:300;margin-bottom:2rem}
.t-footer{display:flex;align-items:center;gap:1rem;padding-top:1.5rem;border-top:1px solid #1e1e1e}
.t-avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;border:2px solid rgba(252,208,3,.3);flex-shrink:0}
.t-avatar img{width:100%;height:100%;object-fit:cover;object-position:top}
.t-name{font-family:'Sora',sans-serif;font-weight:800;font-size:1.125rem;color:#fff;letter-spacing:.04em}
.t-company{color:#666;font-size:.875rem;font-weight:500}
.t-platform{margin-left:auto;font-family:'Sora',sans-serif;font-weight:500;font-size:.7rem;letter-spacing:.12em;padding:.25rem .75rem;border:1px solid #2a2a2a;color:#555;border-radius:2px}
.t-bar{position:absolute;bottom:0;left:0;width:100%;height:2px;background:linear-gradient(to right,#fcd003,rgba(252,208,3,.4),transparent)}
.t-list{display:flex;flex-direction:column;gap:.75rem}
.t-item{text-align:left;padding:1rem;border:1px solid #1a1a1a;background:#0c0c0c;border-radius:2px;cursor:pointer;transition:all .3s;width:100%;display:block}
.t-item.active{border-color:rgba(252,208,3,.4);background:rgba(252,208,3,.05)}
.t-item-hdr{display:flex;align-items:center;gap:.75rem}
.t-item-av{width:36px;height:36px;border-radius:50%;overflow:hidden;border:1px solid #222;flex-shrink:0;transition:border-color .3s}
.t-item.active .t-item-av{border-color:rgba(252,208,3,.5)}
.t-item-av img{width:100%;height:100%;object-fit:cover;object-position:top}
.t-item-name{font-family:'Sora',sans-serif;font-weight:600;font-size:.875rem;letter-spacing:.02em;color:#888;transition:color .3s}
.t-item.active .t-item-name{color:#fcd003}
.t-item-co{color:#444;font-size:.75rem}
.t-item-dot{margin-left:auto;width:8px;height:8px;border-radius:50%;background:#fcd003;flex-shrink:0}
.t-item-preview{margin-top:.625rem;color:#666;font-size:.75rem;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.t-nav{display:flex;align-items:center;gap:.75rem}
.t-nav-btn{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid #2a2a2a;background:transparent;color:#888;border-radius:2px;transition:all .3s;cursor:pointer;font-size:.875rem}
.t-nav-btn:hover{border-color:#fcd003;background:#fcd003;color:#000}
.t-dots{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:2rem}
.t-dot{border:none;background:#333;height:8px;border-radius:9999px;transition:all .3s;cursor:pointer}
.t-dot.active{width:32px;background:#fcd003}
.t-dot:not(.active){width:8px}

/* Brands */
.section-brands{background:#080808;padding:5rem 0;border-top:1px solid #121212}
.brands-hdr{max-width:1280px;margin:0 auto;padding:0 2rem;margin-bottom:3.5rem;text-align:center}
.brands-trusted{display:block;font-family:'Sora',sans-serif;font-weight:600;font-size:.7rem;letter-spacing:.45em;text-transform:uppercase;color:#555;margin-bottom:.75rem}
.brands-title{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2rem,4vw,3.5rem);letter-spacing:.06em;color:#fcd003;line-height:1.1}
.brands-line{margin:1.25rem auto 0;height:1px;width:8rem;background:linear-gradient(90deg,transparent,#fcd003,transparent)}
.brands-track-wrap{width:100%;overflow:hidden}
.brands-track{display:flex;align-items:center;width:max-content;animation:marquee 70s linear infinite}
.brand-item{display:flex;align-items:center;gap:1.75rem;padding:0 3.5rem;flex-shrink:0}
.brand-ico-box{width:96px;height:96px;display:flex;align-items:center;justify-content:center;border:1px solid #252525;background:rgba(252,208,3,.03);flex-shrink:0;transition:border-color .5s}
.brand-item:hover .brand-ico-box{border-color:rgba(252,208,3,.35)}
.brand-ico-box i{font-size:2.4rem;color:rgba(252,208,3,.55)}
.brand-name{font-family:'Sora',sans-serif;font-weight:800;font-size:1.5rem;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.16);white-space:nowrap;transition:color .4s}
.brand-diamond{display:inline-block;width:8px;height:8px;background:rgba(252,208,3,.18);transform:rotate(45deg);margin-left:1.5rem;flex-shrink:0}

/* Contact */
.section-contact{background:#080808;padding:6rem 2rem;border-top:1px solid #1a1a1a}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem}
.contact-h2{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2.5rem,4vw,3.75rem);letter-spacing:.06em;color:#fff;line-height:1.1;margin-bottom:1.5rem}
.contact-h2 span{color:#fcd003}
.contact-desc{color:#666;font-size:.9375rem;line-height:1.8;margin-bottom:3rem;max-width:28rem}
.contact-info-item{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.contact-ico{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border:1px solid #2a2a2a;border-radius:2px;flex-shrink:0;transition:border-color .3s,background .3s}
.contact-info-item:hover .contact-ico{border-color:rgba(252,208,3,.4);background:rgba(252,208,3,.05)}
.contact-ico i{color:#fcd003;font-size:1.125rem}
.contact-lbl{font-family:'Sora',sans-serif;font-size:.7rem;font-weight:500;color:#444;letter-spacing:.2em;text-transform:uppercase;margin-bottom:2px}
.contact-val{color:#fff;font-size:.875rem;transition:color .3s}
.contact-info-item:hover .contact-val{color:#fcd003}
.avail-badge{display:inline-flex;align-items:center;gap:.75rem;padding:.75rem 1.25rem;border:1px solid rgba(252,208,3,.2);background:rgba(252,208,3,.05);border-radius:2px;margin-top:3rem}
.avail-badge .green-dot{width:10px;height:10px}
.avail-badge span{color:#fff;font-size:.875rem;font-weight:500}
.avail-badge b{color:#fcd003;font-weight:600}
.contact-form{display:flex;flex-direction:column;gap:1.25rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.5rem}
.form-label{font-family:'Sora',sans-serif;font-size:.65rem;font-weight:500;color:#555;letter-spacing:.2em;text-transform:uppercase}
.form-input,.form-select,.form-textarea{width:100%;background:#0d0d0d;border:1px solid #1e1e1e;color:#fff;font-size:.875rem;padding:.875rem 1rem;outline:none;transition:border-color .3s;font-family:'Sora',sans-serif}
.form-input::placeholder,.form-textarea::placeholder{color:#333}
.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:rgba(252,208,3,.5)}
.form-select{cursor:pointer}
.form-select option{background:#111;color:#fff}
.form-textarea{resize:none}
.form-submit{width:100%;padding:1rem;background:#fcd003;color:#000;font-family:'Sora',sans-serif;font-weight:800;font-size:.875rem;letter-spacing:.2em;text-transform:uppercase;border:none;clip-path:polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));cursor:pointer;transition:background .25s,transform .2s}
.form-submit:hover{background:#ffe233;transform:translateY(-1px)}
.form-submit:disabled{opacity:.6;cursor:not-allowed}
.form-success{border:1px solid rgba(252,208,3,.3);padding:2.5rem;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;min-height:400px}
.form-success-ico{width:64px;height:64px;border:2px solid #fcd003;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.form-success-ico i{color:#fcd003;font-size:1.875rem}
.form-success-title{font-family:'Sora',sans-serif;font-weight:800;font-size:1.875rem;color:#fff;letter-spacing:.06em;margin-bottom:.75rem}
.form-success-desc{color:#666;font-size:.875rem;line-height:1.7}

/* Footer */
.footer-cta{background:#fcd003;padding:3.5rem 2rem}
.footer-cta-inner{max-width:1280px;margin:0 auto;display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.footer-cta-title{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(1.5rem,3vw,3rem);color:#000;letter-spacing:.06em;line-height:1.15;margin-bottom:.25rem}
.footer-cta-sub{color:rgba(0,0,0,.6);font-size:.875rem}

/* Minimal footer body */
.footer-body{position:relative;background:#0a0a0a;border-top:1px solid #1a1a1a;overflow:hidden}
.footer-hunain-bg{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none;user-select:none;overflow:hidden}
.footer-hunain-bg span{font-family:'Sora',sans-serif;font-weight:900;font-size:clamp(60px,14vw,220px);color:#fff;white-space:nowrap;letter-spacing:.06em;line-height:1;opacity:.03}
.footer-inner{position:relative;z-index:10;max-width:1280px;margin:0 auto;padding:5rem 2rem 2.5rem}
.footer-grid{display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between;gap:2.5rem;flex-wrap:wrap}
.footer-brand-logo{display:flex;align-items:center;gap:2px;margin-bottom:1rem}
.footer-brand-logo .hf{font-family:'Sora',sans-serif;font-weight:800;font-size:2.25rem;color:#fff;letter-spacing:.15em;transition:color .3s}
.footer-brand-logo:hover .hf{color:#fcd003}
.footer-brand-logo .dot{width:10px;height:10px;border-radius:50%;background:#fcd003;margin-top:4px}
.footer-desc{color:#555;font-size:.875rem;line-height:1.8;max-width:20rem;margin-bottom:1.5rem}
.footer-socials{display:flex;align-items:center;gap:.75rem}
.footer-soc{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid #222;color:#666;font-size:.875rem;transition:border-color .3s,color .3s}
.footer-soc:hover{border-color:#fcd003;color:#fcd003}
.footer-touch-col{flex-shrink:0}
.footer-col-title{font-family:'Sora',sans-serif;font-weight:700;font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;color:#fff;margin-bottom:1.25rem}
.footer-contact-item{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem;font-size:.875rem;color:#555;transition:color .3s}
.footer-contact-item:hover{color:#fcd003}
.footer-contact-ico{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:1px solid #1e1e1e;flex-shrink:0;transition:border-color .3s}
.footer-contact-item:hover .footer-contact-ico{border-color:rgba(252,208,3,.3)}
.footer-contact-ico i{color:#fcd003;font-size:.75rem}
.footer-bottom{margin-top:2.5rem;padding-top:1.25rem;border-top:1px solid #161616;display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap}
.footer-bottom p{font-family:'Sora',sans-serif;font-weight:500;font-size:.75rem;color:#333;letter-spacing:.05em}

/* Portfolio Page */
.port-page-hero{padding:9rem 2rem 2rem;background:#080808}
.port-page-inner{max-width:1280px;margin:0 auto;display:flex;flex-direction:row;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.port-page-title{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(3rem,8vw,6rem);color:#fff;letter-spacing:.06em;line-height:1}
.port-page-title span{color:#fcd003}
.port-hero-stats{display:flex;align-items:center;gap:2rem;flex-shrink:0}
.port-stat-num{font-family:'Sora',sans-serif;font-weight:800;font-size:2.25rem;color:#fcd003;letter-spacing:.08em}
.port-stat-lbl{font-family:'Sora',sans-serif;font-weight:500;font-size:.65rem;color:#444;letter-spacing:.2em;text-transform:uppercase;margin-top:4px}
.port-stat-div{width:1px;height:48px;background:#1e1e1e}
.portfolio-section{padding:2.5rem 2rem 6rem}
.portfolio-inner{max-width:1280px;margin:0 auto}
.filter-bar{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:3rem}
.filter-btn{font-family:'Sora',sans-serif;font-weight:700;font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;padding:.5rem 1.25rem;border:1.5px solid #2a2a2a;color:#666;background:transparent;transition:all .3s;white-space:nowrap;position:relative;overflow:hidden;isolation:isolate;clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px))}
.filter-btn::after{content:'';position:absolute;inset:0;background:#fcd003;transform:scaleX(0);transform-origin:left;transition:transform .3s;z-index:-1}
.filter-btn.active::after,.filter-btn:hover::after{transform:scaleX(1)}
.filter-btn.active{color:#000;border-color:#fcd003}
.filter-btn:hover{color:#000;border-color:#fcd003}
.port-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.port-item{position:relative;overflow:hidden;cursor:pointer}
.port-item img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .7s}
.port-item:hover img{transform:scale(1.05)}
.port-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.3),transparent)}
.port-corners .corner-frame{position:absolute;width:20px;height:20px;border-color:#fcd003;opacity:0;transition:opacity .3s}
.port-item:hover .corner-frame{opacity:1}
.port-info{position:absolute;bottom:0;left:0;padding:1.5rem;width:100%}
.port-info-footer{display:flex;align-items:flex-end;justify-content:space-between}
.port-arrow-btn{width:32px;height:32px;background:#fcd003;color:#000;display:flex;align-items:center;justify-content:center;font-size:.875rem;opacity:0;transition:opacity .3s;flex-shrink:0}
.port-item:hover .port-arrow-btn{opacity:1}
.port-item-desc{color:#888;font-size:.75rem;margin-top:.25rem;opacity:0;transition:opacity .3s}
.port-item:hover .port-item-desc{opacity:1}
.port-item.large{grid-column:span 2;height:400px}
.port-item.normal{height:300px}
.empty-state{text-align:center;padding:6rem 0;color:#444;font-size:.875rem}

/* Skills icon grid */
.tools-icon-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem;margin-bottom:2rem}
.tool-icon-card{border:1px solid #1a1a1a;background:#0c0c0c;padding:.75rem;transition:border-color .3s,background .3s;cursor:default}
.tool-icon-card:hover{border-color:rgba(252,208,3,.3);background:#0f0f0a}
.tool-icon-box{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(252,208,3,.15);margin-bottom:.5rem;transition:border-color .3s}
.tool-icon-card:hover .tool-icon-box{border-color:rgba(252,208,3,.4)}
.tool-icon-box i{color:#fcd003;font-size:.875rem}
.tool-short-name{font-family:'Sora',sans-serif;font-weight:700;font-size:.625rem;color:#fff;letter-spacing:.05em;line-height:1.2;margin-bottom:.15rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tool-category-lbl{font-family:'Sora',sans-serif;font-size:.55rem;color:#333;letter-spacing:.05em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
/* About page */
.about-page-hero{padding:9rem 2rem 2rem;background:#080808}
.about-page-title{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(3rem,8vw,6rem);color:#fff;letter-spacing:.06em;line-height:1}
.about-page-title span{color:#fcd003}
.about-main{padding:3.5rem 2rem 6rem}
.about-main-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;max-width:1280px;margin:0 auto}
.about-sticky{position:sticky;top:7rem}
.about-avail{display:inline-flex;align-items:center;gap:.75rem;padding:.75rem 1.25rem;border:1px solid rgba(252,208,3,.2);background:rgba(252,208,3,.05);margin-top:2.5rem}
.about-avail span{color:#fff;font-size:.875rem;font-weight:500}
.about-avail b{color:#fcd003;font-weight:600}
.about-body p{color:#777;font-size:.9375rem;line-height:1.85;margin-bottom:1.5rem}
.tools-list{display:flex;flex-direction:column;gap:1rem;margin-bottom:3rem}
.tool-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.tool-name{font-family:'Sora',sans-serif;font-weight:500;font-size:.75rem;color:#888;letter-spacing:.05em}
.tool-pct{font-family:'Sora',sans-serif;font-weight:700;font-size:.75rem;color:#fcd003}
.tool-bar{height:1px;background:#1e1e1e;position:relative}
.tool-fill{position:absolute;top:0;left:0;height:100%;background:rgba(252,208,3,.6)}
.about-ctas{display:flex;flex-wrap:wrap;gap:1rem}
.about-contact-section{background:#050505;padding:3.5rem 2rem 6rem;border-top:1px solid #1a1a1a}
.section-h2-about{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(2.5rem,4vw,3.75rem);color:#fff;letter-spacing:.06em;line-height:1.1}
.section-h2-about span{color:#fcd003}

/* info hint */
.info-hint{display:flex;align-items:center;gap:.5rem;font-family:'Sora',sans-serif;font-size:.7rem;font-weight:500;color:#444;letter-spacing:.1em;margin-bottom:2rem}
.info-hint i{color:rgba(252,208,3,.5)}
.section-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}
.section-header-desc{color:#555;font-size:.875rem;max-width:18rem;text-align:right;line-height:1.7}

/* ── Category Grid (Portfolio page) ── */
.cat-section{padding:2.5rem 2rem 5rem;background:#080808}
.cat-inner{max-width:1280px;margin:0 auto}
.browse-label{font-family:'Sora',sans-serif;font-weight:700;font-size:.65rem;letter-spacing:.3em;text-transform:uppercase;color:#333;margin-bottom:2rem}
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.875rem}
.cat-card{position:relative;overflow:hidden;cursor:pointer;aspect-ratio:4/3;display:block;border:none;padding:0;background:none;text-align:left;width:100%}
.cat-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .7s ease}
.cat-card:hover img{transform:scale(1.1)}
.cat-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.1),transparent)}
.cat-top-bar{position:absolute;top:0;left:0;right:0;height:3px;background:#fcd003;transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.cat-card:hover .cat-top-bar{transform:scaleX(1)}
.cat-info-wrap{position:absolute;bottom:0;left:0;right:0;padding:1rem 1.25rem}
.cat-info-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:.5rem}
.cat-label{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(.875rem,1.5vw,1.125rem);color:#fff;letter-spacing:.04em;line-height:1.2;transition:color .3s;display:block}
.cat-card:hover .cat-label{color:#fcd003}
.cat-count{font-family:'Sora',sans-serif;font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:#888;transition:color .3s;display:block;margin-top:.2rem}
.cat-card:hover .cat-count{color:rgba(252,208,3,.6)}
.cat-arrow-btn{width:28px;height:28px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.4);flex-shrink:0;font-size:.75rem;transition:all .3s}
.cat-card:hover .cat-arrow-btn{border-color:rgba(252,208,3,.6);color:#fcd003}

/* ── Category Viewer Overlay ── */
.cat-viewer{position:fixed;inset:0;z-index:200;background:#080808;overflow-y:auto;transform:translateY(100%);transition:transform .55s cubic-bezier(.22,1,.36,1);display:flex;flex-direction:column}
.cat-viewer.open{transform:none}
.cat-viewer-hdr{position:sticky;top:0;background:rgba(8,8,8,.97);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid #1a1a1a;padding:1.5rem 2rem;display:flex;align-items:center;justify-content:space-between;z-index:10;gap:1rem;flex-wrap:wrap}
.cat-viewer-meta{flex:1;min-width:0}
.cat-viewer-eyebrow{font-family:'Sora',sans-serif;font-weight:700;font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:#fcd003;margin-bottom:.3rem}
.cat-viewer-title{font-family:'Sora',sans-serif;font-weight:800;font-size:clamp(1.5rem,3vw,2.5rem);color:#fff;letter-spacing:.06em;line-height:1}
.cat-viewer-count{font-family:'Sora',sans-serif;font-size:.7rem;color:#555;letter-spacing:.15em;margin-top:.35rem}
.cat-viewer-close{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border:1.5px solid #2a2a2a;background:#111;color:#888;font-size:1.25rem;flex-shrink:0;transition:all .25s;cursor:pointer;clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px))}
.cat-viewer-close:hover{background:#fcd003;color:#000;border-color:#fcd003}
.cat-viewer-body{flex:1;padding:2rem;max-width:1280px;margin:0 auto;width:100%;box-sizing:border-box}
.cat-proj-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.cat-proj-item{position:relative;overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.cat-proj-item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .6s}
.cat-proj-item:hover img{transform:scale(1.07)}
.cat-proj-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.3),transparent)}
.cat-proj-top-bar{position:absolute;top:0;left:0;right:0;height:2px;background:#fcd003;transform:scaleX(0);transform-origin:left;transition:transform .3s}
.cat-proj-item:hover .cat-proj-top-bar{transform:scaleX(1)}
.cat-proj-info{position:absolute;bottom:0;left:0;padding:1rem 1.25rem}
.cat-proj-corners .corner-frame{position:absolute;width:16px;height:16px;border-color:#fcd003;opacity:0;transition:opacity .3s}
.cat-proj-item:hover .corner-frame{opacity:1}

/* Responsive */
@media(max-width:1024px){
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .cat-proj-grid{grid-template-columns:repeat(2,1fr)}
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{display:none!important}
  .process-desktop{display:none!important}
  .process-mobile{display:block!important}
  .testimonials-grid{grid-template-columns:1fr}
  .about-main-grid{grid-template-columns:1fr}
  .about-sticky{position:static}
  .contact-grid{grid-template-columns:1fr}
  .home-port-grid{grid-template-columns:1fr 1fr}
  .hp-large{grid-column:span 1;height:300px}
  .hp-normal{height:300px}
  .hp-large-bot{grid-column:span 1;height:300px}
  .hp-normal-bot{height:300px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .port-grid{grid-template-columns:repeat(2,1fr)}
  .port-item.large{height:320px!important}
  .process-bar-right .p-metric,.process-bar-right .divider-v{display:none}
}
@media(max-width:768px){
  .cat-grid{grid-template-columns:1fr}
  .cat-section{padding:2rem 1rem 4rem}
  .cat-viewer-hdr{padding:1rem}
  .cat-viewer-body{padding:1rem}
  .cat-proj-grid{grid-template-columns:1fr}
  .hero-inner{padding:6rem 1rem 3rem}
  .section-about,.section-portfolio,.section-services,.section-process,.section-testimonials,.section-contact{padding:4rem 1rem}
  .about-grid,.contact-grid{grid-template-columns:1fr;gap:2rem}
  .about-img-wrap{max-width:100%}
  .about-badge{right:0}
  .about-stats{gap:.75rem}
  .stat-num{font-size:2rem}
  .home-port-grid{grid-template-columns:1fr;gap:.75rem}
  .hp-large,.hp-normal,.hp-large-bot,.hp-normal-bot{grid-column:span 1;height:260px}
  .hp-cta-strip{flex-direction:column;align-items:flex-start;gap:1rem}
  .services-grid{grid-template-columns:1fr}
  .footer-cta{padding:2.5rem 1rem}
  .footer-inner{padding:3rem 1rem 2rem}
  .footer-grid{flex-direction:column;gap:2rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .port-page-hero{padding:7rem 1rem 2rem}
  .port-page-inner{flex-direction:column;align-items:flex-start}
  .portfolio-section{padding:2rem 1rem 4rem}
  .port-grid{grid-template-columns:1fr}
  .port-item.large{grid-column:span 1;height:260px!important}
  .port-item.normal{height:220px!important}
  .about-page-hero{padding:7rem 1rem 2rem}
  .about-main{padding:2rem 1rem 4rem}
  .about-contact-section{padding:2rem 1rem 4rem}
  .section-brands{padding:3rem 0}
  .brands-hdr{padding:0 1rem;margin-bottom:2rem}
  .brand-ico-box{width:72px;height:72px}
  .brand-ico-box i{font-size:1.8rem}
  .brand-name{font-size:1.1rem}
  .brand-item{padding:0 2rem;gap:1rem}
  .tools-icon-grid{grid-template-columns:repeat(2,1fr)}
  .form-row{grid-template-columns:1fr}
  .process-bar{flex-direction:column;gap:1rem}
}
