/* ===========================
   PIXELCRAFT STUDIO — STYLES
   =========================== */

:root {
  --cream: #FFFDF8;
  --sand: #F5F1EA;
  --ink: #1B1916;
  --ink-body: #3B3835;
  --ink-muted: #7A756E;
  --pop: #E8432A;
  --pop-dark: #C5331C;
  --pop-soft: #FFF0ED;
  --blue: #2B4AFF;
  --blue-soft: #EEF1FF;
  --green: #1A9E5C;
  --green-soft: #EAFAF2;
  --font-display: 'Anybody', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ CURSOR ============ */
.cursor {
  width: 14px; height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: width 0.25s, height 0.25s, margin 0.25s, background 0.25s, border-color 0.25s;
  margin-left: -7px; margin-top: -7px;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 44px; height: 44px;
  margin-left: -22px; margin-top: -22px;
  background: #fff; border-color: #fff;
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  background: var(--ink);
  overflow: hidden;
  padding: 9px 0;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
}
.marquee {
  display: flex; gap: 48px;
  animation: ticker 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee .dot { color: var(--pop); margin: 0 6px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 150;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,253,248,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,25,22,0.06);
}
.logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 22px;
  text-decoration: none; color: var(--ink);
  letter-spacing: -1px;
}
.logo i {
  font-family: var(--font-serif);
  font-style: italic; color: var(--pop); font-weight: 400;
}
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--ink-muted);
  text-decoration: none; transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links .cta-link {
  background: var(--pop); color: #fff !important;
  padding: 10px 22px; border-radius: 100px;
  transition: all 0.3s;
}
.nav-links .cta-link:hover { background: var(--pop-dark); transform: scale(1.04); }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 210;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); margin: 6px 0;
  transition: all 0.3s; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 190;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { text-align: center; }
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 36px;
  letter-spacing: -1px;
  color: var(--ink); text-decoration: none;
  padding: 14px 0;
  transition: color 0.3s;
}
.mobile-link:hover, .mobile-link.active { color: var(--pop); }
.mobile-menu-footer {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--ink-muted);
  line-height: 2;
}

