:root {
  --navy: #151f42;
  --bg: #f5f3f0;
  --g1: #4568dc;
  --g2: #b06ab3;
  --gradient: linear-gradient(135deg, #4568dc, #b06ab3);
  --muted: rgba(21, 31, 66, 0.5);
  --muted-dark: rgba(21, 31, 66, 0.65);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--navy); }

/* GRADIENT UTILITIES */
.g {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gbg { background: var(--gradient); }

/* PRELOADER */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#preloader svg {
  position: absolute; top: 0; left: 0; width: 100%; height: 110vh; fill: var(--navy);
}
#preloader .letters {
  position: relative; z-index: 10; display: flex; gap: 8px;
}
#preloader .letters span {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 400;
  color: white; text-transform: uppercase; letter-spacing: 10px;
  animation: letterPulse 1s infinite alternate;
}
#preloader .letters span:nth-child(1) { animation-delay: 0s; }
#preloader .letters span:nth-child(2) { animation-delay: 0.1s; }
#preloader .letters span:nth-child(3) { animation-delay: 0.2s; }
#preloader .letters span:nth-child(4) { animation-delay: 0.3s; }
#preloader .letters span:nth-child(5) { animation-delay: 0.4s; }
#preloader .letters span:nth-child(6) { animation-delay: 0.5s; }
#preloader .letters span:nth-child(7) { animation-delay: 0.6s; }
@keyframes letterPulse { 0% { opacity: 1; } 100% { opacity: 0.1; } }
#preloader.hide { animation: preloaderOut 0.8s ease forwards; }
@keyframes preloaderOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); pointer-events: none; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* BUTTONS */
.btn-p {
  border: none; padding: 13px 28px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: white;
  cursor: pointer; transition: opacity 0.2s;
  text-decoration: none; display: inline-block;
  background: linear-gradient(135deg, #4568dc, #b06ab3);
}
.btn-p:hover { opacity: 0.88; }

.btn-s {
  background: transparent; border: 1px solid rgba(21, 31, 66, 0.18);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(21, 31, 66, 0.5);
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-s:hover { border-color: rgba(21, 31, 66, 0.35); color: var(--navy); }

.btn-ghost {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.6);
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); color: white; }

/* NAV */
nav.site-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 56px; background: var(--bg);
  border-bottom: 1px solid rgba(21, 31, 66, 0.07);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-size: 15px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--navy);
}
.nav-logo-s { font-style: italic; font-weight: 300; font-size: 19px; margin-right: 6px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(21, 31, 66, 0.45); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

/* SECTIONS */
.section-wrap { padding: 80px 56px; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 400; letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.section-h2 {
  font-size: clamp(36px, 4vw, 48px); font-weight: 300;
  line-height: 1.1; color: var(--navy); letter-spacing: -1px;
}
.section-h2 strong { font-weight: 600; }
.section-cta { margin-top: 48px; text-align: center; }
.section-cta p { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 24px; }
.btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh; position: relative; overflow: hidden;
}
.hero-navy {
  position: absolute; top: 0; right: 0; width: 44%; height: 100%;
  background: var(--navy); clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0;
}
.hero-text {
  padding: 72px 56px; position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 20px; display: block;
}
.hero-h1 { font-size: clamp(38px, 4.5vw, 58px); font-weight: 300; line-height: 1.08; color: var(--navy); letter-spacing: -1px; }
.hero-h1 strong { font-weight: 600; display: block; }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 400px; margin: 28px 0 40px; }
.hero-img { position: relative; z-index: 1; display: flex; justify-content: center; align-items: flex-end; padding-right: 32px; }
.photo-wrap { width: 300px; height: 420px; position: relative; }
.photo-top { position: absolute; top: -2px; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; z-index: 2; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; border-radius: 3px; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); }
.stat { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.06); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 38px; font-weight: 300; line-height: 1; letter-spacing: -1px; }
.stat-n sup { font-size: 18px; }
.stat-l { font-size: 10px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); margin-top: 10px; }

/* ABOUT LANDING */
.about-content { margin-top: 48px; }
.block { padding: 36px 0; border-bottom: 1px solid rgba(21, 31, 66, 0.08); }
.block:last-of-type { border-bottom: none; }
.block-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.block-num { font-size: 12px; font-weight: 600; letter-spacing: 3px; }
.block-title { font-size: 20px; font-weight: 500; color: var(--navy); letter-spacing: -0.3px; }
.block-line { height: 2px; width: 40px; border-radius: 1px; margin-bottom: 18px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.block-body { font-size: 14px; font-weight: 300; color: var(--muted-dark); line-height: 1.85; max-width: 680px; }
.certs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.cert-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(21, 31, 66, 0.5); border: 1px solid rgba(21, 31, 66, 0.12);
  padding: 7px 16px; border-radius: 20px;
}