/* ============ TYPOGRAPHY ============ */
.accent-italic {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--pop);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--pop);
  letter-spacing: 2px; margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -1.5px; line-height: 1.05;
  color: var(--ink);
}
.section-header { margin-bottom: 48px; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pop); color: #fff;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover {
  background: var(--pop-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,67,42,0.25);
}
.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(27,25,22,0.15);
  transition: all 0.35s;
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff; color: var(--ink);
}
.btn-light:hover {
  background: var(--sand);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.link-arrow {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.5px;
  color: var(--pop); text-decoration: none;
  font-weight: 500;
  transition: letter-spacing 0.3s;
}
.link-arrow:hover { letter-spacing: 1.5px; }

.section-cta { margin-top: 40px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 32px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 32px; color: var(--ink);
}
.hero-title .line {
  display: block; overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
}
.hero-desc {
  font-size: 18px; color: var(--ink-body);
  max-width: 460px; line-height: 1.75;
  font-weight: 400; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-shapes {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  animation: morph 10s ease-in-out infinite;
}
.blob-1 {
  width: 340px; height: 340px;
  background: var(--pop-soft);
  top: 10%; right: 5%;
  opacity: 0.7;
}
.blob-2 {
  width: 200px; height: 200px;
  background: var(--blue-soft);
  top: 50%; right: 20%;
  animation-delay: -3s; opacity: 0.6;
}
.blob-3 {
  width: 140px; height: 140px;
  background: var(--green-soft);
  top: 65%; right: 8%;
  animation-delay: -6s; opacity: 0.5;
}
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  66% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
}

/* ============ HOME SERVICES ============ */
.home-services {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(27,25,22,0.06);
}
.services-preview {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(27,25,22,0.08);
  border-radius: 20px; overflow: hidden;
}
.service-preview-card {
  background: var(--cream);
  padding: 40px 28px;
  text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
.service-preview-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.service-preview-card:hover::before { transform: translateY(0); }
.service-preview-card > * { position: relative; z-index: 1; }
.service-preview-card:hover { color: #fff; }
.service-preview-card:hover .sp-num { color: var(--pop); }
.service-preview-card:hover .sp-desc { color: rgba(255,255,255,0.6); }
.service-preview-card:hover .sp-price { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.service-preview-card:hover .sp-arrow { opacity: 1; transform: translateX(0); }

.sp-num {
  font-family: var(--font-mono);
  font-size: 44px; font-weight: 500;
  color: rgba(27,25,22,0.07);
  margin-bottom: 28px; transition: color 0.5s;
}
.sp-name {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 12px;
}
.sp-desc {
  font-size: 15px; color: var(--ink-body);
  line-height: 1.65; font-weight: 400;
  margin-bottom: 24px; transition: color 0.5s;
  flex: 1;
}
.sp-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(27,25,22,0.1);
  border-radius: 100px;
  color: var(--ink-body);
  transition: all 0.5s;
}
.sp-arrow {
  position: absolute;
  bottom: 40px; right: 28px;
  font-size: 22px; color: var(--pop);
  opacity: 0; transform: translateX(-10px);
  transition: all 0.4s;
}

/* ============ HOME PORTFOLIO ============ */
.home-portfolio {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(27,25,22,0.06);
}
.portfolio-preview { margin-top: 0; }
.pp-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  background: var(--ink); border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.pp-card:hover { transform: scale(0.99); }

.pp-visual {
  padding: 40px; display: flex;
  align-items: center; justify-content: center;
  position: relative;
  background:
    radial-gradient(circle at 30% 40%, rgba(232,67,42,0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(43,74,255,0.1) 0%, transparent 60%);
}
.pp-browser {
  width: 100%; max-width: 360px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden;
}
.pp-browser-bar {
  height: 30px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center;
  gap: 6px; padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.pp-url {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(255,255,255,0.3);
  margin-left: 10px;
}
.pp-browser-body { padding: 16px; }
.pp-line {
  height: 8px; border-radius: 100px;
  margin-bottom: 8px;
}
.pp-line-accent { width: 55%; background: rgba(232,67,42,0.3); }
.pp-line-80 { width: 80%; background: rgba(255,255,255,0.06); }
.pp-line-60 { width: 60%; background: rgba(255,255,255,0.04); }
.pp-blocks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-top: 12px;
}
.pp-block {
  height: 50px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.pp-info {
  padding: 48px 40px;
  display: flex; flex-direction: column;
  justify-content: center; color: #fff;
}
.pp-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.pp-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -1px; margin-bottom: 14px;
}
.pp-desc {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 20px;
}
.pp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-tags span {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--ink);
  padding: 80px 0;
}
.cta-content { text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1.5px;
  color: #fff; margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px; color: rgba(255,255,255,0.55);
  margin-bottom: 32px; font-weight: 400;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand .logo i { color: var(--pop); }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.4);
  font-weight: 400; line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-nav a, .footer-contact a {
  display: block;
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 5px 0; transition: color 0.3s;
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ============ ANIMATIONS ============ */
.anim {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.anim.in { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-d1 { transition-delay: 0.2s; }
.anim-d2 { transition-delay: 0.35s; }
.anim-d3 { transition-delay: 0.5s; }
.anim-d4 { transition-delay: 0.65s; }
.anim-d5 { transition-delay: 0.8s; }

/* ============ SERVICII PAGE ============ */
.page-header {
  padding: 160px 0 60px;
  border-bottom: 1px solid rgba(27,25,22,0.06);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -2px; line-height: 1;
  color: var(--ink); margin-bottom: 16px;
}
.page-subtitle {
  font-size: 18px; color: var(--ink-body);
  font-weight: 400; max-width: 500px;
  line-height: 1.7;
}

.services-full {
  padding: 80px 0;
}
.service-full-card {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; padding: 60px 0;
  border-bottom: 1px solid rgba(27,25,22,0.06);
  align-items: start;
}
.service-full-card:last-child { border-bottom: none; }
.sf-left {}
.sf-num {
  font-family: var(--font-mono);
  font-size: 64px; font-weight: 500;
  color: rgba(27,25,22,0.06);
  margin-bottom: 16px;
}
.sf-name {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 8px;
}
.sf-price-tag {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 500;
  color: var(--pop);
}
.sf-right {}
.sf-desc {
  font-size: 16px; color: var(--ink-body);
  line-height: 1.8; margin-bottom: 24px;
  font-weight: 400;
}
.sf-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.sf-features li {
  font-size: 15px; color: var(--ink-body);
  display: flex; align-items: center; gap: 12px;
  font-weight: 400;
}
.sf-features li::before {
  content: '→';
  color: var(--pop);
  font-weight: 600;
  flex-shrink: 0;
}

/* PRICING TABLE on Servicii page */
.pricing-section {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(27,25,22,0.06);
}
.pricing-layout {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 48px;
  border: 1px solid rgba(27,25,22,0.08);
  border-radius: 24px; overflow: hidden;
}
.pricing-col {
  padding: 44px 28px;
  border-right: 1px solid rgba(27,25,22,0.06);
  transition: all 0.4s;
}
.pricing-col:last-child { border-right: none; }
.pricing-col.highlight { background: var(--ink); color: #fff; }
.pricing-col:not(.highlight):hover { background: var(--sand); }

.pricing-badge {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  display: inline-block; margin-bottom: 20px;
}
.pricing-col:not(.highlight) .pricing-badge { background: var(--sand); color: var(--ink-muted); }
.pricing-col.highlight .pricing-badge { background: var(--pop); color: #fff; }

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.5px; margin-bottom: 6px;
}
.pricing-tier-desc {
  font-size: 14px; font-weight: 400; margin-bottom: 28px;
}
.pricing-col:not(.highlight) .pricing-tier-desc { color: var(--ink-muted); }
.pricing-col.highlight .pricing-tier-desc { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-family: var(--font-display);
  font-weight: 900; font-size: 40px;
  letter-spacing: -2px; margin-bottom: 4px;
}
.pricing-price span { font-size: 16px; font-weight: 400; letter-spacing: 0; }
.pricing-col:not(.highlight) .pricing-price span { color: var(--ink-muted); }
.pricing-col.highlight .pricing-price span { color: rgba(255,255,255,0.5); }

.pricing-from {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1px;
  margin-bottom: 28px;
}
.pricing-col:not(.highlight) .pricing-from { color: var(--ink-muted); }
.pricing-col.highlight .pricing-from { color: rgba(255,255,255,0.4); }

.pricing-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.pricing-list li {
  font-size: 14px; font-weight: 400;
  display: flex; align-items: center; gap: 10px;
}
.pricing-list li::before {
  content: '→'; font-size: 12px; color: var(--pop);
  flex-shrink: 0;
}
.pricing-col:not(.highlight) .pricing-list li { color: var(--ink-body); }
.pricing-col.highlight .pricing-list li { color: rgba(255,255,255,0.7); }

.pricing-cta {
  display: block; width: 100%; padding: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  border-radius: 100px; transition: all 0.3s;
}
.pricing-col:not(.highlight) .pricing-cta {
  border: 1px solid rgba(27,25,22,0.12); color: var(--ink);
}
.pricing-col:not(.highlight) .pricing-cta:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.pricing-col.highlight .pricing-cta {
  background: var(--pop); color: #fff; border: none;
}
.pricing-col.highlight .pricing-cta:hover {
  background: var(--pop-dark); transform: scale(1.02);
}

/* ============ PORTOFOLIU PAGE ============ */
.portfolio-full { padding: 80px 0 100px; }
.portfolio-full-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pf-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(27,25,22,0.06);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  background: var(--cream);
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}
.pf-thumb {
  aspect-ratio: 16/9;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 24px;
}
.pf-thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(232,67,42,0.12), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(43,74,255,0.1), transparent 55%);
}
.pf-thumb .pp-browser {
  position: relative; z-index: 1;
  width: 85%; max-width: 340px;
}
.pf-info { padding: 28px; }
.pf-info h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 8px;
  color: var(--ink);
}
.pf-info p {
  font-size: 15px; color: var(--ink-body);
  line-height: 1.6; margin-bottom: 16px;
}
.pf-info .pp-tags span {
  color: var(--ink-muted);
  border-color: rgba(27,25,22,0.1);
}

.pf-coming {
  border: 2px dashed rgba(27,25,22,0.12);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; text-align: center;
}
.pf-coming:hover { transform: none; box-shadow: none; }
.pf-coming-inner { padding: 40px; }
.pf-coming-icon {
  font-size: 36px; margin-bottom: 16px;
  animation: pulse-icon 3s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.pf-coming-inner h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.pf-coming-inner p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.6;
}

/* ============ CONTACT PAGE ============ */
.contact-full { padding: 80px 0 100px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-text {
  font-size: 17px; color: var(--ink-body);
  line-height: 1.8; margin-bottom: 40px;
  font-weight: 400;
}
.contact-info-item {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(27,25,22,0.06);
}
.ci-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ci-icon.phone { background: var(--green-soft); }
.ci-icon.email { background: var(--blue-soft); }
.ci-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 4px;
}
.ci-value {
  font-size: 17px; font-weight: 600;
}
.ci-value a {
  color: var(--ink); text-decoration: none;
  transition: color 0.3s;
}
.ci-value a:hover { color: var(--pop); }

.contact-form-card {
  background: var(--sand);
  border-radius: 24px; padding: 40px;
}
.cf-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 28px;
  color: var(--ink);
}
.cf-row { margin-bottom: 20px; }
.cf-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 6px;
  display: block;
}
.cf-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid rgba(27,25,22,0.08);
  background: transparent;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400;
  color: var(--ink); outline: none;
  transition: border-color 0.3s;
}
.cf-input:focus { border-color: var(--pop); }
.cf-input::placeholder { color: var(--ink-muted); }
textarea.cf-input {
  resize: vertical; min-height: 100px;
  font-family: var(--font-display);
}
.cf-submit {
  width: 100%; padding: 16px; margin-top: 28px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  border: none; border-radius: 100px;
  cursor: pointer; transition: all 0.35s;
}
.cf-submit:hover {
  background: var(--pop);
  transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  nav { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { padding: 130px 0 60px; }
  .hero-inner { padding: 0 24px; }
  .hero-title { letter-spacing: -2px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }

  .blob { display: none; }

  .services-preview { grid-template-columns: 1fr; }
  .pp-card { grid-template-columns: 1fr; }
  .pp-visual { min-height: 240px; }
  .pp-info { padding: 32px 24px; }

  .pricing-layout { grid-template-columns: 1fr; border-radius: 16px; }
  .pricing-col { border-right: none; border-bottom: 1px solid rgba(27,25,22,0.06); }
  .pricing-col:last-child { border-bottom: none; }

  .service-full-card { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 0; }

  .cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; letter-spacing: -1.5px; }
  .page-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .service-preview-card { padding: 32px 20px; }
  .sp-num { font-size: 36px; }
  .pricing-col { padding: 36px 24px; }
}
</style>