/* SERVICES LANDING */
.services-bg { background: var(--bg); padding-bottom: 80px; }
.services-header { padding: 80px 56px 0; max-width: 1200px; margin: 0 auto; }
.services-header-flex { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: 16px; flex-wrap: wrap; }
.services-subtext { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 360px; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(21, 31, 66, 0.06); margin-top: 48px; }
.service-card { background: var(--bg); padding: 48px; cursor: default; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(21, 31, 66, 0.08); }
.s-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.s-num { font-size: 12px; font-weight: 600; letter-spacing: 3px; }
.s-tag { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 5px 14px; border-radius: 20px; }
.s-title { font-size: 21px; font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: 18px; letter-spacing: -0.3px; }
.s-line { height: 2px; width: 40px; border-radius: 1px; margin-bottom: 20px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.s-body { font-size: 14px; font-weight: 300; color: var(--muted-dark); line-height: 1.85; }
.s-cta { margin-top: 32px; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; background: linear-gradient(135deg, #4568dc, #b06ab3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.services-bottom { padding: 56px 56px; text-align: center; }
.services-bottom p { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 24px; }

/* STORIES LANDING PREVIEW */
.stories-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(21, 31, 66, 0.06); margin-top: 40px; }
.story-preview-card { background: var(--bg); padding: 36px 40px; display: flex; flex-direction: column; gap: 12px; }
.story-preview-top { display: flex; align-items: center; gap: 12px; }
.story-preview-num { font-size: 11px; font-weight: 600; letter-spacing: 3px; }
.story-preview-ind { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 4px 12px; border-radius: 20px; }
.story-preview-line { height: 2px; width: 36px; border-radius: 1px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.story-preview-title { font-size: 16px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.story-preview-link { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(21, 31, 66, 0.08); background: linear-gradient(135deg, #4568dc, #b06ab3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* PORTFOLIO PREVIEW */
.portfolio-preview { background: white; padding: 48px; border-radius: 3px; text-align: center; margin-top: 40px; }
.portfolio-preview p { font-size: 15px; font-weight: 300; color: var(--muted-dark); line-height: 1.75; max-width: 520px; margin: 0 auto 28px; }

/* BLOG */
.featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2px; background: rgba(21, 31, 66, 0.06); margin-bottom: 2px; }
.feat-main { background: white; padding: 48px 44px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px; position: relative; }
.feat-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.feat-side { display: flex; flex-direction: column; gap: 2px; }
.feat-side-card { background: white; padding: 28px 32px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.feat-side-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.post-tag { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 4px 12px; border-radius: 20px; width: fit-content; margin-bottom: 16px; }
.post-title-lg { font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 16px; }
.post-title-md { font-size: 16px; font-weight: 500; color: var(--navy); line-height: 1.35; letter-spacing: -0.2px; margin-bottom: 10px; }
.post-link { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; background: linear-gradient(135deg, #4568dc, #b06ab3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(21, 31, 66, 0.08); cursor: pointer; }
.faq-item:first-of-type { border-top: 1px solid rgba(21, 31, 66, 0.08); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.faq-q-text { font-size: 17px; font-weight: 500; color: var(--navy); letter-spacing: -0.2px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(21, 31, 66, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-icon span { font-size: 18px; font-weight: 300; color: rgba(21, 31, 66, 0.4); line-height: 1; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 15px; font-weight: 300; color: rgba(21, 31, 66, 0.6); line-height: 1.8; padding-bottom: 28px; max-width: 680px; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, #4568dc, #b06ab3); border-color: transparent; }
.faq-item.open .faq-icon span { color: white; transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-cta-bar { margin-top: 64px; background: var(--navy); padding: 48px 56px; border-radius: 3px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.faq-cta-text { font-size: 24px; font-weight: 300; color: white; line-height: 1.3; max-width: 480px; }
.faq-cta-text strong { font-weight: 500; }

/* CTA SECTION */
.cta-section { background: var(--navy); padding: 100px 56px; text-align: center; }
.cta-label { font-size: 11px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 24px; display: block; }
.cta-h2 { font-size: clamp(36px, 4.5vw, 52px); font-weight: 300; line-height: 1.1; color: white; letter-spacing: -1px; margin-bottom: 16px; }
.cta-h2 strong { font-weight: 600; }
.cta-sub { font-size: 15px; font-weight: 300; color: rgba(255, 255, 255, 0.45); line-height: 1.7; margin-bottom: 48px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-contact { display: flex; justify-content: center; gap: 48px; margin-top: 56px; flex-wrap: wrap; }
.cta-contact-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cta-contact-label { font-size: 10px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); }
.cta-contact-value { font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; }
.cta-contact-value:hover { color: white; }

/* FOOTER */
footer.site-footer { background: #0d1228; padding: 48px 56px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo-text { font-size: 14px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.footer-logo-s { font-style: italic; font-weight: 300; font-size: 18px; margin-right: 6px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255, 255, 255, 0.5); }
.footer-divider { border: none; border-top: 1px solid rgba(255, 255, 255, 0.04); margin: 32px 0 0; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255, 255, 255, 0.2); letter-spacing: 1px; }

/* PAGE HERO */
.page-hero { padding: 80px 56px 48px; max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.page-hero-h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 300; line-height: 1.08; color: var(--navy); letter-spacing: -1px; }
.page-hero-h1 strong { font-weight: 600; }
.page-hero-sub { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 560px; margin-top: 24px; }
.page-divider { border: none; border-top: 1px solid rgba(21, 31, 66, 0.08); margin: 0 56px; }

/* ABOUT PAGE */
.about-intro { font-size: 18px; font-weight: 300; color: rgba(21, 31, 66, 0.75); line-height: 1.85; max-width: 760px; margin-bottom: 64px; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.about-col-label { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.about-col-body { font-size: 15px; font-weight: 300; color: var(--muted-dark); line-height: 1.85; }
.about-quote { background: var(--navy); padding: 64px 56px; text-align: center; margin: 80px 0 0; }
.about-quote p { font-size: 22px; font-weight: 300; color: white; line-height: 1.5; max-width: 700px; margin: 0 auto 32px; font-style: italic; }
.certs-section { padding: 56px 56px 80px; max-width: 1200px; margin: 0 auto; }
.certs-section-label { font-size: 10px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: rgba(21, 31, 66, 0.35); margin-bottom: 24px; display: block; }

/* SERVICES PAGE */
.svc-full { background: white; padding: 56px; margin-bottom: 2px; max-width: 1200px; margin: 0 auto 2px; }
.svc-full-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.svc-full-num { font-size: 12px; font-weight: 600; letter-spacing: 3px; }
.svc-demand { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 6px 16px; border-radius: 20px; }
.svc-full-line { height: 2px; width: 48px; border-radius: 1px; margin-bottom: 28px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.svc-full-title { font-size: 28px; font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.5px; }
.svc-best { font-size: 14px; font-weight: 300; color: rgba(21, 31, 66, 0.45); margin-bottom: 28px; font-style: italic; }
.svc-body { font-size: 15px; font-weight: 300; color: var(--muted-dark); line-height: 1.85; margin-bottom: 36px; }
.deliverables { background: var(--bg); padding: 32px; border-radius: 3px; }
.deliverables h4 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
.deliverables ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.deliverables li { font-size: 14px; font-weight: 300; color: var(--muted-dark); padding-left: 18px; position: relative; }
.deliverables li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, #4568dc, #b06ab3); }

/* STORIES PAGE */
.stories-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(21, 31, 66, 0.06); }
.story-card { background: var(--bg); padding: 44px 40px; display: flex; flex-direction: column; }
.story-num { font-size: 11px; font-weight: 600; letter-spacing: 3px; margin-bottom: 12px; }
.story-ind { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 5px 14px; border-radius: 20px; width: fit-content; margin-bottom: 24px; }
.story-line { height: 2px; width: 40px; border-radius: 1px; margin-bottom: 24px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.story-block { margin-bottom: 20px; }
.story-block-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(21, 31, 66, 0.35); margin-bottom: 8px; }
.story-block-text { font-size: 14px; font-weight: 300; color: var(--muted-dark); line-height: 1.8; }
.story-result { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(21, 31, 66, 0.08); }
.story-result-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.story-result-text { font-size: 14px; font-weight: 400; color: var(--navy); line-height: 1.7; }

/* PORTFOLIO PAGE */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.port-card { background: white; border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.port-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(21, 31, 66, 0.08); }
.port-card.wide { grid-column: span 2; }
.port-img { width: 100%; height: 200px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.port-img img { width: 100%; height: 100%; object-fit: cover; }
.port-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.port-img-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(21, 31, 66, 0.25); }
.port-top { position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 1; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.port-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.port-tag { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 4px 12px; border-radius: 20px; width: fit-content; margin-bottom: 12px; }
.port-title { font-size: 17px; font-weight: 500; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 8px; }
.port-desc { font-size: 13px; font-weight: 300; color: rgba(21, 31, 66, 0.6); line-height: 1.75; flex: 1; }
.port-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(21, 31, 66, 0.07); display: flex; justify-content: space-between; align-items: center; }
.status-live { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #2e7d32; background: rgba(46, 125, 50, 0.08); padding: 4px 10px; border-radius: 20px; }
.status-live-priv { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--g1); background: rgba(69, 104, 220, 0.08); padding: 4px 10px; border-radius: 20px; }
.status-dev { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(21, 31, 66, 0.35); background: rgba(21, 31, 66, 0.05); padding: 4px 10px; border-radius: 20px; }
.port-link { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; background: linear-gradient(135deg, #4568dc, #b06ab3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* CONTACT PAGE */
.contact-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(21, 31, 66, 0.55); }
.form-optional { font-weight: 300; color: rgba(21, 31, 66, 0.3); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--navy); background: white; border: 1px solid rgba(21, 31, 66, 0.15);
  border-radius: 8px; padding: 13px 16px; outline: none; width: 100%; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--g1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.contact-info { display: flex; flex-direction: column; gap: 36px; padding-top: 8px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(21, 31, 66, 0.35); }
.contact-info-value { font-size: 15px; font-weight: 400; color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-info-value:hover { color: var(--g1); }
.contact-success { background: rgba(46, 125, 50, 0.08); border: 1px solid rgba(46, 125, 50, 0.2); padding: 24px; border-radius: 8px; font-size: 15px; font-weight: 300; color: #2e7d32; margin-bottom: 40px; }
